5.7 Rate of Change (ROC)
Rate of Change (ROC) with K-day momentum at day t equals to return of K days.
For discrete type, we have
ROCt(K)=Pt−Pt−KPt−K For continuous type, we have ROCt(K)=log(Pt)−log(Pt−K)
function (price,n){
myROC <- rep(0,n)
roc <- nrow(price)
N <- Lag(price,n)
Lprice <-for (i in (n+1):N){
-Lprice[i])/Lprice[i]
roc[i]<-(price[i]
} reclass(roc,price)
roc <-return(roc)
}
Now we test our code:
myROC(Cl(AAPL),n=2)
roc <-tail(roc,n=3)
## [,1]
## 2012-12-26 -0.012188866
## 2012-12-27 -0.009823658
## 2012-12-28 -0.006647189