PureBytes Links
Trading Reference Links
|
Refer to the attached picture, apparently volume bar heights are not
scaled properly. (height of 57M is only about 1/6th of 83M)
How to correct that?
Thanks.
Here are the codes to overlay volume:
Color_up=29;
Color_down=11;
Color = IIf(Close > Open, Color_up, IIf(Close < Open,Color_down,
colorBlueGrey) );
Max_v=LastValue(Highest(Volume),True);
Min_v=LastValue(Lowest(Volume),True);
Plot(Volume,"Volume",Color,styleHistogram | styleThick | 32 |
styleLeftAxisScale, Min_v,Max_v);
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|