From 8a62da4db6ddc9bd1fb108ba391a01de58037650 Mon Sep 17 00:00:00 2001 From: kenorb Date: Wed, 25 Oct 2023 14:44:23 +0100 Subject: [PATCH] Indi_Fractals: Fixes code typo --- Indicators/Indi_Fractals.mqh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Indicators/Indi_Fractals.mqh b/Indicators/Indi_Fractals.mqh index a0a147a26..16bafed00 100644 --- a/Indicators/Indi_Fractals.mqh +++ b/Indicators/Indi_Fractals.mqh @@ -107,7 +107,7 @@ class Indi_Fractals : public Indicator { int _ishift = _shift >= 0 ? _shift : iparams.GetShift(); switch (iparams.idstype) { case IDATA_BUILTIN: - _value = _value = Indi_Fractals::iFractals(GetSymbol(), GetTf(), (ENUM_LO_UP_LINE)_mode, _ishift, THIS_PTR); + _value = Indi_Fractals::iFractals(GetSymbol(), GetTf(), (ENUM_LO_UP_LINE)_mode, _ishift, THIS_PTR); break; case IDATA_ICUSTOM: _value = iCustom(istate.handle, GetSymbol(), GetTf(), iparams.GetCustomIndicatorName(), _mode, _ishift);