Thank you for your reply.
In the version of the SuperTrend indicator you're using, the issue is that it doesn't add that extra part of the path within the Alert() method. So this:
Alert("NewUpTrend", Priority.Medium, "NewUpTrend", confirmedUpTrend, rearmTime, Brushes.Black, upColor);
Would need to be changed to this:
Alert("NewUpTrend", Priority.Medium, "NewUpTrend", NinjaTrader.Core.Globals.InstallDir +confirmedUpTrend, rearmTime, Brushes.Black, upColor);
Try changing the alerts to add that to each of them before the variable for the rest of the path.
Please let us know if we may be of further assistance to you.

Comment