I use the standard basic chart with the following code that displays
the title in the graph:
N(Title = EncodeColor(colorWhite) + StrFormat(" {{NAME}} -
{{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol "
+WriteVal( V,1.0 ) +" {{VALUES}}", O, H, L, C, SelectedValue( ROC( C,
1 )) ));
Plot( C, "Close", barcolor, styleNoTitle | bars | styleThick
|GetPriceStyle() );
The above shows the % difference from the previous bar in the chart
title display.
My question is how do I show the actual change from the previous bar
instead of the % ?
Thanks, Randy