PureBytes Links
Trading Reference Links
|
I've tried that before. The problem is that EncodeColor() won't work with a variable placed as its "colorIndex":
EncodeColor( colorIndex )
So this won't work:
Title = Name() + " C=" + C + EncodeColor(dyn_col) + " N=" + net_chg;
--- In amibroker@xxxxxxxxxxxxxxx, "cstrader" <cstrader232@xxxx> wrote:
>
> Lesmond. Look for encodecolor in the help files. I think that is what you
> want.
>
>
> ----- Original Message -----
> From: "Lesmond V" <ebsn247@xxxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Saturday, January 07, 2006 7:19 AM
> Subject: [amibroker] Net Change Green/Red In The Title
>
>
> > 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 + "\\c44 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/
|