7.3 Simple fiter buy-sell
Here we create trading signal based on simple filter rule. Recall that simple filter rule suggests buying when the price increases a lot compared to the yesterday price and selling when price decreases a lot: Buy:PtPt−1>1+δSell:PtPt−1<1−δ where Pt is the closing price at time t and δ>0 is an arbitrary threshold.
We first download the data:
library(quantmod)
getSymbols("MSFT")
## [1] "MSFT"
Now we generate trading signal:
Cl(MSFT)
price <- price/Lag(price) - 1
r <- (Cl(MSFT) - Op(MSFT))/Op(MSFT)
returnMSFT <-
0.005
delta<-c(NA) # first signal is NA
signal <-
for (i in 2: length(Cl(MSFT))){
if (r[i] > delta){
1
signal[i]<-else if (r[i]< -delta){
} -1
signal[i]<-else
} 0
signal[i]<-
}reclass(signal,Cl(MSFT)) signal<-
To keep thing simple, we allow costless short selling. Otherwise, we only allow a sell after a buy.
Lag(signal)
trade <-*trade
ret<-returnMSFT names(ret) <- 'Naive'
charts.PerformanceSummary(ret)