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:
11306
Note:
(20)
Publié:
2011.09.19 15:37
Mise à jour:
2023.03.29 13:43
j2jma.mq5 (7.14 KB) afficher
\MQL5\Include\
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Moving average with the double adaptive JMA smoothing of a price range.

The average is calculated the following way:

J2JMA[bar] = JMA(JMA(PRICE[bar]))

where:

  • JMA() - adaptive smoothing algorithm;
  • PRICE[] - price series value;
  • bar - current bar.

The average shows good results on short- and long-term trends. It is not recommended to use big values of the Length2 second smoothing depth. In the latter case the indicator starts working as a standard JMA average having the Length parameter equal to the sum of Length1 and Length2.

ColorJ2JMA and J2JMA indicators use the CJJMA class of the SmoothAlgorithms.mqh library (must be placed to the terminal_data_folder\MQL5\Include). The use of the class was thoroughly described in the article "Averaging Price Series for Intermediate Calculations Without Using Additional Buffers".

ColorJ2JMA

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

SATL SATL

Slow Adaptive Trend Line is used for suppressing market noises and market cycles with longer oscillation periods.

Stochastic_Cross_Alert_SigOverlayM_cw Stochastic_Cross_Alert_SigOverlayM_cw

The indicator generates buy and sell signals and issues alerts in case of the Stochastic Oscillator indicator overbought or oversold levels crossing.

RBCI RBCI

Range Bound Channel Index (RBCI) digital filter removes low frequency trend, generated by low frequency spectrum components, and high frequency noise, generated by high frequency spectrum components.

JFATL JFATL

The indicator is a combination of the FATL digital filter and analogue JMA adaptive smoothing.