This function computes the rolling spillover using the standard VAR estimate. We implement the parallel version for faster processing. The window is of fixed window and is rolled over the data. Interpretation of the other parameters is the same as in the standard computation of spillover.
spilloverRollingBK09(
data,
n.ahead = 100,
no.corr,
partition,
func_est,
params_est,
window,
cluster = NULL
)
variable containing the dataset
how many periods ahead should the FEVD be computed, generally this number should be high enough so that it won't change with additional period
boolean parameter whether the off-diagonal in the covariance matrix should be set to zero
how to split up the estimated spillovers into frequency bands. Should be a vector of bound points that starts with 0 and ends with pi+0.00001.
estimation function, usually would be VAR or BigVAR function to estimate the multivariate system
parameters passed to the estimation function, as a list, for parameters refer to documentation of the estimating function
length of the window to be rolled
either NULL for no parallel processing or the variable containing the cluster.
Tomas Krehlik <tomas.krehlik@gmail.com>