From b76e43d3d936fff08a5e9bee73b1d767e617ae61 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Wed, 8 Jan 2025 13:15:47 -0800 Subject: [PATCH] Calculate ConnorsRSI on each price change rather than each new bar --- indicators/connors-rsi/ConnorsRSI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indicators/connors-rsi/ConnorsRSI.cs b/indicators/connors-rsi/ConnorsRSI.cs index 251fee6..3e44c46 100644 --- a/indicators/connors-rsi/ConnorsRSI.cs +++ b/indicators/connors-rsi/ConnorsRSI.cs @@ -28,7 +28,7 @@ namespace NinjaTrader.NinjaScript.Indicators { Description = @"Credit to Larry Connors"; Name = "ConnorsRSI"; - Calculate = Calculate.OnBarClose; + Calculate = Calculate.OnPriceChange; IsOverlay = false; DisplayInDataBox = true; DrawOnPricePanel = true;