|
Ken:
I assume that you are interested in having the value
of an indicator in the title change color as you select different bars based on
the condition of that indicator which may or may not be plotted.
If so, in essence this is what I do using WriteIf():
x = RSI(14);
Plot(C, "", colorpalegreen,
stylebar);
//Plot(x, "", colorwhite);
Title = WriteIf(x >= 50,
EncodeColor(colorBrightGreen) + "RSI(14) = " + x,
EncodeColor(colorRed) + "RSI(14) = " + x);
Bill
__._,_.___ 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
SPONSORED LINKS
YAHOO! GROUPS LINKS
__,_._,___ |
- Re: [amibroker] Conditional Encodecolor wavemechanic
