Skip to content
Prev 11885 / 15274 Next

Fitting a DCC-GARCH with more than one external regressor per single process using rmgarch

If I understand correctly, the DCC estimation fails when including 2
external regressors per univariate variance equation (but not 1), and
this does not happen when estimating them separately?

A quick solution is to supply the estimated "multifit" object to the DCC
estimation (via the 'fit' option).
#####################################################################
args(dccfit)

dccfit(spec, data, out.sample = 0, solver = "solnp", solver.control =
list(),  fit.control = list(eval.se = TRUE, stationarity = TRUE, scale =
FALSE), cluster = NULL, fit = NULL, VAR.fit = NULL, ...)
####################################################################
i.e. pass the multispec object to the multifit method and then the
resulting object to dccfit. The dccfit does the same thing, but you have
more control over the estimation and fine-tuning of solver/estimation
setup in the multifit case.

Otherwise convergence problems, particularly in the presence of external
regressors in the variance equation, are discussed in the FAQs of the
vignette and elsewhere in the archives of this mailing list.

You may also find the following paper of interest:
http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.158.1593&rep=rep1&type=pdf)

-Alexios
On 03/09/2013 16:52, leopoldo.catania wrote: