diff --git a/indicators/cumulative-rsi/CumulativeRSI.cs b/indicators/cumulative-rsi/CumulativeRSI.cs index 777d8ce..acbb3dd 100644 --- a/indicators/cumulative-rsi/CumulativeRSI.cs +++ b/indicators/cumulative-rsi/CumulativeRSI.cs @@ -59,17 +59,17 @@ namespace NinjaTrader.NinjaScript.Indicators #region Properties [NinjaScriptProperty] [Range(1, int.MaxValue)] - [Display(Name = "RSI Period", Description = "The period for the RSI calculation", Order = 1, GroupName = "Cumulative RSI")] + [Display(Name = "RSI Period", Description = "The period for the RSI calculation", GroupName = "Cumulative RSI", Order = 1)] public int RSIPeriod { get; set; } [NinjaScriptProperty] [Range(1, int.MaxValue)] - [Display(Name = "RSI Smoothing", Description = "The smoothing used for the RSI calculation", Order = 2, GroupName = "Cumulative RSI")] + [Display(Name = "RSI Smoothing", Description = "The smoothing used for the RSI calculation", GroupName = "Cumulative RSI", Order = 2)] public int RSISmoothing { get; set; } [NinjaScriptProperty] [Range(1, int.MaxValue)] - [Display(Name = "Cumulative Period", Description = "The number of RSI values to add together", Order = 3, GroupName = "Cumulative RSI")] + [Display(Name = "Cumulative Period", Description = "The number of RSI values to add together", GroupName = "Cumulative RSI", Order = 3)] public int CumulativePeriod { get; set; } #endregion }