Is there anyway to get the last two digits after a decimal point to
show on the price chart? I have noticed that on the ^DJI and other
indicators where 4 digits or more appear before the decimal point that
only one (1) digit appears after the decimal point. In the case of
Berkshire (BHK-A) none show
the price is $127,100. Here is the
code that appears at the top of my Main Price Chart (it came with
Amibroker). What can I do to rectify this situation?
Note: The ASCII data coming down from Yahoo or EODData shows the last
two digits after the decimal points
Dick H
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g,
Lo %g, Close %g (%.f%%) Vol " +WriteVal( V, 1.2 ) +" {{VALUES}}", O,
H, L, C, SelectedValue( ROC( C, 1 )) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle |
ParamStyle("Style") | GetPriceStyle() );
_SECTION_END();