I am trying to perform a CC-MVEGARCH as CHAKER ALOUI did on "Price and volatility spillovers between exchange rates and stock indexes for the pre- and post-euro period" which defines the conditional variance equations as follows:

I am trying to get the same amount of parameters as he did, which are:

So far, i have performed a CC-MVEGARCH as follows:
Code: Select all
cal(d) 2009:1:2
open data series.xls
data(format=xls,org=columns) / BRASIL_STOCK BRASIL_EXCHANGE
*SOURCE C:\RATS\DFUNIT,SRC
*SOURCE C:\RATS\ADTEST,SRC
*DEL 1 AL 1008
compute gstart=2009:1:2,gend=2013:12:30
set brasil_rt = 100*log(BRASIL_STOCK/BRASIL_STOCK{1})
set brasil_st = 100*log(BRASIL_EXCHANGE/BRASIL_EXCHANGE{1})
system(model=var1)
variables brasil_rt brasil_st
lags 1 2
det constant
end(system)
estimate(noprint)
garch(p=2,q=1,model=var1,mv=cc,pmethod=bhhh,variance=spillover,asymmetric,piters=10,hmatrices=H,RVECTORS=U)
set z1 %regstart() %regend() = U(t)(1)/sqrt(H(t)(1,1))
set z2 %regstart() %regend() = U(t)(2)/sqrt(H(t)(2,2))
@bdindtests(number=20) z1
@bdindtests(number=20) z21) The D(1) and D(2) terms... i know they are set for asymmetry effect" but as shown on my base model which parameters are they? theta(1,1) theta(1,2) theta(2,1) theta(2,2) any of them? and if they are not, how can i estimate them?
2) In this paper the volatility persistent is sum_{j=1}^P_{s} and they get a t-statistic with robust standard errors for this sum, how can i do it? and last:
3) Since i have found that these variables (brasil_rt and brasil_st) are cointegrated, how can i modify the mean equation to allow ECM??
Thanks you so much in advice,
Felipe Evans.