Watch how to download trading robots for free
Find us on Facebook!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Views:
4288
Rating:
(18)
Published:
2015.07.02 15:00
Updated:
2023.03.29 13:45
coppockhist.mq5 (7.03 KB) view
\MQL5\Include\
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

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

Translated from Russian by MetaQuotes Ltd.
Original code: 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.