Search found 14 matches
- Thu Mar 01, 2012 12:09 pm
- Forum: Estimation
- Topic: Too many ARMA terms
- Replies: 7
- Views: 7289
Re: Too many ARMA terms
Well, the reason lies in the fact that I am programming the model described in Henry & Olekalns 2002, Southern Economic Journal on monthly dates. Therefore, I wanted to span lagged values of one year which necessitates the inclusion of 12 lags of AR and MA.
- Wed Feb 29, 2012 10:57 am
- Forum: Estimation
- Topic: Too many ARMA terms
- Replies: 7
- Views: 7289
Re: Too many ARMA terms
Thank you very much for your quick response, Gareth.
Cheers Z
Cheers Z
- Wed Feb 29, 2012 10:48 am
- Forum: Estimation
- Topic: Too many ARMA terms
- Replies: 7
- Views: 7289
Re: Too many ARMA terms
Hey Gareth,
I don't follow, to be honest. So does this mean that there is a limit of 24 coeffs that can be estimated. Maybe it's lost in translation since i#m not a native English speaker but what do you mean by "override"?
Z
I don't follow, to be honest. So does this mean that there is a limit of 24 coeffs that can be estimated. Maybe it's lost in translation since i#m not a native English speaker but what do you mean by "override"?
Z
- Wed Feb 29, 2012 10:28 am
- Forum: Estimation
- Topic: Too many ARMA terms
- Replies: 7
- Views: 7289
Too many ARMA terms
Hi everybody, I encountered an akward thing today. In my sample I have about 550 monthly observations. I wanted to estimate an ARMA(12,12), therefore I clicked "Quick" --> "Estimate equation" and then the usual window pops up which asks me to type in the dependent followed by the...
- Tue Feb 28, 2012 7:41 am
- Forum: Estimation
- Topic: Including lags of variance in mean equation
- Replies: 2
- Views: 3990
Re: Including lags of variance in mean equation
Of course that's possible!
What's your code you've written so far?
Z
What's your code you've written so far?
Z
- Mon Feb 27, 2012 8:46 am
- Forum: Programming
- Topic: Command for GJR and Bollerslev-Woolridge error in GARCH-Code
- Replies: 3
- Views: 5675
Re: Command for GJR and Bollerslev-Woolridge error in GARCH-
Hi morbo-23, I wrote something that might help you. I am not sure, if it is really correct. But I'd appreciate it if you could take a look at it. I have arbitrarily taken a AR(2) for the conditional mean. '################################################## 'AR(2) - GJR-GARCH(1,1) '##################...
- Tue Nov 08, 2011 3:00 am
- Forum: Programming
- Topic: Notation
- Replies: 1
- Views: 3070
Notation
Hello! I am confused a little bit. Maybe someone can shed light into the dark for me? I want to do an MLE. For starting values I first try to "demean" the data by estimating an ARMA(p,q) with LS. 'get starting values from ARMA(p,q) equation eq_temp.ls y c ar(1) ar(2) ma(1) ma(6) ma(12) ma(...
- Wed Nov 02, 2011 1:42 am
- Forum: Programming
- Topic: Error message while performing MLE
- Replies: 3
- Views: 5125
Negative sig2
Hi Gareth, thank's for your thoughts on this so far. I took the absolute value of sig2 ll1.append loglf = -0.5 * log(2*3.14) - 0.5 * log(@abs(sig2)) -0.5 * res^2 / @abs(sig2) But still the same error message pops up... If I wanted to take only the second until last observation of x, what command wou...
- Mon Oct 31, 2011 6:40 am
- Forum: Programming
- Topic: Error message while performing MLE
- Replies: 3
- Views: 5125
Error message while performing MLE
Hello. I am trying to estimate a simple GARCH(1,1) with maximum likelihood. My code is: %daily = "test" !obs = @val(%1) pageselect {%daily} genr y = {%0} genr x = dlog(y) '###################################### param c(1) 0 c(2) 0.1 c(3) 0.8 c(4) 10 logl ll1 ll1.append @logl loglf ll1.appe...
- Mon Oct 31, 2011 1:54 am
- Forum: Programming
- Topic: Code of ARIMASel
- Replies: 3
- Views: 5267
Re: Code of ARIMASel
Wow, that was fast! Thank's a lot sweivE
- Mon Oct 31, 2011 1:36 am
- Forum: Programming
- Topic: Code of ARIMASel
- Replies: 3
- Views: 5267
Re: Code of ARIMASel
Sorry, I guess I should better be posting this thread in the ARIMASel Forum...
- Mon Oct 31, 2011 1:31 am
- Forum: Programming
- Topic: Code of ARIMASel
- Replies: 3
- Views: 5267
Code of ARIMASel
Hello everbody!
I was wondering, if there is a way to view the code of the ARIMASel add in?
Greetz,
Felix
I was wondering, if there is a way to view the code of the ARIMASel add in?
Greetz,
Felix
- Fri Sep 30, 2011 6:46 am
- Forum: Programming
- Topic: Vector assigned to scalar
- Replies: 4
- Views: 6630
Re: Vector assigned to scalar
Dear Gareth and Amber! First of all thank you, for helping me out. As I saw Amber's thread I got the idea to write the code as follows: vector interimvec_{%criterion} = @cimin({%criterion}_knots) +1 scalar min_nod_{%criterion} = interimvec_{%criterion}(1,1) vector interimvec_{%criterion} = @cmin({%c...
- Wed Sep 28, 2011 5:44 am
- Forum: Programming
- Topic: Vector assigned to scalar
- Replies: 4
- Views: 6630
Vector assigned to scalar
Hi Everybody, I do have a problem with the following code: for %criterion aic bic hqc ' Specification of page pageselect {%daily} %spec = "spline_" + %criterion ' vector with Information criterion from different knot specifications vector(!Kmax - 1) {%criterion}_knots for !k=2 to !Kmax {%c...
