The inside bar color of the bar that I want to change the color of is set correctly and the following candles inside color seems unaffected (as is correct)... It is only the outline /wick color on the subsequent candles that is effected incorrectly.
protected override void Initialize()
{
...
xcolor = Color.Lime;
mjc_xbar = new DataSeries(this);
}
protected override void OnBarUpdate()
{
//... code snippet start
if (High[1] = High[2])
{
BarColor = xcolor;
mjc_xbar.Set(1);
}

Comment