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:
4263
Derecelendirme:
(18)
Yayınlandı:
2015.07.02 15:00
Güncellendi:
2023.03.29 13:45
\MQL5\Include\
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

Real author:

EarnForex.com

This indicator was created by E.Coppock and was first used back in 1960s. It was first published in Barron's magazine. The indicator wasn't created for some investment fund, but at the request of Episcopal Church for long-term investments.

Formula:

Coppock(t) = EMA(w,t)[ROC(l,t) + ROC(s,t)]

where:

  • EMA(w,t) — Exponential Moving Average by 'w' periods;
  • ROC(l,t) + ROC(s,t) — sum of price change rate indicators for l — long and s — short periods.

Trading:

This indicator is a Moving Average for 10-month sum of 14- and 11-month ROC indicators. A signal for opening a position appears after the indicator changes direction. You can also open long positions when the histogram crosses the zero level upwards, and short positions when downwards.

The author of «The Encyclopedia of Technical Market Indicators» recommended to use the 5-period Exponential Moving Average along with the Coppock indicator. If EMA escapes the histogram downwards, then you can sell, otherwise, you can buy.

Input parameters:

input uint ROC1Period = 14;
input uint ROC2Period = 11;
input uint SmoothPeriod=3; // Signal line smoothing period
input ENUM_MA_METHOD MA_Method_=MODE_SMA; // Signal line averaging method
input Applied_price_ AppliedPrice=PRICE_CLOSE_;// Price constant

Indicator uses the СMoving_Average class of the SmoothAlgorithms.mqh library. Working with that class was described in details in the article "Averaging Price Series for Intermediate Calculations Without Using Additional Buffers".

Originally this indicator has been written in MQL4 and was first published in the Code Base on 03.06.2015.

Fig.1. The CoppockHist indicator

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

CenterOfGravityOSMA_HTF CenterOfGravityOSMA_HTF

The CenterOfGravityOSMA indicator with the timeframe selection option available in the input parameters.

CenterOfGravityOSMA CenterOfGravityOSMA

The Center of Gravity J. F. Ehlers indicator represented by a colored OSMA histogram.

CoppockHist_HTF CoppockHist_HTF

The CoppockHist indicator with the timeframe selection option available in the input parameters.

ColorZeroLAG_MA ColorZeroLAG_MA

The ZeroLAG MA indicator is a Moving Average with zero lag.