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:
3963
Derecelendirme:
(10)
Yayınlandı:
2018.06.06 13:55
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

Instantaneous Trendline by J.Ehlers is calculated by the following formula:

If i<=7:

ITrend[i] = (Price[i] + 2*Price[i-1] + Price[i-2])/4

If i>7:

ITrend[i] = c1*Price[i] + c2*Price[i-1] - c3*Price[i-2] + c4*ITrend[i-1] - c5*ITrend[i-2]

where

c1 = Alpha - 0.25*Alpha*Alpha,
c2 = 0.5*Alpha*Alpha,
c3 = Alpha - 0.75*Alpha*Alpha,
c4 = 2*(1 - Alpha),
c5 = (1 - Alpha)*(1 - Alpha),
Alpha = 2/(Period + 1)

The indicator has two input parameters:

  • Period - calculation period;
  • Applied price - price used for calculations.

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

HMA HMA

Alan Hull's Moving Average is a non-lagging moving average.

Interpolation Interpolation

Polynomial interpolation.

LSMA LSMA

Least Square Moving Average - a moving average calculated by the least squares method.

Mod_ATR_Trailing_Stop Mod_ATR_Trailing_Stop

An indicator of StopLoss levels.