PureBytes Links
Trading Reference Links
|
Dennis,
Please check this one:
Plot(MACD(),"macd",colorGreen,styleLine);
Plot(EMA( MACD(), 9 ),"signal",colorRed,styleLine);
Plot(10,"ribbon", IIf( MACD()<Signal(), colorRed, colorGreen ),styleOwnScale|styleArea|styleNoLabel, -0.5, 100 );
GraphXSpace = 10;
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: <dennis5692@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Saturday, February 08, 2003 5:54 PM
Subject: [amibroker] question about ribbon
> Hi everyone,
>
> I want to change the color of the ribbon, right now it a pale green
> color, it must be the default color.
> when I add (colorred) in the formula, it does not accept it, what am
> I doing wrong?
>
> thank you,
> Dennis
>
> Plot(MACD(),"macd",colorGreen,styleLine);
> Plot(EMA( MACD(), 9 ),"signal",colorRed,styleLine);
>
> Plot(30,"ribbon",MACD()<Signal
> (),styleOwnScale|styleArea|styleNoLabel, -0.5, 100 );
>
>
> 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
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
>
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
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|