10.6 Simulation
We will consider two different simulations:
- random walk model, and
- Roll model of security price.
10.6.1 Random Walk
We first construct a random walk function that simulates random walk model. It takes the number of period (N), initial value (x0), drift (mu), and variance. The function use rnorm() to generate random normal variable, and then use cumsum() to get the random walk. Note that the whole function is based on vector operation, instead of looping over time.
Xt=x0+tμ+zt where μ is the drift and zt are i.i.d standardized normal random variables.
Here is a function that generate a time series of random walk.
function(N, x0, mu, variance) {
RW <-cumsum(rnorm(n=N, mean=0,
z<-sd=sqrt(variance)))
1:N
t<-+t*mu+z
x<-x0return(x)
}
Now we can plot two random walk time series.
RW(100,10,0,0.0004)
P1<-RW(100,10,0,0.0004)
P2<-plot(P1, main="Random Walk without Drift",
xlab="t",ylab="Price", ylim=c(9.7,10.3),
typ='l', col="red")
par(new=T) #to draw in the same plot
plot(P2, main="Random Walk without Drift",
xlab="t",ylab="Price", ylim=c(9.7,10.3),
typ='l', col="blue")
par(new=F)
10.6.2 Roll Model
To simulate the Roll model, we first simulate the price series and simulated trade prices. We calculate the first difference of the price and then we can estimate the first and the second orders of autocovariances. Then we can compare the true trading cost with the estimate one.
require(zoo)
1000 #Number of trial
trial <-
c() #cost each trial
cost <-c() #sd each trial
sd <-
2
true.cost = 1
true.sd =
1:trial
time =
for (i in 1:trial) {
#Simulated Price Series
rnorm(time,sd=true.sd)
epsilon = cumsum(epsilon)
prices = zoo(prices)
m_t = m_t + true.cost
a_t = m_t - true.cost
b_t =
#simulated trade prices
sign(rnorm(time))
q_t = m_t + (true.cost * q_t)
p_t =
#1st difference of prices
p_t-lag(p_t)
delta_p <-#omit n.a. entry
na.omit(delta_p)
delta_p <-
0 <- var(delta_p)
gamma_1 <- cov(delta_p[1:length(delta_p)-1],
gamma_2:length(delta_p)])
delta_p[2 <- gamma_0 + 2 * gamma_1
sigma_
if(gamma_1 > 0){
print("Error: Positive Autocovariance!")
else {
} append(cost,sqrt(-1*gamma_1))
cost <-append(sd,sigma_2)
sd <-
} }
Here is the plot for the stimulated trading cost:
plot(cost)
Here is the plot for the stimulated standard deviation:
plot(sd)
Comparison of the true and the stimulated costs and standard deviation:
mean(cost)
est.cost <- mean(sd)
est.sd <-cat("True cost and sd are", true.cost," and ", true.sd)
## True cost and sd are 2 and 1
cat("Estimated cost and sd are", est.cost," and ", est.sd)
## Estimated cost and sd are 2.00173 and 0.9894574