From 3c99641777a8989e8ba6b05183f8d71d0418b8b8 Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Sun, 19 Oct 2025 13:44:51 +0200 Subject: [PATCH] refactor: Ehlers time warp --- Include/MyIncludes/Laguerre_RSI_Calculator.mqh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Include/MyIncludes/Laguerre_RSI_Calculator.mqh b/Include/MyIncludes/Laguerre_RSI_Calculator.mqh index e3161a3..06e2234 100644 --- a/Include/MyIncludes/Laguerre_RSI_Calculator.mqh +++ b/Include/MyIncludes/Laguerre_RSI_Calculator.mqh @@ -36,7 +36,8 @@ void CLaguerreRSICalculator::Calculate(int rates_total, ENUM_APPLIED_PRICE price return; double L0[], L1[], L2[], L3[]; - m_engine.CalculateFilter(rates_total, price_type, open, high, low, close, L0, L1, L2, L3); + double dummy_filt[]; // Dummy buffer to satisfy the engine's new signature + m_engine.CalculateFilter(rates_total, price_type, open, high, low, close, L0, L1, L2, L3, dummy_filt); for(int i = 1; i < rates_total; i++) {