From 7c0101d251215978e038a958d9a0d96086f1ff09 Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Mon, 29 Sep 2025 09:02:29 +0200 Subject: [PATCH] new files added --- Indicators/MyIndicators/AD_Pro.mq5 | 111 +++++++++++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 Indicators/MyIndicators/AD_Pro.mq5 diff --git a/Indicators/MyIndicators/AD_Pro.mq5 b/Indicators/MyIndicators/AD_Pro.mq5 new file mode 100644 index 0000000..feebf10 --- /dev/null +++ b/Indicators/MyIndicators/AD_Pro.mq5 @@ -0,0 +1,111 @@ +//+------------------------------------------------------------------+ +//| AD_Pro.mq5 | +//| Copyright 2025, xxxxxxxx| +//| | +//+------------------------------------------------------------------+ +#property copyright "Copyright 2025, xxxxxxxx" +#property link "" +#property version "2.01" // Corrected calculator logic +#property description "Professional Accumulation/Distribution Line with selectable" +#property description "candle source (Standard or Heikin Ashi)." + +//--- Indicator Window and Plot Properties --- +#property indicator_separate_window +#property indicator_buffers 1 +#property indicator_plots 1 +#property indicator_type1 DRAW_LINE +#property indicator_color1 clrLightSeaGreen +#property indicator_label1 "A/D" + +//--- Include the calculator engine --- +#include + +//--- Enum for selecting the candle source for calculation --- +enum ENUM_CANDLE_SOURCE + { + CANDLE_STANDARD, // Use standard OHLC data + CANDLE_HEIKIN_ASHI // Use Heikin Ashi smoothed data + }; + +//--- Input Parameters --- +input ENUM_CANDLE_SOURCE InpCandleSource = CANDLE_STANDARD; // Candle source +input ENUM_APPLIED_VOLUME InpVolumeType = VOLUME_TICK; // Volume type + +//--- Indicator Buffers --- +double BufferAD[]; + +//--- Global calculator object (as a base class pointer) --- +CADCalculator *g_calculator; + +//+------------------------------------------------------------------+ +//| Custom indicator initialization function. | +//+------------------------------------------------------------------+ +int OnInit() + { +//--- Map the buffer and set as non-timeseries + SetIndexBuffer(0, BufferAD, INDICATOR_DATA); + ArraySetAsSeries(BufferAD, false); + +//--- Dynamically create the appropriate calculator instance + switch(InpCandleSource) + { + case CANDLE_HEIKIN_ASHI: + g_calculator = new CADCalculator_HA(); + IndicatorSetString(INDICATOR_SHORTNAME, "HA A/D"); + break; + default: // CANDLE_STANDARD + g_calculator = new CADCalculator(); + IndicatorSetString(INDICATOR_SHORTNAME, "A/D"); + break; + } + +//--- Check if creation was successful + if(CheckPointer(g_calculator) == POINTER_INVALID) + { + Print("Failed to create A/D Calculator object."); + return(INIT_FAILED); + } + +//--- Set indicator display properties + IndicatorSetInteger(INDICATOR_DIGITS, 0); + PlotIndexSetInteger(0, PLOT_DRAW_BEGIN, 1); + + return(INIT_SUCCEEDED); + } + +//+------------------------------------------------------------------+ +//| Custom indicator deinitialization function. | +//+------------------------------------------------------------------+ +void OnDeinit(const int reason) + { +//--- Free the calculator object to prevent memory leaks + if(CheckPointer(g_calculator) != POINTER_INVALID) + delete g_calculator; + } + +//+------------------------------------------------------------------+ +//| Custom indicator 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[]) + { +//--- Ensure the calculator object is valid + if(CheckPointer(g_calculator) == POINTER_INVALID) + return 0; + +//--- Delegate the entire calculation to our calculator object (now passing 'open') + g_calculator.Calculate(rates_total, open, high, low, close, tick_volume, volume, InpVolumeType, BufferAD); + +//--- Return rates_total for a full recalculation, ensuring stability + return(rates_total); + } +//+------------------------------------------------------------------+ +//+------------------------------------------------------------------+