From 8eecf4a852df24c5384e9c9869d30a46f3b1522a Mon Sep 17 00:00:00 2001 From: moshferatu Date: Wed, 11 Sep 2024 06:05:00 -0700 Subject: [PATCH] Trivial re-organization of property attributes --- indicators/cumulative-rsi/CumulativeRSI.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 }