Dear Tom,
i follow Koutmos code to estimate the spillover among 4 countries but instead of a var - egarch model i have to estimate an ecm multvariate egarch model.
What should i add in this code so as to estimate the ecm-mv-egarch ?
The Koutmos paper does a VAR on the differences. The difference between that and a VECM is that the VECM requires an error correction term (or terms, depending upon the number of common trends). For instance, the following would create a single common trend for the four exchange rates:
(You can use any sets of pairs of the exchange rates in this).
set ect1 = 100*log(fra/ger)
set ect2 = 100*log(ger/ita)
set ect3 = 100*log(ita/uki)
You mean that i have to also write
set ect1 = 100*log(fra/ger)
set ect2 = 100*log(ger/ita)
set ect3 = 100*log(ita/uki)
set ect4 = 100*log (fra/ita)
set ect5 = 100*log (fra/uki)
set ect6 = 100*log (ger/uki)
in order to have the equation meaneq *
# constant y(1){1} y(2){1} y(3){1} y(4){1} ect1{1} ect2{1} ect3{1} ect4{1} ect5{1} ect6{1}???
I am sorry for the persistent quetions but i am working on my own the mv-ecm- egarch model so as to find the spillovers from each country to the other.
Thank you very much for your time
pitsikiou wrote:You mean that i have to also write
set ect1 = 100*log(fra/ger)
set ect2 = 100*log(ger/ita)
set ect3 = 100*log(ita/uki)
set ect4 = 100*log (fra/ita)
set ect5 = 100*log (fra/uki)
set ect6 = 100*log (ger/uki)
in order to have the equation meaneq *
# constant y(1){1} y(2){1} y(3){1} y(4){1} ect1{1} ect2{1} ect3{1} ect4{1} ect5{1} ect6{1}???
I am sorry for the persistent quetions but i am working on my own the mv-ecm- egarch model so as to find the spillovers from each country to the other.
Thank you very much for your time
No. Half of those are redundant. If FRA-GER and GER-ITA are stationary then FRA-ITA has to be stationary as well. I was also just giving an example based upon the Koutmos data; if you have a different VECM, you would set it up differently.
Have you tried estimating the VECM without the GARCH errors? That's the place to start.
i completed the cointegration and found out that ger-uki: 1 cointegrating vector,ger-fra: 2 cointegrating vectors, ger-ita:2 cointegrationg vectors, fra-ita:2 coint.vect, fra-uki:2 coint. vec, ita-uki:2 coint vec
i did the cointegration for the 4 countries and johansen showed 2 cointegrated vectors but Max-eigenvalue test indicated no cointegration.
The ecm model gave me the following results
I seriously doubt that you're going to get reasonable results from running a complicated GARCH model with so little data. Have you run univariate GARCH models to see if there's even a GARCH effect to model?