We take a closer look at the properties of the GHST distribution which uniquely, in the family of Generalized Hyperbolic distributions, can accomodate one heavy and one semi-heavy tail.
The Generalized Hyperbolic Skew Student distribution, described in (Aas and Haff 2006), is a sub-family of the Generalized Hyperbolic distribution of (Barndorff-Nielsen 1977). It has the unique property of allowing the 2 tails to exhibit different behaviors, namely one polynomial and one exponential. This is important in some applications such as financial time series where negative shocks exhibit heavy tails, whereas positive shocks have a more Gaussian type tail.
Tail Behavior
This distribution is a limiting case of the Generalized Hyperbolic when \(\alpha \to \left| \beta \right|\) and \(\lambda=-\nu/2\), where \(\nu\) is the shape parameter of the Student distribution. The domain of variation of the parameters is \(\beta \in \mathbb{R}\) and \(\nu>0\), but for the variance to be finite \(\nu>4\), while for the existence of skewness and kurtosis, \(\nu>6\) and \(\nu>8\) respectively.
The skew and shape parameters of the standardized parameterization in the tsdistributions have bounds \(\in\{-\infty, +\infty\}\) and \(\in R^+\) respectively. The further the skew parameter is from zero and the smaller the shape parameter is, the larger the skewness. The plot below illustrates an example of the tail behavior that can be generated from this distribution.
With a skew parameter of -30 common across both, the orange distribution has a shape parameter of 30 with skewness and excess kurtosis of (-0.92, 1.9) while the blue distribution has a shape parameter of 10 with skewness and excess kurtosis of (-3.37, 40.15). For the blue distribution (with the lower shape parameter) the lower heavy and upper semi-heavy tails are quite obvious and hopefully illustrate the value of this distributions for a number of possible applications.
Parameter Distribution and Consistency
The question of how much data (size) is needed to confidently estimate the true parameter values is one we address here through a small simulation exercise.
Let’s assume that that the true parameters are given \(\mu = 0.1\), \(\sigma = 0.5\), \(\text{skew} = -5\) and \(\text{shape} = 12\). We simulate 2000 draws from sizes of 100, 200, 400, 800, 1200, 1600, 3200 and estimate their parameters. In order to ensure the existence of the higher moments, we also set a lower bound for the shape parameter at 9 and use parallel computation to speed things up.
Another interesting plot is that of Kurtosis1 against Skewness.
Code
plot(pars$kurtosis +3, pars$skewness, ylab ="Skewness", xlab ="Kurtosis")abline(v = exact_kurtosis +3, h = exact_skewness, col =2, lty =2)points(exact_kurtosis +3, exact_skewness, pch =2, lwd =2, col =2)
Final Thoughts
The GHST distribution has some interesting properties, but we also found that a considerable amount of data is needed to provide confident estimates of the higher moments, and we suspect this gets worse the lower the shape parameter is. This could also be due to the fact that our estimation code makes use of the modified Bessel function of the second kind for which the derivatives are not yet implemented. An implementation exists in Julia based on the paper by (Geoga et al. 2022) and it may be worthwhile porting this to TMB in the future.
Aas, Kjersti, and Ingrid Hobæk Haff. 2006. “The Generalized Hyperbolic Skew Student’st-Distribution.”Journal of Financial Econometrics 4 (2): 275–309.
Barndorff-Nielsen, Ole. 1977. “Exponentially Decreasing Distributions for the Logarithm of Particle Size.”Proceedings of the Royal Society of London. A. Mathematical and Physical Sciences 353 (1674): 401–19.
Geoga, Christopher J., Oana Marin, Michel Schanen, and Michael L. Stein. 2022. “Fitting Matérn Smoothness Parameters Using Automatic Differentiation.”https://arxiv.org/abs/2201.00090.
Footnotes
In this plot we show the actual Kurtosis, not the excess value, in order to be consistent with the authorized domain function and a previous post on this subject↩︎
Citation
BibTeX citation:
@online{galanos2022,
author = {Galanos, Alexios},
title = {Tails of the {GHST}},
date = {2022-05-12},
url = {https://www.nopredict.com/blog/posts/2022-05-12-tails-of-the-ghst/},
langid = {en}
}