gsMomentAparch: Computation of moments for several conditional distribution

Description Usage Arguments Details Value Author(s) References Examples

Description

Computation of the moments expression E( |Z| - γ Z ) ^ δ where \mathcal{D}_{\vartheta}(0,1) is the density of the innovations with zero location and unit scale and \vartheta are additional distributional parameters that describe the skew and the shape of the distribution.

Usage

1
2
gsMomentAparch(cond.dist = c("stableS1", "gev", "gat", "norm", 
"std", "sstd", "skstd", "ged"), shape = 1.5, skew = 0, delta = 1, gm = 0)

Arguments

cond.dist

a character string naming conditional distribution of innovations. The package was created to accept the following distributions: "stableS0", "stableS1", "stableS2", "gev" and "gat". Other common distributions are also possible such as the "norm", "std", "sstd", "skstd", "ged".

shape, skew

The shape and skew parameter for the conditional distribution. For the stable distribution the shape and skew are the index of stability (α) and the asymmetry parameter (β). For the Generalized Asymmetric t distribution there are two shape parameters (ν and d) and one asymmetry parameter called ξ. For the skew Student's t distribution the shape is the degrees of freedom (ν) and ξ is the asymmetry parameter. Finally, for the GEV distribution the shape parameter is called ξ.

delta, gm

The δ and γ parameteres of the ARMA-GARCH/APARCH model.

See the R documentation of function gsFit for more details.

Details

For each conditional distribution, the evaluation of the moment expression E(|Z| - γ Z)^δ is crucial if one is interested in finding a stationary solution. Analytical expressions to compute these moments are available throughout the GARCH literature for many conditional distributions and we have derived an efficient formula for the asymmetric stable case. It is true that we can use numerical integration to compute those moments but there are several drawbacks that represent limitations. The first one is that numerical integration is always slower than using a closed expression to compute those formulas. The second is that this technique fails when the distribution becomes very pick or very concentrated on a small portion of the real line. For example, if we use the R base function integrate to calculate the area total probability on the interval (-∞,∞) for the standard gat distribution with parameters ν = 2, d = 0.05 and ξ = 1 we get 3.690067e-07, which is not true since the total probability must be 1. Therefore, it is very important for us to have the exact expression for all those moments in order to evaluate correctly the stationarity restrictions.

The gsMomentAparch function can be used to compute those expressions for the following distributions: Normal, Student's t, skewed Student's t from Fernandez and Steel (1998), GED, stable in its 1-parameterization and the GAt distribution. Only for the GEV distribution we use numerical integration.

Note: The GEVStableGarch package implements a slighty different version of the Student's skew distribution that is different from the one implemented inside the fGarch package. Therefore, the APARCH moment formula is only valid for the GEVStableGarch implementation (skstd) and not for the fGarch implementation sstd.

Value

Returns the following expression for several conditional distributions E( |Z| - γ Z) ^ δ. If any of the input parameters are outside the parameter space, this function returns .

Author(s)

Thiago do Rego Sousa.

References

Ding, Z., Granger, C., Engle, R.F. (1993). A Long Memory Property of Stock Market Returns and a New Model. Journal of Empirical Finance, 1, 83–106.

Diongue, A.K. (2008). An investigation of Stable-Paretian Asymmetric Power GARCH Model. Journal des Sciences, 8(4), 15–26.

Lambert, P., Laurent, S. (2001). Modelling Financial Time Series Using GARCH-type Models with a Skewed Student Distribution for the Innovations. Institut de Statistique, Universite Catholique de Louvain, Discussion Paper 0125.

Mittnik, S., Paolella, M.S. (2000). Conditional Density and Value-At-Risk Prediction of Asian Currency Exchange Rates. Journal of Forecasting, 19(4), 313–333.

Mittnik, S., Paolella, M.S., Rachev, S.T. (2002). Stationarity of stable power-GARCH processes. Journal of Econometrics 106, 97–107.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
# Computation of the Moment E( |Z| - gamma Z) ^ delta for several distributions

gsMomentAparch(cond.dist = "stableS1", shape = 1.1, skew = 0, delta = 1.01, gm = 0.99999)

gsMomentAparch(cond.dist = "gev", shape = -4, skew = 0, delta = 1.4, gm = 0)

gsMomentAparch(cond.dist = "gat", shape = c(1.9,2.3), skew = 0.5, delta = 0.4, gm = 0)

gsMomentAparch(cond.dist = "norm", shape = c(1.9,2.3), skew =1, delta = 11.4, gm = -0.999)

gsMomentAparch(cond.dist = "std", shape = 2.001, skew = -0.5, delta = 2, gm = -0.99)

gsMomentAparch(cond.dist = "sstd", shape = 2.001, skew = 0.11, delta = 2, gm = -0.99)

gsMomentAparch(cond.dist = "skstd", shape = 5.001, skew = 0.11, delta = 3, gm = -0.5)

gsMomentAparch(cond.dist = "ged", shape = 6, skew = 0.11, delta = 5.11, gm = -0.5)

GEVStableGarch documentation built on May 2, 2019, 5:53 a.m.