¿Stability tests (or constancy tests) on GARCH?

Discussions of ARCH, GARCH, and related models
rosa1rio
Posts: 1
Joined: Fri Jun 05, 2009 3:46 pm

¿Stability tests (or constancy tests) on GARCH?

Unread post by rosa1rio »

I was wondering if any of you know or have a RATS procedure, program or routine
to carry out structural stability tests (or constancy tests) on GARCH
models (for example, as that one proposed by Lundberg and Terasvirta, 2002)?
TomDoan
Posts: 7814
Joined: Wed Nov 01, 2006 4:36 pm

Re: ¿Stability tests (or constancy tests) on GARCH?

Unread post by TomDoan »

You can do a Nyblom fluctuations test using the procedure @FLUX. You save the derivatives using the DERIVES option on GARCH, then apply the FLUX procedure to them.

Code: Select all

open data garch.asc
data(format=free,org=columns) 1 1867 bp cd dm jy sf
*
set dlogdm = 100*log(dm/dm{1})
*
* Estimates ARCH(6) model. Tests for stability.
*
garch(p=0,q=6,hseries=hh06,derives=dd) / dlogdm
@flux
# dd
Post Reply