Alım-satım robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Facebook üzerinde bulun!
Fan sayfamıza katılın
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
Ö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:
- 4204
- Derecelendirme:
- Yayınlandı:
- 2018.06.18 13:56
-
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git
Indicator HWMA (Holt-Winter Moving Average) is a three-parameter moving average by the Holt-Winter method; the three parameters should be selected to obtain a forecast.
The indicator has four input parameters:
- nA - parameter of the equation that describes a smoothed series (from 0 to 1);
- nB - parameter of the equation to assess the trend (from 0 to 1);
- nC - parameter of the equation to assess seasonality (from 0 to 1);
- Applied price - price used for calculations.
Calculations:
HWMA[i] = F[i] + V[i] + 0.5 * A[i]
where:
F[i] = (1-nA) * (F[i-1] + V[i-1] + 0.5 * A[i-1]) + nA * Price[i] V[i] = (1-nB) * (V[i-1] + A[i-1]) + nB * (F[i] - F[i-1]) A[i] = (1-nC) * A[i-1] + nC * (V[i] - V[i-1])
MetaQuotes Ltd tarafından Rusçadan çevrilmiştir.
Orijinal kod: https://www.mql5.com/ru/code/20856

Indicator of candlestick divergences.

Indicator Difference2 shows the difference between the predefined reference prices (Applied price) now and as of N periods ago.

Channel indicator HWC (Holt-Winters Channel).

Intraday Intensity Index.