It appears to think that volume is 0 for any new bar.
Works fine on historical data, or if you refresh the chart in some manner.
protected override void OnBarUpdate()
{
// Use this method for calculating your indicator values. Assign a value to each
// plot below by replacing 'Close[0]' with your own formula.
if (Volume[0] < 1) BarColor = Color.Yellow;
}
Only happens in real-time on RANGE Charts
The bars should not be yellow in the attached picture.

Comment