Allow for taking up to 2 trades in either direction in order to support aggressive entries in RSI 25 / 75 strategy

This commit is contained in:
moshferatu 2024-09-24 07:50:57 -07:00
parent ed7d90f847
commit bdd16ffc6e

View File

@ -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;