Dear Tom,
Hi,
I estimated Multivariate GARCH model and wants to calculate portfolio weights and hedge ratios. the model is
Code: Select all
garch(p=1,q=1,model=varma,mv=bekk,pmethod=simplex,rvectors=rd,hmatrices=hh,piters=10,iters=500,asymmetric)
I use this formula to calcutae weights which is
Code: Select all
set weight = (hh(t)(1,1)-hh(t)(1,2))/(hh(t)(2,2)-2*hh(t)(1,2)+hh(t)(1,1))
and hedge ratio
the I use command "stat" to find the avaerge values of weights and hedge ratio.
In another program, I found formula for the weight and hedge as under
Code: Select all
compute [real] weight=(hh(t)(1,1)-hh(t)(1,2))/(hh(t)(2,2)-2*hh(t)(1,2)+hh(t)(1,1))
and hedge ratio
Code: Select all
compute [real] OHR=hh(t)(1,2)/hh(t)(1,1)
at the end they used
to get the value of weight and hedge ratio.
I estimate the hedge ratio and weights using both procedures but reached different values of weights and hedge ratio
Why the answers are different and what is exact formula for this ?
With high regards, Irfan