Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Twitter ü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:
3089
Derecelendirme:
(5)
Yayınlandı:
2018.07.09 13:31
PGC.mq5 (16.89 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

Oscillator indicating the cyclic changes in the market.

It has seven adjustable parameters:

  • First MA period - first EMA period;
  • Second MA period - second EMA period;
  • Smoothing period - smoothing period;
  • RSI period - RSI calculation period;
  • Applied price - the calculation price;
  • Overbought level - overbought level;
  • Oversold level.

Calculation:

PGC =100.0 - 100.0 / (1.0+RS)

where:

if AvgDec != 0
RS = AvgInc / AvgDec
otherwise
RS = 0
AvgDec = EMA(Dec, RSI Period)
AvgInc = EMA(Inc, RSI Period)
If Z3 > PrevZ3
Inc = Z3 - PrevZ3, Dec = 0
If Z3 < PrevZ3
Dec = PrevZ3 - Z3, Inc = 0
Z3 = 2.0 * AvgMA3 - Avg2MA3
Avg2MA3 = EMA(AvgMA3, Smoothing period)
AvgMA3 = EMA((Z1 - Z2), Smoothing period)
Z2 = 2.0 * MA2 - AvgMA2
Z1 = 2.0 * MA1 - AvgMA1
AvgMA2 = EMA(MA2, First MA period)
AvgMA1 = EMA(MA1, First MA period)
MA2 = EMA(Applied price, Second MA period)
MA1 = EMA(Applied price, First MA period)

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

Reverse_Engineering_RSI Reverse_Engineering_RSI

the indicator performs an inverse mathematical transform of oscillator RSI into price and helps assume, at which approximate level the close price of the next day will be, if RSI reaches a certain value.

VAMA_MACD VAMA_MACD

Indicator Volume Adjusted MA MACD.

Exp_UltraAbsolutelyNoLagLwma Exp_UltraAbsolutelyNoLagLwma

A trading system using oscillator UltraAbsolutelyNoLagLwma.

Volume trader Volume trader

A trading system based on the tick volume of bars.