Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Facebook !
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:
3451
Note:
(11)
Publié:
2018.06.06 13:59
REMA.mq5 (7.4 KB) afficher
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Regularized EMA by Cris Satchwell.

It has two parameters:

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

Calculation:

REMA[i] = (REMA[i-1]*(1 + 2*Lambda) + Alpha*(Price[i] - REMA[i-1]) - Lambda*REMA[i-2])/(1 + Lambda)

where

Alpha=2/(Period + 1),
Lambda=0.5.

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

PVI_Smoothed PVI_Smoothed

Smoothed Positive Volume Index

Universal 1.64 Universal 1.64

Universal trailing of positions and pending orders.

RMO RMO

The tend indicator: Rahul Mohindar Oscillator

Simple_Support_Resistance Simple_Support_Resistance

An indicator of current support/resistance levels.