Trivial formatting changes to Cumulative RSI Bot parameters

This commit is contained in:
moshferatu 2024-07-27 10:49:39 -07:00
parent c459ae01c1
commit f9b4da8b4a

View File

@ -71,31 +71,31 @@ namespace NinjaTrader.NinjaScript.Strategies
#region Properties
[Range(1, int.MaxValue)]
[Display(Name = "Cumulative RSI Period", Description = "The period for the cumulative RSI calculation", Order = 1, GroupName = "Cumulative RSI Bot")]
[Display(Name = "Cumulative RSI Period", Description = "The period for the cumulative RSI calculation", GroupName = "Cumulative RSI Bot", Order = 1)]
public int CumulativeRSIPeriod { get; set; }
[Range(1, int.MaxValue)]
[Display(Name = "Cumulative Period", Description = "The number of RSI values to add together", Order = 2, GroupName = "Cumulative RSI Bot")]
[Display(Name = "Cumulative Period", Description = "The number of RSI values to add together", GroupName = "Cumulative RSI Bot", Order = 2)]
public int CumulativePeriod { get; set; }
[Range(1, int.MaxValue)]
[Display(Name = "RSI Period", Description = "The period for the RSI calculation", Order = 3, GroupName = "Cumulative RSI Bot")]
[Display(Name = "RSI Period", Description = "The period for the RSI calculation", GroupName = "Cumulative RSI Bot", Order = 3)]
public int RSIPeriod { get; set; }
[Range(1, int.MaxValue)]
[Display(Name = "RSI Smoothing", Description = "The smoothing period for the RSI calculation", Order = 4, GroupName = "Cumulative RSI Bot")]
[Display(Name = "RSI Smoothing", Description = "The smoothing period for the RSI calculation", GroupName = "Cumulative RSI Bot", Order = 4)]
public int RSISmoothing { get; set; }
[Range(1, int.MaxValue)]
[Display(Name = "SMA Period", Description = "The period for the moving average", Order = 5, GroupName = "Cumulative RSI Bot")]
[Display(Name = "SMA Period", Description = "The period for the moving average", GroupName = "Cumulative RSI Bot", Order = 5)]
public int SMAPeriod { get; set; }
[Range(1, 100)]
[Display(Name = "Entry Threshold", Description = "The cumulative RSI threshold for entering a long position", Order = 6, GroupName = "Cumulative RSI Bot")]
[Display(Name = "Entry Threshold", Description = "The cumulative RSI threshold for entering a long position", GroupName = "Cumulative RSI Bot", Order = 6)]
public int EntryThreshold { get; set; }
[Range(1, 100)]
[Display(Name = "Exit Threshold", Description = "The RSI threshold for exiting a long position", Order = 7, GroupName = "Cumulative RSI Bot")]
[Display(Name = "Exit Threshold", Description = "The RSI threshold for exiting a long position", GroupName = "Cumulative RSI Bot", Order = 7)]
public int ExitThreshold { get; set; }
#endregion
}