Search found 12 matches
- Fri Mar 28, 2014 1:40 am
- Forum: Estimation
- Topic: Short run coefficient of Panel Cointegration
- Replies: 4
- Views: 9178
Re: Short run coefficient of Panel Cointegration
would you help me with some steps on how to do it manually starting from the results of the long run ?
- Thu Mar 27, 2014 3:07 am
- Forum: Estimation
- Topic: Short run coefficient of Panel Cointegration
- Replies: 4
- Views: 9178
Short run coefficient of Panel Cointegration
Hello, I am working on estimating a Panel Cointegration equation using Eviews 8. By applying the FMOLS I am able to get the estimation of the long run relationship between the variables. how do I move to estimate the short run coefficients and the speed of adjustement coefficient for panels? thank y...
- Thu Aug 12, 2010 2:42 am
- Forum: Programming
- Topic: How to program tsls in order to save the coefficients?
- Replies: 11
- Views: 9524
Re: How to program tsls in order to save the coefficients?
which I have already done.
So, you are saying that as long as I use bootstraped values of inf, than I don't need to use instruments in order to get the bootstraped values of loan_boot?
So, you are saying that as long as I use bootstraped values of inf, than I don't need to use instruments in order to get the bootstraped values of loan_boot?
- Thu Aug 12, 2010 2:12 am
- Forum: Programming
- Topic: How to program tsls in order to save the coefficients?
- Replies: 11
- Views: 9524
Re: How to program tsls in order to save the coefficients?
so how do I get loan_boot(i) then?
- Thu Aug 12, 2010 12:23 am
- Forum: Programming
- Topic: How to program tsls in order to save the coefficients?
- Replies: 11
- Views: 9524
Re: How to program tsls in order to save the coefficients?
Let me clarify this further I estimate a TSLS equation then I save the coefficients which I estimated in the first step I use these coefficients to generate a bootstrap of the dependent variable here is the program equation ols_reg_orig.tsls loan = c(1)* (1/inf-1/thold)+c(2)*do +c(3)*fs @ inf(-1) do...
- Wed Aug 11, 2010 7:30 am
- Forum: Programming
- Topic: How to program tsls in order to save the coefficients?
- Replies: 11
- Views: 9524
Re: How to program tsls in order to save the coefficients?
Actually the program runs, if I remove instruments and the equation is an OLS
the only problem is I want to add instruments,
i is defined as a scalar which takes the values I determine therefore it works.
the only problem is I want to add instruments,
i is defined as a scalar which takes the values I determine therefore it works.
- Wed Aug 11, 2010 6:21 am
- Forum: Programming
- Topic: How to program tsls in order to save the coefficients?
- Replies: 11
- Views: 9524
Re: How to program tsls in order to save the coefficients?
however now I have a new problem this is part of the program for bootstraping for i = 1 to numobs inf_boot(i) = inf(infdraws(i)) loan_boot(i) = slope_c1*(1/inf_boot(i)-1/thold)+slope_c2*do(i)+slope_c3*fs(i) @ inf(-1) do(-1) fs(-1) in Bold are the instruments, but the program won't run due to syntax ...
- Wed Aug 11, 2010 4:43 am
- Forum: Programming
- Topic: How to program tsls in order to save the coefficients?
- Replies: 11
- Views: 9524
Re: How to program tsls in order to save the coefficients?
This works
thank you for your reply
thank you for your reply
- Wed Aug 11, 2010 2:04 am
- Forum: Programming
- Topic: How to program tsls in order to save the coefficients?
- Replies: 11
- Views: 9524
How to program tsls in order to save the coefficients?
hello I would like to use bootstrap in a tsls equation, therefore I will have to save the coefficients to use them for bootstraping. If the equation was an OLS, I would write it as follows: equation ols_reg.ls loan_boot = c(1)* (1/inf_boot-1/thold)+c(2)*do+c(3)*fs how do I add the instrumental varia...
- Tue Aug 10, 2010 1:14 am
- Forum: Programming
- Topic: question on putting an initial value smaller than 1 for LOO
- Replies: 5
- Views: 6102
Re: question on putting an initial value smaller than 1 for LOO
this should work. thank you for your replies
- Fri Aug 06, 2010 4:51 am
- Forum: Programming
- Topic: question on putting an initial value smaller than 1 for LOO
- Replies: 5
- Views: 6102
Re: question on putting an initial value smaller than 1 for LOO
this means that I want to save the value of equation residual for each g (from 0.1 to 39.4)
- Thu Aug 05, 2010 5:01 am
- Forum: Programming
- Topic: question on putting an initial value smaller than 1 for LOO
- Replies: 5
- Views: 6102
question on putting an initial value smaller than 1 for LOO
Hello I am working on estimating a threshold relationship using the following program scalar thold scalar test scalar i scalar g scalar numobs scalar numth series dum_thold series resumsq_loan numobs = 56 numth =394 for g =0.1 to numth step 0.1 dum_thold = 0 thold = grid(g) for i=1 to numobs test = ...
