From bdd16ffc6ef0da70d7da37f02384df2b40a243ab Mon Sep 17 00:00:00 2001 From: moshferatu Date: Tue, 24 Sep 2024 07:50:57 -0700 Subject: [PATCH] Allow for taking up to 2 trades in either direction in order to support aggressive entries in RSI 25 / 75 strategy --- strategies/rsi-25-75/RSITwentyFiveBot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strategies/rsi-25-75/RSITwentyFiveBot.cs b/strategies/rsi-25-75/RSITwentyFiveBot.cs index ec27a2b..522e20b 100644 --- a/strategies/rsi-25-75/RSITwentyFiveBot.cs +++ b/strategies/rsi-25-75/RSITwentyFiveBot.cs @@ -19,7 +19,7 @@ namespace NinjaTrader.NinjaScript.Strategies Description = @"Taken from chapter 3 of High Probability ETF Trading (2009) by Larry Connors"; Name = "RSI 25 / 75 Bot"; Calculate = Calculate.OnBarClose; - EntriesPerDirection = 1; + EntriesPerDirection = 2; EntryHandling = EntryHandling.AllEntries; IsExitOnSessionCloseStrategy = true; ExitOnSessionCloseSeconds = 30;