From 84043cdf0fe22d5631fd598cd4d6e2ccea905af7 Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Wed, 27 Aug 2025 12:44:09 +0200 Subject: [PATCH] new files added --- .../Blau/Blau_Ergodic_CMI_HeikinAshi.mq5 | 241 ++++++++++++++++++ 1 file changed, 241 insertions(+) create mode 100644 Indicators/MyIndicators/Authors/Blau/Blau_Ergodic_CMI_HeikinAshi.mq5 diff --git a/Indicators/MyIndicators/Authors/Blau/Blau_Ergodic_CMI_HeikinAshi.mq5 b/Indicators/MyIndicators/Authors/Blau/Blau_Ergodic_CMI_HeikinAshi.mq5 new file mode 100644 index 0000000..1376653 --- /dev/null +++ b/Indicators/MyIndicators/Authors/Blau/Blau_Ergodic_CMI_HeikinAshi.mq5 @@ -0,0 +1,241 @@ +//+------------------------------------------------------------------+ +//| Blau_Ergodic_CMI_HeikinAshi.mq5 | +//| Copyright 2025, xxxxxxxx | +//| | +//+------------------------------------------------------------------+ +#property copyright "Copyright 2025, xxxxxxxx" +#property link "" +#property version "1.01" // Added full MA type support for signal line +#property description "Ergodic Candle Momentum Index (CMI) on Heikin Ashi data." + +#include + +//--- Indicator Window and Plot Properties --- +#property indicator_separate_window +#property indicator_buffers 2 // CMI and Signal Line +#property indicator_plots 2 +#property indicator_type1 DRAW_LINE +#property indicator_color1 clrDodgerBlue +#property indicator_label1 "HA_Ergodic_CMI" +#property indicator_type2 DRAW_LINE +#property indicator_color2 clrOrangeRed +#property indicator_label2 "HA_Signal" +#property indicator_style2 STYLE_DOT +#property indicator_level1 -25.0 +#property indicator_level2 25.0 +#property indicator_level3 0.0 +#property indicator_levelstyle STYLE_DOT + +//--- Input Parameters --- +input int InpSlowPeriod = 20; +input int InpFastPeriod = 5; +input group "Signal Line Settings" +input int InpSignalPeriod = 3; +input ENUM_MA_METHOD InpSignalMAType = MODE_EMA; + +//--- Indicator Buffers --- +double BufferCMI[]; +double BufferSignal[]; + +//--- Global Objects and Variables --- +int g_ExtSlowPeriod, g_ExtFastPeriod, g_ExtSignalPeriod; +CHeikinAshi_Calculator *g_ha_calculator; + +//+------------------------------------------------------------------+ +//| Custom indicator initialization function. | +//+------------------------------------------------------------------+ +int OnInit() + { + g_ExtSlowPeriod = (InpSlowPeriod < 1) ? 1 : InpSlowPeriod; + g_ExtFastPeriod = (InpFastPeriod < 1) ? 1 : InpFastPeriod; + g_ExtSignalPeriod = (InpSignalPeriod < 1) ? 1 : InpSignalPeriod; + + SetIndexBuffer(0, BufferCMI, INDICATOR_DATA); + SetIndexBuffer(1, BufferSignal, INDICATOR_DATA); + + ArraySetAsSeries(BufferCMI, false); + ArraySetAsSeries(BufferSignal, false); + + int cmi_draw_begin = g_ExtSlowPeriod + g_ExtFastPeriod -1; + PlotIndexSetInteger(0, PLOT_DRAW_BEGIN, cmi_draw_begin); + PlotIndexSetInteger(1, PLOT_DRAW_BEGIN, cmi_draw_begin + g_ExtSignalPeriod - 1); + IndicatorSetString(INDICATOR_SHORTNAME, StringFormat("HA_Ergodic_CMI(%d,%d,%d)", g_ExtSlowPeriod, g_ExtFastPeriod, g_ExtSignalPeriod)); + IndicatorSetInteger(INDICATOR_DIGITS, 2); + + g_ha_calculator = new CHeikinAshi_Calculator(); + if(CheckPointer(g_ha_calculator) == POINTER_INVALID) + { + Print("Error creating CHeikinAshi_Calculator object"); + return(INIT_FAILED); + } + return(INIT_SUCCEEDED); + } + +//+------------------------------------------------------------------+ +//| Custom indicator deinitialization function. | +//+------------------------------------------------------------------+ +void OnDeinit(const int reason) + { + if(CheckPointer(g_ha_calculator) != POINTER_INVALID) + { + delete g_ha_calculator; + g_ha_calculator = NULL; + } + } + +//+------------------------------------------------------------------+ +//| Ergodic CMI on Heikin Ashi calculation function. | +//+------------------------------------------------------------------+ +int OnCalculate(const int rates_total, + const int prev_calculated, + const datetime &time[], + const double &open[], + const double &high[], + const double &low[], + const double &close[], + const long &tick_volume[], + const long &volume[], + const int &spread[]) + { + int start_pos = g_ExtSlowPeriod + g_ExtFastPeriod + g_ExtSignalPeriod; + if(rates_total <= start_pos) + return(0); + +//--- Intermediate Heikin Ashi Buffers + double ha_open[], ha_high[], ha_low[], ha_close[]; + ArrayResize(ha_open, rates_total); + ArrayResize(ha_high, rates_total); + ArrayResize(ha_low, rates_total); + ArrayResize(ha_close, rates_total); + +//--- STEP 1: Calculate Heikin Ashi bars + g_ha_calculator.Calculate(rates_total, open, high, low, close, ha_open, ha_high, ha_low, ha_close); + +//--- STEP 2: Calculate Candle Momentum and its Absolute Value on HA data + double c_momentum[], abs_c_momentum[]; + ArrayResize(c_momentum, rates_total); + ArrayResize(abs_c_momentum, rates_total); + for(int i=0; i 0) + { + BufferCMI[i] = 100 * (ema2_momentum[i] / ema2_abs_momentum[i]); + } + } + +//--- STEP 6: Calculate the Signal Line + int signal_start_pos = ema2_start_pos + g_ExtSignalPeriod - 1; + for(int i = signal_start_pos; i < rates_total; i++) + { + // --- FIX: Full, robust switch block for all MA types --- + switch(InpSignalMAType) + { + case MODE_EMA: + case MODE_SMMA: + if(i == signal_start_pos) + { + double sum=0; + for(int j=0; j0) + BufferSignal[i]=lwma_sum/weight_sum; + } + break; + default: // MODE_SMA + { + double sum=0; + for(int j=0; j