Hi,
you can take a look to the sources of the StockListDemo to see how we handle the highlight color (green if the last_price is greater than the previous one, red otherwise)
Search for the following code lines:
[SYNTAX=JS]updateInfo.addField("#trend_color",redColor,true);
[...]
var backH = itemUpdate.getServerValue("#trend_color");
itemUpdate.setRowAttribute(backH,backC,"backgroundColor");
[/SYNTAX]
you can find the sources of the demo for the Lightstreamer version you're using here:
http://www.lightstreamer.com/distros/Lightstreamer_Moderato_4_0_3_Duomo_20120406/Lightstreamer/pages/demos/StockListDemo
If you want to check out the same demo developed with the brand new version of Lightstreamer, you can see it here:
http://www.lightstreamer.com/demo/StockListDemo/ note that the code is quite different; you should be able to recognize the important bits anyway
let me know if you have any doubt.