From f9b4da8b4a1c5ca084cd7b38b5834687c3182a2e Mon Sep 17 00:00:00 2001 From: moshferatu Date: Sat, 27 Jul 2024 10:49:39 -0700 Subject: [PATCH] Trivial formatting changes to Cumulative RSI Bot parameters --- strategies/CumulativeRSIBot.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 }