mirror of
https://github.com/softwaredevelop/mql5.git
synced 2026-07-27 20:47:44 +00:00
111 lines
4.2 KiB
Plaintext
111 lines
4.2 KiB
Plaintext
//+------------------------------------------------------------------+
|
|
//| HMA_Pro.mq5|
|
|
//| Copyright 2025, xxxxxxxx|
|
|
//+------------------------------------------------------------------+
|
|
#property copyright "Copyright 2025, xxxxxxxx"
|
|
#property version "4.10" // Optimized for incremental calculation
|
|
#property description "Professional Hull Moving Average (HMA) with selectable"
|
|
#property description "price source (Standard and Heikin Ashi)."
|
|
|
|
//--- Indicator Window and Plot Properties ---
|
|
#property indicator_chart_window
|
|
#property indicator_buffers 1
|
|
#property indicator_plots 1
|
|
|
|
//--- Plot 1: HMA line
|
|
#property indicator_label1 "HMA"
|
|
#property indicator_type1 DRAW_LINE
|
|
#property indicator_color1 clrDeepPink
|
|
#property indicator_style1 STYLE_SOLID
|
|
#property indicator_width1 1
|
|
|
|
//--- Include the calculator engine ---
|
|
#include <MyIncludes\HMA_Calculator.mqh>
|
|
|
|
//--- Input Parameters ---
|
|
input int InpPeriodHMA = 14;
|
|
input ENUM_APPLIED_PRICE_HA_ALL InpSourcePrice = PRICE_CLOSE_STD;
|
|
|
|
//--- Indicator Buffers ---
|
|
double BufferHMA[];
|
|
|
|
//--- Global calculator object (as a base class pointer) ---
|
|
CHMACalculator *g_calculator;
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| Custom indicator initialization function. |
|
|
//+------------------------------------------------------------------+
|
|
int OnInit()
|
|
{
|
|
//--- Map the buffer and set as non-timeseries
|
|
SetIndexBuffer(0, BufferHMA, INDICATOR_DATA);
|
|
ArraySetAsSeries(BufferHMA, false);
|
|
|
|
//--- Dynamically create the appropriate calculator instance
|
|
if(InpSourcePrice <= PRICE_HA_CLOSE) // Heikin Ashi source selected
|
|
{
|
|
g_calculator = new CHMACalculator_HA();
|
|
IndicatorSetString(INDICATOR_SHORTNAME, StringFormat("HMA HA(%d)", InpPeriodHMA));
|
|
}
|
|
else // Standard price source selected
|
|
{
|
|
g_calculator = new CHMACalculator();
|
|
IndicatorSetString(INDICATOR_SHORTNAME, StringFormat("HMA(%d)", InpPeriodHMA));
|
|
}
|
|
|
|
//--- Check if creation was successful and initialize
|
|
if(CheckPointer(g_calculator) == POINTER_INVALID || !g_calculator.Init(InpPeriodHMA))
|
|
{
|
|
Print("Failed to create or initialize HMA Calculator object.");
|
|
return(INIT_FAILED);
|
|
}
|
|
|
|
//--- Set indicator display properties
|
|
IndicatorSetInteger(INDICATOR_DIGITS, _Digits);
|
|
int period_sqrt = (int)MathMax(1, MathRound(MathSqrt(InpPeriodHMA)));
|
|
PlotIndexSetInteger(0, PLOT_DRAW_BEGIN, InpPeriodHMA + period_sqrt - 2);
|
|
|
|
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, // <--- Now used!
|
|
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[])
|
|
{
|
|
if(CheckPointer(g_calculator) == POINTER_INVALID)
|
|
return 0;
|
|
|
|
ENUM_APPLIED_PRICE price_type;
|
|
if(InpSourcePrice <= PRICE_HA_CLOSE)
|
|
price_type = (ENUM_APPLIED_PRICE)(-(int)InpSourcePrice);
|
|
else
|
|
price_type = (ENUM_APPLIED_PRICE)InpSourcePrice;
|
|
|
|
//--- Delegate calculation with prev_calculated optimization
|
|
g_calculator.Calculate(rates_total, prev_calculated, price_type, open, high, low, close, BufferHMA);
|
|
|
|
return(rates_total);
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//+------------------------------------------------------------------+
|