Search found 8 matches
- Fri Jun 26, 2009 10:00 am
- Forum: Programming
- Topic: How to close Eviews from VBA
- Replies: 2
- Views: 4245
Re: How to close Eviews from VBA
Thank you so much. Works Well.
- Fri Jun 26, 2009 8:40 am
- Forum: Programming
- Topic: How to close Eviews from VBA
- Replies: 2
- Views: 4245
How to close Eviews from VBA
Hi,
I wrote a VBA macro that calls Eviews to run seasonal adjustment. How to use VBA to close Eviews after it finishes? Thanks.
I wrote a VBA macro that calls Eviews to run seasonal adjustment. How to use VBA to close Eviews after it finishes? Thanks.
- Thu Jun 25, 2009 2:20 pm
- Forum: Programming
- Topic: Need Help with Seasonal Adjustment
- Replies: 4
- Views: 6410
Re: Need Help with Seasonal Adjustment
thank you so much. It worked.
- Thu Jun 25, 2009 1:58 pm
- Forum: Programming
- Topic: Need Help with Seasonal Adjustment
- Replies: 4
- Views: 6410
Re: Need Help with Seasonal Adjustment
Hello Startz,
Thank you for your prompt reply. Your method worked. Is there a way to write this proc/structure process to a Eviews program so that Eviews can do it automatically? Thanks again.
Thank you for your prompt reply. Your method worked. Is there a way to write this proc/structure process to a Eviews program so that Eviews can do it automatically? Thanks again.
- Thu Jun 25, 2009 1:30 pm
- Forum: Programming
- Topic: Need Help with Seasonal Adjustment
- Replies: 4
- Views: 6410
Need Help with Seasonal Adjustment
Hi,
I imported a series from Excel. Then choose "Proc/Seasonal Adjustment/CensusX12" but comes up an Error Message "Seasonal Adjustment is only available for quarterly and monthly data". Any advice? Thanks.
I imported a series from Excel. Then choose "Proc/Seasonal Adjustment/CensusX12" but comes up an Error Message "Seasonal Adjustment is only available for quarterly and monthly data". Any advice? Thanks.
- Tue Jun 23, 2009 8:43 am
- Forum: Programming
- Topic: State Space Problem Fail to improve likelihood
- Replies: 6
- Views: 8032
Re: State Space Problem Fail to improve likelihood
Yes, they represent the shocks to the dependent variables. In the model, these shocks are assumed to be i.i.d. Ideally, I would like to specify them all to have a variance of 1, but the program will not converge. Making a variance as exp(c(10)) seems to be the only way to have the program converge. ...
- Tue Jun 23, 2009 7:10 am
- Forum: Programming
- Topic: State Space Problem Fail to improve likelihood
- Replies: 6
- Views: 8032
Re: State Space Problem Fail to improve likelihood
Thank you for your reply. I made a little change and now it can converge param c(1) .77 c(2) .37 c(3) .59 c(4) .43 c(5) -.03 c(6) .21 c(7) -.08 c(8) .19 c(9) .02 c(10) 7.0 @signal y = sv2 + sv5 @signal pi = sv4 @state sv1 = (1-c(1))*0.0125 + c(1)*sv1(-1) + [var = exp(c(10))] @state sv2 = c(2)*sv2(-1...
- Mon Jun 22, 2009 10:59 am
- Forum: Programming
- Topic: State Space Problem Fail to improve likelihood
- Replies: 6
- Views: 8032
State Space Problem Fail to improve likelihood
Hi, I wrote a state space program, it runs, but keep on telling me failure to improve likelihood after .... iterations. Here is my program: @signal pi = sv4 @signal y = sv5 + sv2 @state sv1 = (1-c(5))*0.0125 + c(5)*sv1(-1) + [var = 1] @state sv2 = c(6)*sv2(-1) + c(7) *r +c(8) *di + c(9)*reer + [var ...
