Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Facebook !
Rejoignez notre page de fans
Rejoignez notre page de fans
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
TIA - indicateur pour MetaTrader 5
- Vues:
- 5869
- Note:
- Publié:
- 2019.01.02 14:28
- Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
Trend Interruption Average displays three lines:
- the average number of consecutive rising candlestick Close prices (uptrend)
- the average number of consecutive falling candlestick Close prices (downtrend)
- the difference of these two streams
It has two input parameters:
- Period - averaging period
- Method - averaging calculation method
Calculation:
Up = AvgUp
Down = AvgDown
Difference = AvgUp - AvgDown
where:
AvgUp - MA(Up, Period, Method)
AvgDown - MA(Down, Period, Method)
- If Close > PrevClose
Up = PrevUp+1
Down = 0
- If Close < PrevClose
Down = PrevDown+1
Up = 0
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/22922
Stalin_NRTR_HTF
Indicator Stalin_NRTR with the timeframe selection option in its input parameters
Stalin_NRTRThe Stalin indicator in the form of NRTR.