RE: [amibroker] Is outlining of custom colored candles with black possible?

2006-05-02 Thread MailYahoo
outlining of custom colored candles with black possible?   I am not certain you can do what you want, but your code could be simplified   i=BarIndex(); CandleColor = IIf (i % 2 == 0, colorRed, IIf (i % 3 == 0, colorBlue, IIf (i % 4 == 0,colorYellow,colorGreen))); Plot(Close, "", C

Re: [amibroker] Is outlining of custom colored candles with black possible?

2006-05-02 Thread Graham
I am not certain you can do what you want, but your code could be simplified i=BarIndex(); CandleColor = IIf (i % 2 == 0, colorRed, IIf (i % 3 == 0, colorBlue, IIf (i % 4 == 0,colorYellow,colorGreen))); Plot(Close, "", CandleColor, styleCandle); -- Cheers Graham AB-Write >< Professional AFL W

[amibroker] Is outlining of custom colored candles with black possible?

2006-04-20 Thread scourt2000
Could some kind souls out there please put this Amibroker code in your chart and verify for me that there is no way for you to be able to have these colored candles on your chart AND have a black body outline? Thanks. I have been told numerous times that this functionality exists and I just