if(Open[0] < (Close[1] +( TickSize*2)))
{
DrawText("gapd"+CurrentBar,true,"G",0,Close[1],0,Color.Red,ChartControl.Font,StringAlignment.Center,Color.Transparent,Color.Transparent,100);
}
Print(Time[0] + "Close " + Close[1] + " Open " + Open[0]);
if(Open[0] < (Close[1] + (TickSize*2)))
Print("Gap Down");

Indicator is set to Calculate on bar close on an INTRADAY chart.
ps I tried the following to no avail
if(Open[0] < Instrument.MasterInstrument.Round2TickSize((Close[1] + (TickSize*2))))

Comment