diff --git a/strategies/CumulativeRSIBot.cs b/strategies/CumulativeRSIBot.cs index bcd90f9..0978493 100644 --- a/strategies/CumulativeRSIBot.cs +++ b/strategies/CumulativeRSIBot.cs @@ -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 }