From 02b88230895242516fe9d966effb95b011071a08 Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Mon, 12 Jan 2026 22:58:09 +0100 Subject: [PATCH] docs(indicators): Refactored to use RSI_Engine --- .../MyIndicators/Authors/Kaufman/Stochastic_Adaptive_RSI_Pro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Indicators/MyIndicators/Authors/Kaufman/Stochastic_Adaptive_RSI_Pro.md b/Indicators/MyIndicators/Authors/Kaufman/Stochastic_Adaptive_RSI_Pro.md index f8b1ade..1136cfa 100644 --- a/Indicators/MyIndicators/Authors/Kaufman/Stochastic_Adaptive_RSI_Pro.md +++ b/Indicators/MyIndicators/Authors/Kaufman/Stochastic_Adaptive_RSI_Pro.md @@ -43,7 +43,7 @@ Our MQL5 implementation follows a modern, component-based, object-oriented desig * **Full Engine Integration:** The calculator (`Stochastic_Adaptive_RSI_Calculator.mqh`) orchestrates three powerful engines: - 1. **RSI Engine:** Calculates the base RSI. + 1. **RSI Engine:** Calculates the base RSI using the shared `RSI_Engine.mqh`. 2. **Slowing Engine:** Smooths the Raw %K using `MovingAverage_Engine.mqh`. 3. **Signal Engine:** Calculates the %D line using `MovingAverage_Engine.mqh`.