Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Twitter !
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
Indicateurs

RMA - indicateur pour MetaTrader 5

Vues:
9490
Note:
(15)
Publié:
2019.02.08 21:37
RMA.mq5 (9.47 KB) afficher
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Theory :

Found the formula on another forum that calls this type of calculation "rma". Frankly I do not know what does the "rma" come from, but decided to experiment a bit. Now the original formula is :

rma = sma(price,period*3) + sma (price,period*2) - sma(price,period)

The results are logical except for one thing : that formula tends to add too much lag. So, with just a little change - when the formula is changed to this :

rma = sma(price,period*3) - sma (price,period*2) + sma(price,period)

we get a much better fit and, as a sort of a surprise, average that is faster than any of the 4 basic averages using same period. So, this is our own metatrader rma indicator

Usage :

You can use it as any other average


Kalman filter velocity Kalman filter velocity

Kalman filter velocity

Double smoothed EMA - floating levels (multi time frame) Double smoothed EMA - floating levels (multi time frame)

Double smoothed EMA - floating levels (multi time frame)

M-oscillator M-oscillator

M-oscillator

M-oscillator - extended M-oscillator - extended

M-oscillator extended