PureBytes Links
Trading Reference Links
|
Brian,
The order of your plot statements could help....Plot your price first ,
followed by Volume...This will place price on top of Volume.
Plot(C,"c",colorBlack,styleCandle|styleOwnScale);
Plot(V,"v",colorBlue,styleHistogram);
----- Original Message -----
From: "Brian" <cadvantag@xxxxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Friday, January 09, 2004 12:24 AM
Subject: [amibroker] Indicator Help
> 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/
>
>
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.559 / Virus Database: 351 - Release Date: 1/8/2004
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/
|