PureBytes Links
Trading Reference Links
|
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();
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|