The indicator is running calculate on price change. An alert is posted to the Alerts window on every price change. I expected it to be one hour in between.
See attached screen shot of Alerts Log.
The code:
if (rsiFast[0] < rsiSlow[0])
{
Values[0][0] = -1;
Alert("ATS.RD3.Long.Stage1", Priority.High, "oversold", NinjaTrader.Core.Globals.InstallDir + @"\sounds\" + "Alert2.wav", 3600, Brushes.Green, Brushes.White);
}
else
if (rsiFast[0] > rsiSlow[0])
{
Values[0][0] = 1;
Alert("ATS.RD3.Long.Stage1", Priority.High, "overbought", NinjaTrader.Core.Globals.InstallDir + @"\sounds\" + "Alert2.wav", 3600, Brushes.Green, Brushes.White);
}
I apologize if this has been asked and answered. I searched the forum but could not find this problem.

Comment