Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Telegram !
Rejoignez notre page de fans
Rejoignez notre page de fans
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
- Vues:
- 4251
- Note:
- Publié:
- 2018.06.06 13:08
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
The indicator shows the ratio between bullish and bearish candlesticks over the specified period.
The indicator has three input parameters:
- Period - calculation period
- Smoothing period - the period of smoothing
- Method - the method of smoothing
Calculation formula:
Up CandleUp=close-open; Down =0;
Down CandleDown=open-close; Up = 0;
Ratio = Sum(Up) / Sum (Down);
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/20330