Search found 16 matches
- Thu Sep 06, 2018 10:10 am
- Forum: Programming
- Topic: GARCH, Max Iteration and Convergence programing
- Replies: 1
- Views: 3140
GARCH, Max Iteration and Convergence programing
I programing some GARCH models in Eviews programming language. I have been look for some programing guide, but I cant find the code for determination a Max Iteration and Convergence. We have this option in Equation window. The default value is 500 Max Iteration and 0.0001 for Convergence. But I want...
- Wed Sep 30, 2015 9:11 am
- Forum: Programming
- Topic: Variables of equation and _this.@varlist
- Replies: 2
- Views: 2970
Re: Variables of equation and _this.@varlist
OK. Now this part of program works perfect.
Thank you Gareth.
Thank you Gareth.
- Wed Sep 30, 2015 3:43 am
- Forum: Programming
- Topic: Variables of equation and _this.@varlist
- Replies: 2
- Views: 2970
Variables of equation and _this.@varlist
Does anyone know what is the problem in this program. They should be something with: _this.@varlist command. 'the program smpl @all if @isobject("eq1") then show eq1 close eq1 %coefnames = _this.@varlist %varyingcoefs = %coefnames 'There is something wrong endif !result =@uidialog("ca...
- Sun Aug 09, 2015 7:51 am
- Forum: Programming
- Topic: Write the equation in @uidialog
- Replies: 2
- Views: 2945
Re: Write the equation in @uidialog
Thank you, now understand syntax. The line eq1.ls {%varyingcoefs} properly solve my problem.
- Sun Aug 09, 2015 3:16 am
- Forum: Programming
- Topic: Write the equation in @uidialog
- Replies: 2
- Views: 2945
Write the equation in @uidialog
Can anyone help with equation by list. In Vuidialog window, I want to specify equation. I know for that problem I could use sipl equation in workfile. But I nead to know how to do that with edit @uidialog, because I want to changing equation in some birer eviews program. The program is: smpl @all %t...
- Sun Aug 09, 2015 3:06 am
- Forum: Programming
- Topic: The single element of series to scalar
- Replies: 10
- Views: 10173
Re: The single element of series to scalar
I will use both solutions.
- Fri Aug 07, 2015 7:30 am
- Forum: Programming
- Topic: The single element of series to scalar
- Replies: 10
- Views: 10173
Re: The single element of series to scalar
That is very elegant solution, but anyone know if exist some command for that.
- Fri Aug 07, 2015 1:37 am
- Forum: Programming
- Topic: The single element of series to scalar
- Replies: 10
- Views: 10173
Re: The single element of series to scalar
The code with j element of series works good. One another question. What if I need to change the single element of series. For example; If I need to replace the 12. element of series (who is now 234) to value 277. So, how to replace one single element of series with scalar. @elem(series a, 12)=277 T...
- Mon May 18, 2015 9:12 am
- Forum: Programming
- Topic: Moving sample
- Replies: 3
- Views: 4270
Re: Moving sample
Does anyone know what is wrong in a sample time for this program.: scalar start= @dtoo("12/31/2012") scalar end= @dtoo("12/31/2013") equation eq1 !step=1 for !i =start to end step !step %date = @otod(!i-1) scalar element = @elem(h_window, %date) 'reg. equation smpl (!i-element) (...
- Sun May 17, 2015 10:54 am
- Forum: Programming
- Topic: The single element of series to scalar
- Replies: 10
- Views: 10173
Re: The single element of series to scalar
Well the problem is because I need the scalar of "j" element in series because I'm trying to use scalar in for loop.; !step=1 for !i =1000 to 1200 step !step scalar j=!i scalar element=@elem(mah02, j) next I need this for loop also because I will use scalar element in different sample for ...
- Sun May 17, 2015 9:48 am
- Forum: Programming
- Topic: The single element of series to scalar
- Replies: 10
- Views: 10173
Re: The single element of series to scalar
That's work well. And what if I need the value of the element 1000 (The element who is 1000 in the order in serie.) element of series.
- Sun May 17, 2015 9:01 am
- Forum: Programming
- Topic: The single element of series to scalar
- Replies: 10
- Views: 10173
The single element of series to scalar
Hello! Anyone know how to get the single element of series to scalar. I'm trying to do that with the @elem. I've tryed the simple code in programing: scalar j=1000 scalar element=@elem(mah02, j) And don't work. So the question is how to get the value of teh series to scalar. (The n (1000) element of...
- Wed Mar 11, 2015 2:48 am
- Forum: Estimation
- Topic: Estimating and forecasting for one day with no equal sample
- Replies: 2
- Views: 3156
Re: Estimating and forecasting for one day with no equal sam
Thank you. I didn't know the right word for those kind of forecasting. I've found the code and idea and did the program, and works correct. If will anyone search for this problem, here is all: ftp://ftp.physics.uoc.gr/pub/tmp/Panagos/EViews7/EViews%20Enterprise%20Edition%207.0.0.1/Example%20Files/HT...
- Tue Mar 10, 2015 5:33 am
- Forum: Estimation
- Topic: Estimating and forecasting for one day with no equal sample
- Replies: 2
- Views: 3156
Estimating and forecasting for one day with no equal sample
I have a series of €/ruble exchange rate and oil price for 2014. And I want to test and forecast an equation: rube=b1+b2*oil+b3*ruble(-1) I have the sample time from 1/1/2014 to 3/31/2014 and I did a forecast for 4/1/2014. But Now I want to estimation the equation with sample 1/1/2014 to 4/1/2014 an...
- Wed May 28, 2014 2:28 am
- Forum: Estimation
- Topic: Dynamic forecast with step
- Replies: 2
- Views: 3354
Re: Dynamic forecast with step
Well I have the series of electricity price in europe and I am testing the equation how good is and how big are the deviation in days forecasting. I have to forecast the price from hour 1 to hour 24 and compare the deviation from the real price in that day. And then comes the new day, and I want to ...
