7.8 Trading Size
Wealth: 1 million
Trade unit: 1000 stocks per trade
Test the following strategy based on 14-day RSI :
Buy one more unit if RSI <30.
Keep buying the same if 30 < RSI < 50
Stop trading if RSI >= 50
Evaluate based on day trading
We will use closing price of MSFT to construct our technical indicator:
Cl(MSFT) price <-
First, we generate the techncial indicator:
14
day <- RSI(price, day) rsi <-
Second, we generate trading signal together with size:
c()
signal <-1:(day+1)] <- 0
signal[
for (i in (day+1): length(price)){
if (rsi[i] < 30){ #buy one more unit
signal[i-1]+1
signal[i] <-else if (rsi[i] < 50){ #no change
} signal[i-1]
signal[i] <-else { #sell all
} 0
signal[i] <-
}
}reclass(signal,price) signal<-
To take trade size into account, we need to keep track of wealth:
1000 #trading size
qty <-
c()
wealth <-1:(day+1)] <- 1000000
wealth[
c()
profit <-1:(day+1)] <- 0
profit[
c()
return<-1:(day+1)] <- 0 return[
Here, wealth is the market value of the portfolio, profit is the absolute amount of profit each day, and return is the daily percentage profit.
Now we are ready to apply Trade Rule
Cl(MSFT)
Close <- Op(MSFT)
Open <- Lag(signal)
trade <-for (i in (day+1):length(price)){
qty * trade[i] * (Close[i] - Open[i])
profit[i] <- wealth[i-1] + profit[i]
wealth[i] <- (wealth[i] / wealth[i-1]) -1
return[i] <-
}reclass(return,price) ret<-
Now we are ready to visualize the trading outcome.
charts.PerformanceSummary(ret, main="Trade Size")