For the first time, asking a question here, I will do my best to be explicit - but let me know if I have to provide more information! Secondly, this long question ... I hope, just solve for someone;)! Therefore, using "R", I model multidimensional GARCH models based on some articles (Manera et al., 2012).
I model models of constant conditional correlation (CCC) and dynamic conditional correlation (DCC) with external regressors in medium equations; using version "R" version 3.0.1 with the package "rugarch" version 1.2-2 for the one-dimensional GARCH with external regressors and the package "ccgarch" (version 0.2.0-2) for the CCC / DCC models. (I am looking at the "rmgarch" package now, but it seems to be only for DCC, and I need a CCC model too.)
I have a problem in the average equations of my models. The article I mentioned above evaluates estimates of the parameters of the average equation between the CCC and DCC models! And I don’t know how to do this in R ... (currently, looking at Google and Tsai’s book “analysis of financial time series” and Engle’s book “Pending correlations” to find my mistake)
What I mean by "my average equations do not change between CCC and DCC models" is this: I specify a one-dimensional GARCH for my n = 5 time series with the rugarch package. Then I use the parameters for evaluating the GARCH conditions (ARCH + GARCH) and use them for both the CCC functions and the DCC "eccc.sim ()" and "dcc.sim ()". Then, from the functions eccc.estimation () and dcc.estimation (), we can obtain estimates for the dispersion equations as well as correlation matrices. But not for the average equation.
I host the R code (reproducible and my original) for one-dimensional models and only for the CCC model. Thanks for reading my post !!!!!
Note: in the code below, "data.repl" is the object of the "zoo" dim 843x22 (9 series of daily goods return series and explanatory variables). Multidimensional GARCH is for 5 series only.
Playable Code:
# libraries: library(rugarch) library(ccgarch) library(quantmod)
My source code:
source share