Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Telegram !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Vues:
3925
Note:
(10)
Publié:
2018.06.06 13:55
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Instantaneous Trendline by J.Ehlers is calculated by the following formula:

If i<=7:

ITrend[i] = (Price[i] + 2*Price[i-1] + Price[i-2])/4

If i>7:

ITrend[i] = c1*Price[i] + c2*Price[i-1] - c3*Price[i-2] + c4*ITrend[i-1] - c5*ITrend[i-2]

where

c1 = Alpha - 0.25*Alpha*Alpha,
c2 = 0.5*Alpha*Alpha,
c3 = Alpha - 0.75*Alpha*Alpha,
c4 = 2*(1 - Alpha),
c5 = (1 - Alpha)*(1 - Alpha),
Alpha = 2/(Period + 1)

The indicator has two input parameters:

  • Period - calculation period;
  • Applied price - price used for calculations.

Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/20421

HMA HMA

Alan Hull's Moving Average is a non-lagging moving average.

Interpolation Interpolation

Polynomial interpolation.

LSMA LSMA

Least Square Moving Average - a moving average calculated by the least squares method.

Mod_ATR_Trailing_Stop Mod_ATR_Trailing_Stop

An indicator of StopLoss levels.