PureBytes Links
Trading Reference Links
|
The posted code has a minor error in colour escape sequence. It should be:
/************/
net_chg = NumToStr(C - Ref(C,-1), 1.3);
dyn_col = IIf(C > Ref(C,-1), colorGreen, IIf(C < Ref(C,-1), colorRed, colorBrown));
Title = Name() + " C=" + C + "\\c44 N=" + net_chg;
Plot(C, "", colorViolet, styleCandle);
/************/
--- In amibroker@xxxxxxxxxxxxxxx, "Lesmond V" <ebsn247@xxxx> wrote:
>
> How to modify the code below to include "dyn_col" variable (dynamic colour). I would like to have Net Change shown in the Title, green when up, red when down, brown when unchanged.
>
> /************/
> net_chg = NumToStr(C - Ref(C,-1), 1.3);
> dyn_col = IIf(C > Ref(C,-1), colorGreen, IIf(C < Ref(C,-1), colorRed, colorBrown));
>
> Title = Name() + " C=" + C + "\\44 N=" + net_chg;
>
> Plot(C, "", colorViolet, styleCandle);
> /************/
>
>
> Tnx
> Lesmond
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.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/
|