Skip to content
Prev 11017 / 15274 Next

rugarch and copulas

This is not really a reproducible example...nevertheless, I am guessing 
you are trying to generate the final point of the path at 
simulation_time "horizon".
What you are forgetting is that the values in "simulation$seriesSim" are 
returns, so doing "exp(diffinv(test))[2]" on the last value (horizon) is 
meaningless. What you want (probably) is:

... at simulation$seriesSim[1:horizon,1]
one_simul[,i] <- tail(exp(diffinv(test)), 1)

-Alexios
On 21/11/2012 09:27, ludovic.theate wrote: