Skip to content

Commit

Permalink
Indi_Fractals: Fixes code typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Oct 25, 2023
1 parent aca431e commit 8a62da4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Indicators/Indi_Fractals.mqh
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class Indi_Fractals : public Indicator<IndiFractalsParams> {
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);
Expand Down

0 comments on commit 8a62da4

Please sign in to comment.