LOG.info("stocky finds new symbol: " + symbol);
// Replace the content with new and delete the "stocky" annotation.
String price = String.format("$%.2f", util.getStockPrice(symbol));
String newContent = String.format("%s[%s] ", symbol, price);
blipContentRefs = blipContentRefs.replace(newContent);
BlipContentRefs symbolContentRef = blip.range(startIndex, startIndex + symbol.length());
symbolContentRef.annotate("style/color", "rgb(50,205,50)");
symbolContentRef.annotate("style/fontWeight", "bold");