Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Facebook üzerinde bulun!
Fan sayfamıza katılın
Komut dosyasını ilginç mi buldunuz?
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
Komut dosyasını beğendiniz mi? MetaTrader 5 terminalinde deneyin
Görüntülemeler:
5531
Derecelendirme:
(11)
Yayınlandı:
2019.01.02 14:28
TIA.mq5 (11.26 KB) görüntüle
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

Trend Interruption Average displays three lines:

  1. the average number of consecutive rising candlestick Close prices (uptrend)
  2. the average number of consecutive falling candlestick Close prices (downtrend)
  3. 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

MetaQuotes Ltd tarafından Rusçadan çevrilmiştir.
Orijinal kod: https://www.mql5.com/ru/code/22922

Stalin_NRTR_HTF Stalin_NRTR_HTF

Indicator Stalin_NRTR with the timeframe selection option in its input parameters

Stalin_NRTR Stalin_NRTR

The Stalin indicator in the form of NRTR.

18AvgMA 18AvgMA

The "Average of 18 Moving Averages" indicator

Pivot_Oscillator Pivot_Oscillator

Pivot Oscillator