Page 1 of 1

Forecasting using an EGARCH-M

Posted: Tue Oct 21, 2008 8:27 pm
by Socrates_plato
Hi,
I'm trying to forecast both the mean and variances of a egarch-m model using the garch instruction the code i'm working with is below:

open ratsinitialdata.xls
all 62
data(format=xls,org=columns) / inflationrate
*
equation eq1 inflationrate
# constant inflationrate{1 2}
source E:\Honours\Thesis Data\garchfore.src
garch(equation=eq1,p=1,q=1,exp,asymmetric,resids=a1,hseries=h1) / inflationrate
@garchfore(steps=1) h1 a1

does anyone have any ideas i can try?

Thanx

Re: Forecasting using an EGARCH-M

Posted: Wed Oct 22, 2008 9:42 am
by TomDoan
Socrates_plato wrote:Hi,
I'm trying to forecast both the mean and variances of a egarch-m model using the garch instruction the code i'm working with is below:

open ratsinitialdata.xls
all 62
data(format=xls,org=columns) / inflationrate
*
equation eq1 inflationrate
# constant inflationrate{1 2}
source E:\Honours\Thesis Data\garchfore.src
garch(equation=eq1,p=1,q=1,exp,asymmetric,resids=a1,hseries=h1) / inflationrate
@garchfore(steps=1) h1 a1

does anyone have any ideas i can try?

Thanx
Unfortunately, there's no simple way to forecast an EGARCH model. You have to use some form of simulation (bootstrapping or random draws).