Guarda come scaricare robot di trading gratuitamente
Ci trovi su Telegram!
Unisciti alla nostra fan page
Unisciti alla nostra fan page
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
- Visualizzazioni:
- 6098
- Valutazioni:
- Pubblicato:
- 2019.01.02 14:28
-
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a 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
Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/22922

Indicator Stalin_NRTR with the timeframe selection option in its input parameters

The Stalin indicator in the form of NRTR.