Below is a simple code that plots volume bars.
if (netVol < 0) DeltaDown.Set(netVol);
else
DeltaUp.Set(netVol);
In version 6.5,
With the code " if (netVol < 0) "
Only DeltaUp or DeltaDown is displayed.
In version 7.0,
NT disregards the code " if (netVol < 0) " When it displays plot values.
And both DeltaUp or DeltaDown are displayed continuously.
Most of the time one or the other plots zero and the other the correct value.
Intermittently, I get two separate non zero values of netVol displaying at the same time.
Ex DeltaUp netVol = 127 at the same time DeltaDown netVol = -7 .

The problem is easily identifiable by observing the numeric position tags on the right side of the indicator panel.
Both tags are displayed continuously even though only one is being called at a time by the program.
RJay

Comment