Hi Ray,
Let me explain it. I have a custom indicator, which colors the candles, based on something like a pattern. So,if the pattern happens, it colors the current candle with one particular color and if doesn't happen it colors the candle with a different color.
But the problem is that,even though the indicator works properly and prints different colored candles, the "black outline of the candle" is getting lost. So, the candles are coming up without the "candle outline".
And I am using the following code to draw a candle if condition meets,
BarColor = Color.Green;
and if condition does'nt meet,then
BarColor = Color.Red;
Can you tell me, if I need to add anything in the code, so that I see the "candle outline"?
I have asked this in the past in Oct and I was told this feature is being released in 6.5 Beta, as there have been many custom indicator developers requesting it. Without the "candleoutline" the readability of charts is very poor.
To see the poor readability, please load any regular chart in 6.5 Beta and make the "baroutline" color to "transparent" and widht to "0". You can see how poor the chart looks like and how it impacts readability.
I appreciate your suggestion, in getting back the "candleoutline" in custom indicators which change bar colors.
Thanks
RK

Comment