// Summary:
// Resets the internal marker which is used for IsValidDataPoint() back to false.
//
public void Reset(int barsAgo);
Till date, we use that like:
if (myCondition)
myPlot[0]=123;
else
myPlot.Reset(0);
I wanted to make it "one-line", like:
myPlot[0] = myCondition ? 123 : XXXX;
can you tell us actually what value/market is being set with reset ? So, we could use that instead of XXXX
I know it is not double.nan .

Comment