I am trying to build a simulation of a random walk process with a drift using a loop, however, I am not able to get any outputs and instead I get a length error (number of items to replace is not a multiple of replacement length) which I can't fully understand since I provide a length that will change with how any number of values (N). I am supposed to be able to provide with specific values and then simulate the random walk. Here's my code:
random_walk <- function(prices){
prices <- as.vector(prices)
ln_prices <- log(prices)
N <- length(prices)
phi0 <- (ln_prices[N] - ln_prices[1]) / N
sigma <- sd(ln_prices) / sqrt(ln_prices)
shock <- rnorm(ln_prices, 0, sigma)
rw1 <- c(ln_prices[1])
for (i in 2:N){
# I calculate the rw value for day t:
# rw <- drift + shock + rw of yesterday
rw1 <- rw1 + phi0 + shock
}
}```
You need to return something out of this functions, you can either use return or just call the name of what you want at the last line
Created on 2021-06-03 by the reprex package (v2.0.0)
Session info