16.3 Monte Carlo Simulation of the SI Model
To give a first step reality check for the SI model, consider simulating data from the SI model for a single asset. The steps to create a Monte Carlo simulation from the SI model are:
- Fix values for the SI model parameters α, β, σϵ, μM and σM
- Determine the number of simulated returns, T, to create.
- Use a computer random number generator to simulate T iid values of RMt∼N(μM,σ2M) and ϵt∼N(0,σ2ϵ), where RMt is simulated independently from ϵt.
- Create the simulated asset returns ˜Rt=α+β˜RM+˜ϵt for t=1,…,T
The following example illustrates simulating SI model returns for Boeing.
Consider simulating monthly returns on Boeing from the SI model where the S&P 500 index is used as the market index. The SI model parameters are calibrated from the actual monthly returns on Boeing and the S&P 500 index using sample statistics, as discussed in the next section, and are given by: αBA=0.005,βBA=0.98,σϵ,BA=0.08,μM=0.003,σM=0.048. These values are set in R using:
0.005
alpha.BA = 0.98
beta.BA = 0.08
sd.e.BA = 0.003
mu.sp500 = 0.048 sd.sp500 =
The simulated returns for the S&P 500 index and Boeing are created using:
nrow(siRetS)
n.sim =set.seed(123)
rnorm(n.sim, mu.sp500, sd.sp500)
sp500.sim = rnorm(n.sim, 0, sd.e.BA)
e.BA.sim = alpha.BA + beta.BA*sp500.sim + e.BA.sim
BA.sim = xts(BA.sim, index(siRetS))
BA.sim = xts(sp500.sim, index(siRetS))
sp500.sim =colnames(BA.sim) = "BA.sim"
colnames(sp500.sim) = "SP500.sim"

Figure 16.5: Simulated SI model monthly returns on the S&P 500 index and Boeing.

Figure 16.6: Simulated SI model monthly returns on the S&P 500 index and Boeing. The orange line is the equation RBA,t=αBA+βBARMt=0.005+0.98×RMt.
The simulate returns are illustrated in Figures 16.5 and 16.6. The time plot and scatterplot of the simulated returns on the S&P 500 index look much like the corresponding plots of the actual returns shows in the top left panels of Figures 16.2 and 16.4, respectively. Hence, the SI model for the S&P 500 index and Boeing passes the first step reality check. In Figure 16.6, the line αi+βiRMt=0.005+0.98RMt is shown in orange. This line represents the predictions of Boeing’s return given the S&P 500 return. For example, if RMt=0.05 then the predicted return for Boeing is RBA=0.005+0.98×(0.05)=0.054. The differences between the observed Boeing returns and (blue dots) and the predicted returns (orange line) are the asset specific error terms. These are the random asset specific news components. The standard deviation of these components, σϵ,BA=0.08, represents the typical magnitude of these components. Here, we would not be too surprised if the observed Boeing return is 0.08 above or below the orange line. How close the Boeing returns are to the predicted returns is determined by the R2 value given by (16.15). Here, σ2BA=β2BAσ2M+σ2ϵ,BA=(0.98)2(0.048)2+(0.08)2=0.00861 and so R2=(0.98)2(0.048)2/0.00861=0.257. Hence, 25.7% of the variability (risk) of Boeing returns are explained by the variability of the S&P 500 returns. As a result, 74.3% (1−R2=0.743) of the variability of Boeing returns are due to the random asset specific terms.
◼