PureBytes Links
Trading Reference Links
|
<FONT face=Arial color=#0000ff
size=2>Brian,
you
could change the order of the plot statements so that price is on
top......
Regards,
Jayson
<FONT face=Tahoma
size=2>-----Original Message-----From: Brian
[mailto:cadvantag@xxxxxxxxxxxxxx]Sent: Friday, January 09, 2004 12:25
AMTo: amibroker@xxxxxxxxxxxxxxxSubject: [amibroker]
Indicator HelpI 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,BrianPlot(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@xxxxxxxxxxxxxSend
SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
To visit your group on the web, go to:<A
href="">http://groups.yahoo.com/group/amibroker/
To unsubscribe from this group, send an email to:<A
href="">amibroker-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
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 the Yahoo! Terms of Service.
|