From aaf3b0269c50d95831a275db525b8eea07707747 Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Mon, 12 Jan 2026 15:52:32 +0100 Subject: [PATCH] docs(indicators): Refactored to use RSI_Engine --- Indicators/MyIndicators/VIDYA_RSI_Pro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Indicators/MyIndicators/VIDYA_RSI_Pro.md b/Indicators/MyIndicators/VIDYA_RSI_Pro.md index f92bc6c..872412d 100644 --- a/Indicators/MyIndicators/VIDYA_RSI_Pro.md +++ b/Indicators/MyIndicators/VIDYA_RSI_Pro.md @@ -38,7 +38,7 @@ Our MQL5 implementation is built on a highly efficient and reusable object-orien * **Modular Calculation Engine (`VIDYA_RSI_Calculator.mqh`):** All mathematical logic is encapsulated in a dedicated include file. - * **RSI Engine Integration:** The calculator internally uses our robust `RSI_Pro_Calculator.mqh` to compute the base RSI. This ensures mathematical consistency with our standalone RSI indicator and benefits from its drift-free logic. + * **RSI Engine Integration:** The calculator internally uses our robust `RSI_Engine.mqh` to compute the base RSI. This ensures mathematical consistency with our standalone RSI indicator and benefits from its drift-free logic. * **Optimized Incremental Calculation (O(1)):** Unlike basic implementations that recalculate the entire history on every tick, this indicator employs an intelligent incremental algorithm.