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:
3198
Note:
(10)
Publié:
2018.07.09 11:06
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

The indicator represents a moving average that resets its calculation period, as soon as the current standard deviation exceeds the previous one twice or more when the bar is closing.

It is useful for detecting the trade direction.

There are three adjustable parameters:

  • Period - calculation period
  • Barrier - if this barrier is exceeded, the period calculation is reset to the minimum
  • Applied price - calculation price

VolMA = SMA(Price, Length)

where:

Price = Applied price PrevPrice = previous Applied price

If Abs(sDevNow) > Barrier Length = 1 otherwise Length = PrevLength+1

sDevNow = RAW / Price * sDev sDev = SQRT(VAR / Period)

VAR = POW(RAW[Period] + RawAVG

RAW = (Price - PrevPrice) / Price RawAVG = SMA(RAW, Period)

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

TCI V2 TCI V2

Indicator Trend Confirmation Index

Speed_of_trade Speed_of_trade

Indicator Speed of Trade

WAMI WAMI

A.W. Warren's Momentum Indicator

CADX CADX

An indicator of relative trend strength.