In order to compute the quadratic variation of a timeseries in R, I would like to to sum for every point the square of log returns of the current point and the last x points.
I know that you can build the square of log returns of py by typing
diff(log(py))^2
However how can I build a timeseries which is summing at every point the last 5 points in order to build the quadratic variation ?
The function
embed
combined withrowSums
gives what you need:What
embed
does is to create a matrix with lagged values of your initial vector:You can them use
rowSums
or any other manipulation on the rows of this matrix.