Search found 11 matches
- Sat Dec 14, 2013 11:50 am
- Forum: Programming
- Topic: Recursive Forecast with loop
- Replies: 1
- Views: 3413
Recursive Forecast with loop
Hello, I have another issue. I tried to adjust the program for recursive window estimation that was (almost) like that provided somewhere in this forum. I wanted to create 12 X variables and than to regresses Y on a constant and each X in separate equations. For the simple IS analysis the procedure ...
- Sat Dec 14, 2013 10:28 am
- Forum: Programming
- Topic: Implement tests for evaluation of forecasting models
- Replies: 5
- Views: 4718
Re: Implement tests for evaluation of forecasting models
Thank you for the response! I tried two ways, what I think could be correct. First: !window = 180 smpl oos genr MSPE1 = @sumsq(fcast1 - y)/!window genr MSPE2 = @sumsq(fcast2 - y)/!window genr MSPE3= @sumsq(fcast1-fcast2)/!window genr CW= (MSPE1-MSPE2+MSPE3)*1000 This gives me a series with the same ...
- Sat Dec 14, 2013 3:30 am
- Forum: Programming
- Topic: Implement tests for evaluation of forecasting models
- Replies: 5
- Views: 4718
Re: Implement tests for evaluation of forecasting models
For you it might be obvious, for me there is nothing in eviews that is "pretty clear, simple and straightforward..." I just started using eviews 3 weeks ago and besides writing my paper have to come along with it by myself. Besides the user eviews command reference there is nothing really ...
- Fri Dec 13, 2013 6:05 am
- Forum: Programming
- Topic: Implement tests for evaluation of forecasting models
- Replies: 5
- Views: 4718
Re: Implement tests for evaluation of forecasting models
Here is an explanation (by Paye) of the procedure of Clark and West (2007)


- Wed Dec 11, 2013 7:06 am
- Forum: Programming
- Topic: Copy monthly data to quaterly gmean
- Replies: 4
- Views: 3557
Re: Copy monthly data to quaterly gmean
Thanks! It works :)
Sorry for the confusion!
Sorry for the confusion!
- Tue Dec 10, 2013 10:12 am
- Forum: Programming
- Topic: Implement tests for evaluation of forecasting models
- Replies: 5
- Views: 4718
Implement tests for evaluation of forecasting models
Hello, I am trying to compare the performance of a univariate to a model that nests the univariate model and is extended by a macroeconomic variable. The t-test is not appropriate for such nested models. Thus, I would like to use the Clark and West (2007) test and the Giacomini and White (2006) test...
- Fri Dec 06, 2013 9:31 am
- Forum: Programming
- Topic: Copy monthly data to quaterly gmean
- Replies: 4
- Views: 3557
Re: Copy monthly data to quaterly gmean
Hello,
thanks for your response!
I thought of the following definition of the geometric mean:
(return 1 * return 2 *...* return n)^1/n
I think your proposed procedure doesn't really reflect this definition...
Do you maybe have another idea? I am thankful about every hint :)
thanks for your response!
I thought of the following definition of the geometric mean:
(return 1 * return 2 *...* return n)^1/n
I think your proposed procedure doesn't really reflect this definition...
Do you maybe have another idea? I am thankful about every hint :)
- Fri Dec 06, 2013 3:07 am
- Forum: Programming
- Topic: Copy monthly data to quaterly gmean
- Replies: 4
- Views: 3557
Copy monthly data to quaterly gmean
Hello, my workfile consists of different pages with different sampling frequencies (1. page- daily, 2. page -monthly, 3. page - quaterly). I am trying to copy monthly data to the quaterly data page by taking the geometric mean of every quater. I know about the possibility "paste special..."...
- Wed Dec 04, 2013 10:37 am
- Forum: Programming
- Topic: Loop - foreach series
- Replies: 4
- Views: 3455
Re: Loop - foreach series
Thank you! Now it works :)
- Wed Dec 04, 2013 10:10 am
- Forum: Programming
- Topic: Loop - foreach series
- Replies: 4
- Views: 3455
Re: Loop - foreach series
Hello, thanks for your response! I just started using Eviews... When I use: %list = @wlookup("*", "series") there is no error but I can not see any changes in the workfile. After the next command: for %j {%list} Eviews shows following Error Message: Flow of control statement exec...
- Wed Dec 04, 2013 7:33 am
- Forum: Programming
- Topic: Loop - foreach series
- Replies: 4
- Views: 3455
Loop - foreach series
Hello,
I want to standardize all variables in the following way:
series std_inflation= (inflation-@mean(inflation))/@stdev(inflation)
Is there any command, which can be used to do this foreach (and all) series I have in my workfile at once?
Thanks in advance!
Jelena
I want to standardize all variables in the following way:
series std_inflation= (inflation-@mean(inflation))/@stdev(inflation)
Is there any command, which can be used to do this foreach (and all) series I have in my workfile at once?
Thanks in advance!
Jelena
