From 509177df1692bbd8da65f2a5d6145e3bfc2801c0 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Thu, 2 Jan 2025 08:55:27 -0800 Subject: [PATCH] Re-order parameters in 2-Period RSI strategy --- strategies/2-period-rsi/TwoPeriodRSI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strategies/2-period-rsi/TwoPeriodRSI.cs b/strategies/2-period-rsi/TwoPeriodRSI.cs index c4d1292..f405ac5 100644 --- a/strategies/2-period-rsi/TwoPeriodRSI.cs +++ b/strategies/2-period-rsi/TwoPeriodRSI.cs @@ -17,8 +17,8 @@ namespace NinjaTrader.NinjaScript.Strategies { if (State == State.SetDefaults) { - Description = @"Taken from chapter 9 of Short Term Trading Strategies That Work"; Name = "2 Period RSI"; + Description = @"Taken from chapter 9 of Short Term Trading Strategies That Work"; Calculate = Calculate.OnBarClose; EntriesPerDirection = 1;