Page 1 of 1

egarch

Posted: Sun Jul 29, 2012 4:35 am
by Nau2306
Hello

I am using eviews6. I would like to know how to access the fifth coefficient in an egarch estimation with constant mean equation.

I have tried:

!c8 = @coefs(5) but it is giving me the following error message:

5 is not a valid index for vector series coefficient in !c8 = @coefs(5).

How can i correct this error?

Thanks

Re: egarch

Posted: Mon Jul 30, 2012 10:22 am
by EViews Glenn
Have you tried this off of an estimated equation by name?

Code: Select all

equation eq1.arch(egarch) x1 c scalar f=eq1.@coef(5)
@coefs is an equation member and should be used off of a named equation.

Re: egarch

Posted: Wed Aug 01, 2012 2:04 am
by Nau2306
I did try it but it is giving me the same error message :s

Re: egarch

Posted: Wed Aug 01, 2012 3:02 am
by trubador

Re: egarch

Posted: Wed Aug 01, 2012 3:22 am
by Nau2306
It is working now. Thanks