This part of the code works fine
//THIS LINE WORKS FINE
if( DGVOLUMEPlotTESTER(Color.White).VolumePlot[0] == EMA(10)[0])
DrawDot("My dot" + CurrentBar, false, 0, Close[0] + 10 * TickSize, Color.Blue);
if( DGVOLUMEPlotTESTER(Color.White).ExceedVol[0] )
DrawDot("Dot 2" + CurrentBar, false, 0, Close[0] + 10 * TickSize, Color.Red);

Comment