Page 1 of 2

Formatted Multiple Equation Output Table

Posted: Mon Dec 07, 2009 12:24 pm
by EViews Gareth
This program takes the output from the equations in your workfile and formats them into a single table.

Note this program requires EViews 7 or above!

Re: Formatted Multiple Equation Output Table

Posted: Wed Dec 09, 2009 7:20 am
by Alfred
Very nice !!!

Re: Formatted Multiple Equation Output Table

Posted: Sat Feb 20, 2010 7:08 pm
by JimForest
Nice program! Very Helpful.

I will get a lot of use out of it. Thanks for posting. Very helpful for us novice programmers to learn from your work.

Is there any way to get it to also give the results for the variance equation in a Garch model?

Other suggested modifications:
options for adding AIC, SIC, Durbin Watson,
Also maybe put estimation type, sample range, and estimation options (Newey/West, White, Bollerslev/Wooldridge) in bottom left corner)

Re: Formatted Multiple Equation Output Table

Posted: Sat Feb 20, 2010 8:35 pm
by EViews Gareth
I believe it does give equation method, as an option.

The others should be fairly easy for you to add yourself - it was posted as an example of EViews programming after all! If you have a go and get stuck, I'm sure I can help out.

Re: Formatted Multiple Equation Output Table

Posted: Sun Feb 21, 2010 12:01 am
by RobHayward
I have UK date format and the code does not like that. Is there a way that I can deal with that without changing my default options? I cannot see anything obvious in the code.

Re: Formatted Multiple Equation Output Table

Posted: Sun Feb 21, 2010 12:20 am
by EViews Gareth
I can't think of any reason why your date format will affect the program. Could you be more specific than "the code does not like that"?

Re: Formatted Multiple Equation Output Table

Posted: Sun Feb 21, 2010 4:18 am
by RobHayward
You're right - I'm sorry.

Re: Formatted Multiple Equation Output Table

Posted: Tue Feb 23, 2010 2:38 pm
by JimForest
QMS Gareth wrote:I believe it does give equation method, as an option.

The others should be fairly easy for you to add yourself - it was posted as an example of EViews programming after all! If you have a go and get stuck, I'm sure I can help out.


Hi,

I think I can add the other indicators but I can't figure out how to get the GARCH variance equation output to be in the output table. Any advice??

JF

Re: Formatted Multiple Equation Output Table

Posted: Tue Feb 23, 2010 3:02 pm
by EViews Gareth
Well the values you're after are stored in the same place - i.e. the coefficients from the variance equation are stored in @coefs, in the same way the coefficients from the mean equation are. The problem is that the names of the coefficients, which are in %allregs, and are being pulled from the @varlist data member of an equation aren't getting stored, since the @varlist member does not include the variance terms.

I can't think of a general way around that issue. I'll give some thought to adding a new data member that contains the names of the variance equation terms for an update to EViews.

Re: Formatted Multiple Equation Output Table

Posted: Fri Mar 12, 2010 1:14 pm
by crd152
QMS Gareth,

This is a great code. I'm new to programming eViews, but have done much other programming before. I'm currently using eViews 6 instead of 7 -- what pieces of this code depend on functionality specific to version 7? Does it seem reasonable to try to implement this same process in version 6?

Any tips you provide as a place to start would be much appreciated!

Re: Formatted Multiple Equation Output Table

Posted: Fri Mar 12, 2010 1:36 pm
by EViews Gareth
Too much of the code requires the new data members, and workfile lookup functions available in EViews 7. The code would not be possible in EViews 6.

Re: Formatted Multiple Equation Output Table

Posted: Wed Jun 16, 2010 2:16 am
by wuruonan
I have downloaded, I want to thank you for the great effort
I have looked the details, what can I say, unbelievable hard to write
cheers

Re: Formatted Multiple Equation Output Table

Posted: Mon Sep 05, 2011 2:39 am
by Cranky-9
Nice program! Very Helpful.

I will get a lot of use out of it. Thanks for posting. Very helpful for us novice programmers to learn from your work.forest City HS Class of 1975

Re: Formatted Multiple Equation Output Table

Posted: Fri Jan 25, 2013 3:55 am
by Girl From Ipanema
Dear, the .prg is not available anymore. Could you see into it? Or possibly provide a link to similar program which creates an output table. This is such a trivial thing, yet very helpful and somehow ignored here on the Forum. Thanks and best wishes!

Re: Formatted Multiple Equation Output Table

Posted: Fri Jan 25, 2013 9:00 am
by EViews Gareth
Download the EqTabs add-in instead. http://www.eviews.com/Addins/addins.shtml It has the same code, but packaged as an add-in. You can always look at the source code, if you want to modify it.