PureBytes Links
Trading Reference Links
|
I have created a afl for a indicator of price & volume in the same
window- my problem is that on large volume days the volume overlaps
the price and it makes it very difficult to see the price/close thru
the volume bars.
Is there a way to reduce the volume bars by a certain percentage or
to cut off the volume bars with a dashed bar or jagged line to show
volume strenght but as not to interferr with the price/close?
Thanks,
Brian
Plot(C,"Close",(IIf(C>O AND C>Ref(C,-1),colorBrightGreen,IIf(C<O AND
C<Ref(C,-
1),colorRed,colorYellow))),styleCandle+styleThick|styleOwnScale);
Plot(V,"Volume",(IIf(C>O AND C>Ref(C,-1),colorBrightGreen,IIf(C<O
AND C<Ref(C,-
1),colorRed,colorYellow))),styleHistogram+styleThick|styleOwnScale);
Plot(O,"Open",9,styleNoLine);
Plot(H,"High",8,styleNoLine);
Plot(L,"Low",3,styleNoLine);
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
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/
|