Moving Average Convergence Divergence (MACD)
MACD is a trend-following momentum indicator that shows the relationship between two
moving averages. It is calculated by subtracting the 26-period Exponential Moving Average
(EMA) from the 12-period EMA. The result of that calculation is the MACD line. A nine-day
EMA of the MACD called the "signal line," is then plotted on top of the MACD line, which can
function as a trigger for buy and sell signals. A simple strategy would be to buy when the MACD
crosses above its signal line, indicating an upward momentum in the market, and sell
when the MACD crosses below the signal line, indicating a downward momentum in the market.
The above example is taken from MT4 backtesting data of the EUR/USD per minute. The script implemented above
opens and closes buy and sell position based off of the intersection of the MACD line with the signal line.
The histogram is representative of the distance between the MACD line and the signal line. When the histogram
crosses the 0 line from positive to negative, the MACD line has crossed below the signal line and represents a sell
signal. When the histogram crosses the 0 line from negative to positive, the MACD line has crossed above the signal
line and represents a buy signal. The script calculates the current candle's MACD and compares it with the previous
candle's MACD. If it is the case where the current MACD is greater than 0 and the previous MACD is less than 0, then
we have had a positive MACD crossover. The opposite is true as well, where we have a negative MACD crossover if the
current MACD is less than 0 and the previous MACD is greater than 0.