Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Twitter !
Rejoignez notre page de fans
Rejoignez notre page de fans
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
- Vues:
- 4050
- Note:
- Publié:
- 2018.09.27 15:43
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
The SVE_ARSI (Sylvain Vervoort's Asymmetrical RSI) indicator was described in the October '08 issue of the "Stocks & Commodities" magazine.
There are four input parameters:
- Period - calculation period;
- Applied price;
- Overbought - overbought level;
- Oversold - oversold level.
Calculations:
ARSI = 100.0 - 100.0 / (1.0 + RS)
where:
RS = UpMove / DnMove
- If up = 0: UpMove = 0.
- If up = 1: UpMove = Up.
- Otherwise UpMove = AvgUp.
- If dn = 0: DnMove = 0.
- If dn = 1: DnMove = Dn.
- Otherwise: DnMove = AvgDn.
AvgUp = EMA(Up, 2*Period-1) AvgDn = EMA(Dn, 2*Period-1) Up = Max(ROC,0) Dn = Abs(Min(ROC,0))
ROC = Applied price - PrevApplied price
up = Floor(AvgUpCnt * Period + 0.5) dn = Period - up AvgUpCnt = SMA(UpCnt, Period)
- If ROC < 0, UpCnt = 0.
- Otherwise: UpCnt = 1.
AvgUp = EMA(Up, 2*Period-1) AvgDn = EMA(Dn, 2*Period-1)
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/21741

The Demand_Index indicator developed by James Sibbet combines the price and volume, and is often considered a leading indicator of price change.

The Chandelier Exit indicator implemented as a sequence of candlesticks