I use the following codes to estimate a VAR-GARCH-DCC model, how can i do the specification test such as serial correlation or Heteroscedasticity of residual from the vaiance equations?
Thanks alot .
Code: Select all
*
* Multivariate GARCH with two-step DCC estimator
*
open data fulldata.xls
data(format=xls,org=columns) / r1 r2 r2
*
system(model=var1)
variables r1 r2 r3
lags 1
det constant
end(system)
*
garch(p=1,q=1,mv=dcc,model=var1,variance=varma,method=bhhh)