From a4eb479385a5606dd40a7ed721853d2182ec6083 Mon Sep 17 00:00:00 2001 From: Toh4iem9 Date: Mon, 29 Sep 2025 11:24:11 +0200 Subject: [PATCH] new files added --- Indicators/MyIndicators/ATR_Pro.mq5 | 115 ++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 Indicators/MyIndicators/ATR_Pro.mq5 diff --git a/Indicators/MyIndicators/ATR_Pro.mq5 b/Indicators/MyIndicators/ATR_Pro.mq5 new file mode 100644 index 0000000..d0571e0 --- /dev/null +++ b/Indicators/MyIndicators/ATR_Pro.mq5 @@ -0,0 +1,115 @@ +//+------------------------------------------------------------------+ +//| ATR_Pro.mq5| +//| Copyright 2025, xxxxxxxx| +//| | +//+------------------------------------------------------------------+ +#property copyright "Copyright 2025, xxxxxxxx" +#property link "" +#property version "2.00" +#property description "Professional Average True Range (ATR) 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 + +//--- Plot 1: ATR line +#property indicator_label1 "ATR" +#property indicator_type1 DRAW_LINE +#property indicator_color1 clrDodgerBlue +#property indicator_style1 STYLE_SOLID +#property indicator_width1 1 + +//--- 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 int InpAtrPeriod = 14; // ATR Period +input ENUM_CANDLE_SOURCE InpCandleSource = CANDLE_STANDARD; // Candle source + +//--- Indicator Buffers --- +double BufferATR[]; + +//--- Global calculator object (as a base class pointer) --- +CATRCalculator *g_calculator; + +//+------------------------------------------------------------------+ +//| Custom indicator initialization function. | +//+------------------------------------------------------------------+ +int OnInit() + { +//--- Map the buffer and set as non-timeseries + SetIndexBuffer(0, BufferATR, INDICATOR_DATA); + ArraySetAsSeries(BufferATR, false); + +//--- Dynamically create the appropriate calculator instance + switch(InpCandleSource) + { + case CANDLE_HEIKIN_ASHI: + g_calculator = new CATRCalculator_HA(); + IndicatorSetString(INDICATOR_SHORTNAME, StringFormat("ATR HA(%d)", InpAtrPeriod)); + break; + default: // CANDLE_STANDARD + g_calculator = new CATRCalculator(); + IndicatorSetString(INDICATOR_SHORTNAME, StringFormat("ATR(%d)", InpAtrPeriod)); + break; + } + +//--- Check if creation was successful and initialize + if(CheckPointer(g_calculator) == POINTER_INVALID || !g_calculator.Init(InpAtrPeriod)) + { + Print("Failed to create or initialize ATR Calculator object."); + return(INIT_FAILED); + } + +//--- Set indicator display properties + IndicatorSetInteger(INDICATOR_DIGITS, _Digits); + PlotIndexSetInteger(0, PLOT_DRAW_BEGIN, g_calculator.GetPeriod()); + + 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 + g_calculator.Calculate(rates_total, open, high, low, close, BufferATR); + +//--- Return rates_total for a full recalculation, ensuring stability + return(rates_total); + } +//+------------------------------------------------------------------+ +//+------------------------------------------------------------------+