Dear Tom,
First of all, thanks very much for your great help with me. I am estimating a multivariate CC model of Bollerslev (1990) allowing for spillover effects in the variance equation [this model is from TSE book]. The code is posted below which is working perfectly fine. However, I need to restrict some ARCH parameters in the model to zero. So, I really need your help to do so.
equation xeq x
# constant x{1} y{1}
equation yeq y
# constant x{1} y{1}
group bimean xeq yeq
*
* The volatility model in (10.25) is almost what you would get by using the
* combination of MV=CC and VARIANCES=VARMA. The VARIANCES option specifies the
* formula used for computing the variances; VARMA is, in effect, a vector ARMA
* specification for those. The only difference between this and (9.22) is the 0
* restriction on the 1,2 element on the lagged squared residuals matrix.
*
garch(mv=cc,p=1,q=1, model=bimean,hmatrices=hd,rvector=rd,$
pmethod=simplex,variances=varma,piters=10,iters=200)
