7.7 Combining two indicators: EMA and RSI
Test the following strategy using EMA and RSI based on day trading:
Buy signal based on EMA rule.
Sell signal based on RSI rule.
Tie-breaking: buy-signal has priority
We use 14-day RSI and use 70 as threshold for selling.
We will use MSFT to illustrate. We use the closing price and calculate the daily return.
Cl(MSFT)
price <- (Cl(MSFT) - Op(MSFT))/Op(MSFT) returnMSFT <-
Then we calculate the indicator for filter rule and rsi.
0.005
delta<- price/Lag(price) - 1
r <- 14
n <- RSI(price, n) rsi <-
We calculate the signal based on the trading rule. Note that the trading rule cannot be started until all information is ready. Hence, the first n day have signal value of zero.
c()
signal <-1:n] <-0
signal[for (i in (n+1):length(price)){
if (r[i] > delta){
1
signal[i]<-else if (rsi[i] > 70){
} -1
signal[i]<-else
} 0
signal[i]<-
}reclass(signal,price) signal<-
Finally, we evaluate trading rule based on day trading.
Lag(signal)
EMA.RSI.trade <- returnMSFT*EMA.RSI.trade
EMA.RSI.ret<-names(EMA.RSI.ret) <- 'Combined'
cbind(filter.ret, RSI.ret, EMA.RSI.ret) retall <-
To draw trade performance summary with different colors, we use the option colorset. Common options includes redfocus, bluefocus, greenfocus, rainbow4equal andrich12equal.
charts.PerformanceSummary(retall,
main="Thee Comparisons",
colorset=bluefocus)