From af79c48215f6f7af1904b6577a54410750b19fdc Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Tue, 30 Sep 2025 10:14:01 +0200 Subject: [PATCH] refactor: add Holt_Engine --- Indicators/MyIndicators/Holt_Pro.mq5 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Indicators/MyIndicators/Holt_Pro.mq5 b/Indicators/MyIndicators/Holt_Pro.mq5 index 68e37f3..9983fd9 100644 --- a/Indicators/MyIndicators/Holt_Pro.mq5 +++ b/Indicators/MyIndicators/Holt_Pro.mq5 @@ -3,7 +3,7 @@ //| Copyright 2025, xxxxxxxx| //+------------------------------------------------------------------+ #property copyright "Copyright 2025, xxxxxxxx" -#property version "4.00" +#property version "4.01" // Final unified architecture #property description "Professional Holt's Linear Trend Method, displaying either the" #property description "MA line or a full forecast channel. Supports Standard and Heikin Ashi." @@ -102,7 +102,7 @@ int OnInit() } else // Standard price source selected { - g_calculator = new CHoltMACalculator(); + g_calculator = new CHoltMACalculator_Std(); IndicatorSetString(INDICATOR_SHORTNAME, StringFormat("Holt Pro(%d)", InpPeriod)); }