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östergeler

Reverse_Engineering_RSI - MetaTrader 5 için gösterge

Görüntülemeler:
5257
Derecelendirme:
(12)
Yayınlandı:
2018.07.09 13:31
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

Based on Giorgos Siligardos's article "The Revenge Of The Indicators Reverse Engineering RSI" published in the Stocks & Commodities magazine in June, 2003.

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.

The indicator has four input parameters:

  • RSI period - period of RSI.
  • MA period - MA period;
  • Method - calculation method;
  • Applied price - price used for calculations.

Calculation:

If RMA != 0:

ReRSI = Applied price + X * (100.0 - RSI_MA) / RSI_MA)

Otherwise:

ReRSI = Applied price + X

where:

If RSI_MA= 100:

X = (RSI Period - 1.0) * (ADC_MA * RSI_MA / (100.0 - RSI_MA) - AUC_MA)

Otherwise:

X = 0
RSI_MA = MA(RSI, MA Period, Method)
RSI = RSI(RSI Period)
ADC_MA = EMA(DN, 2*RSI Period-1)
AUC_MA = EMA(UP, 2*RSI Period-1)

If Applied price > PrevPrice:

UP = Applied price - PrevPrice

If Applied price <= PrevPrice:

DN = PrevPrice - Applied price

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

VAMA_MACD VAMA_MACD

Indicator Volume Adjusted MA MACD.

VAMA VAMA

Indicator Velocity and Acceleration MA.

PGC PGC

Indicator Price Gouging Cycle.

Exp_UltraAbsolutelyNoLagLwma Exp_UltraAbsolutelyNoLagLwma

A trading system using oscillator UltraAbsolutelyNoLagLwma.