5.2 Simple Moving Average (SMA)
A n-day simple moving avaerage (n-day SMA) is arithmetic average of prices of past n days:
SMAt(n)=Pt+…+Pt−n+1n
The following is an SMA function:
function (price,n){
mySMA <- c()
sma <-1:(n-1)] <- NA
sma[for (i in n:length(price)){
mean(price[(i-n+1):i])
sma[i]<-
} reclass(sma,price)
sma <-return(sma)
}
Let us apply our function:
mySMA(Cl(AAPL),n=20)
mysma <-tail(mysma,n=3)
## [,1]
## 2012-12-26 19.36046
## 2012-12-27 19.23925
## 2012-12-28 19.09680
5.2.1 TTR
In the TTR package, we can use SMA():
SMA(Cl(AAPL),n=20)
sma <-tail(sma,n=3)
## SMA
## 2012-12-26 19.36046
## 2012-12-27 19.23925
## 2012-12-28 19.09680
We can see that our code gives the same result.