How can I color bar from under the additional data series?
This is what I use for the Plot - it works fine
protected override void OnBarUpdate()
{
if (BarsInProgress == 1)
{
if (LOGIC)
{
Price1 = High[0];
Price2 = Low[0];
}
}
if (BarsInProgress == 0)
{
Values[0][1] = Price1;
Values[1][1] = Price2;
// COLOR BAR FROM BarsInProgress == 1 ???
}
}
If something like that for filling the bar?

Comment