From cfd65a7d6bbf4e3f4395647b29f2ad6873da9e2d Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Mon, 5 Jan 2026 11:35:59 +0100 Subject: [PATCH] refactor(indicators): Refactored to use Windowed MA Engine --- .../Authors/Ehlers/2_Oscillators/MADH_Pro.mq5 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Indicators/MyIndicators/Authors/Ehlers/2_Oscillators/MADH_Pro.mq5 b/Indicators/MyIndicators/Authors/Ehlers/2_Oscillators/MADH_Pro.mq5 index 2e46ece..5631b6a 100644 --- a/Indicators/MyIndicators/Authors/Ehlers/2_Oscillators/MADH_Pro.mq5 +++ b/Indicators/MyIndicators/Authors/Ehlers/2_Oscillators/MADH_Pro.mq5 @@ -3,7 +3,7 @@ //| Copyright 2025, xxxxxxxx| //+------------------------------------------------------------------+ #property copyright "Copyright 2025, xxxxxxxx" -#property version "2.00" // Optimized for incremental calculation +#property version "2.00" // Refactored to use Windowed MA Engine #property description "John Ehlers' MADH (Moving Average Difference - Hann) indicator." #property indicator_separate_window @@ -13,11 +13,11 @@ #property indicator_type1 DRAW_LINE #property indicator_color1 clrSlateBlue #property indicator_style1 STYLE_SOLID -#property indicator_width1 1 +#property indicator_width1 2 #property indicator_level1 0.0 -//#property indicator_levelstyle STYLE_SOLID -//#property indicator_levelcolor clrSilver +#property indicator_levelstyle STYLE_SOLID +#property indicator_levelcolor clrSilver #include