Skip to content
Prev 1929 / 15274 Next

Non-gaussian (L-stable) Garch innovations

Hi, Patrick, et al.: 


IS NORMAL STABLE? 

      I'm confused:  According to Wikipedia, a normal distribution is a 
stable distribution with parameters alpha = 2 and beta = 0 
(http://en.wikipedia.org/wiki/L%C3%A9vy_skew_alpha-stable_distribution).  
However, I get large discrepancies between 'pstable{fBasics}' and pnorm: 

 > library(fBasics)
 > x <- seq(-2, 2)
 > pstable(x, 2, 0)-pnorm(x
+ )
[1]  0.05589947  0.08109481  0.00000000 -0.08109481 -0.05589947
attr(,"control")
   dist alpha beta gamma delta pm
 stable     2    0     1     0  0

      What am I doing wrong? 


ASYMPTOTICS 

      What about the maximum likelihood estimates of garch parameters?  
Don't they follow the standard asymptotic normal distribution with mean 
and variance of the approximating normal distribution = the true but 
unknown parameters and the inverse of the information  matrix (Fisher or 
observed, take your pick)? 

      My favorite example for this is logistic regression, where no 
moments exist for the MLEs, because the MLEs are Infinite for some 
possible outcomes.  However, the standard normal approximation still 
works great.  Moreover, the probability of observing Infinite MLEs at a 
rate proportional to 2^(-N), if my memory is correct. 


DISTRIBUTION OF RESIDUALS

      What can be said about the distribution of the whitened 
residuals?  If N gets large faster than the number of parameters 
estimated, won't the distribution of the whitened residuals converge to 
the actual parent distribution, more or less whatever it is? 

      Best Wishes,
      Spencer
Patrick Burns wrote: