i can see my indicator plot values but i dont get the alerts
if( CurrentBar < 5)
return;
// Use this method for calculating your indicator values. Assign a value to each
// plot below by replacing 'Close[0]' with your own formula.
if(High[0] <High[1] +TickSize && Low[0] >Low[1] -TickSize )
Plot0.Set(Close[0]);
else
Plot0.Reset();
[B][COLOR="Red"]if(Bars.PercentComplete >95 && Plot0[0]>0)[/COLOR][/B]
{
Alert(Instrument.FullName + CurrentBar,NinjaTrader.Cbi.Priority.High, "Getready for insider", "Alert1.wav", 10, Color.Black, Color.Yellow);
}

Comment