PureBytes Links
Trading Reference Links
|
Dennis,
the following will give you different color for the first 5 positive
[or negative] days
y=CCI(20);
Cond1=y>0;Cond2=y<0;
Cond11=cond1*(BarsSince(Cond2)<=5);
Cond22=cond2*(BarsSince(Cond1)<=5);
Color=Cond1*24+Cond2*43+Cond11+Cond22;
Plot(y,"y",Color,2);
Dimitris Tsokakis
--- In amibroker@xxxxxxxxxxxxxxx, "theoldchartreader"
<theoldchartreader@xxxx> wrote:
> Hi,
> This is what I am using , this gives me a green and red histogram
> above and below the zero line.
> What I would like to add is a different color bars, for the first 5
> days above and below the zero line.
>
>
> paint = IIf(CCI(20)>0, colorGreen, colorRed) ;
>
> Plot(CCI(20), "Cci", paint, styleHistogram);
>
>
> Thank you,
> Dennis
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
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/
|