5.9 MACD
Moving average convergence/divergence (MACD) is the difference between a short-period (fast) EMA and a long-period (slow) SMA: MACDt(S,L)=emat(P,S)−emat(P,L).
For its usage, we compare it with its exponential smoothed line. This line is called the : sigt(S,L,K)=emat(MACD(S,L),K). Usually, K=9 days, S=12 days and L=26 days. Note that MACD sometimes appear as the percetnage format MACDt(S,L)=emat(P,S)−emat(P,L))/emat(P,L).
Here is the short code for MACD:
function (price,S,L,K){
myMACD <- EMA(price,S) - EMA(price,L)
MACD <- EMA(MACD,K)
signal <- cbind(MACD,signal)
output <-colnames(output) <- c("MACD","signal")
return(output)
}
Let us apply our code:
myMACD(Cl(AAPL), 12, 26,9)
macd <-tail(macd,n=5)
## MACD signal
## 2012-12-21 -0.5521694 -0.5180912
## 2012-12-24 -0.5445377 -0.5233805
## 2012-12-26 -0.5527802 -0.5292604
## 2012-12-27 -0.5470695 -0.5328222
## 2012-12-28 -0.5519451 -0.5366468
5.9.1 TTR
We use MACD function in TTR package:
MACD(Cl(AAPL), nFast=12, nSlow=26,
macd <-nSig=9, percent=FALSE)
tail(macd,n=5)
## macd signal
## 2012-12-21 -0.5521694 -0.5180912
## 2012-12-24 -0.5445377 -0.5233805
## 2012-12-26 -0.5527802 -0.5292604
## 2012-12-27 -0.5470695 -0.5328222
## 2012-12-28 -0.5519451 -0.5366468
where nFast, nSlow, and nSig are S, L, and K in our formula. The percent is whether MACD is in percentage form or in difference form.