Usage
tegarch(y, asym = TRUE, skew = TRUE, components = 1, initial.values = NULL, lower = NULL, upper = NULL, hessian = TRUE, lambda.initial = NULL, c.code = TRUE, logl.penalty = NULL, aux = NULL, ...)
Arguments
y
numeric vector, typically a financial return series.
asym
logical. TRUE (default) includes leverage or volatility asymmetry in the log-scale specification
skew
logical. TRUE (default) enables and estimates the skewness in conditional density (epsilon). The skewness method is that of Fernandez and Steel (1998)
components
Numeric value, either 1 (default) or 2. The former estimates a 1-component model, the latter a 2-component model
initial.values
NULL (default) or a vector with the initial values. If NULL, then the values are automatically chosen according to model (with or without skewness, 1 or 2 components, etc.)
lower
NULL (default) or a vector with the lower bounds of the parameter space. If NULL, then the values are automatically chosen
upper
NULL (default) or a vector with the upper bounds of the parameter space. If NULL, then the values are automatically chosen
hessian
logical. If TRUE (default) then the Hessian is computed numerically via the optimHess function. Setting hessian=FALSE speeds up estimation, which might be particularly useful in simulation. However, it also slows down the extraction of the variance-covariance matrix by means of the vcov method.
lambda.initial
NULL (default) or a vector with the initial value(s) of the recursion for lambda and lambdadagger. If NULL then the values are chosen automatically
c.code
logical. TRUE (default) is faster since it makes use of compiled C-code
logl.penalty
NULL (default) or a numeric value. If NULL then the log-likelihood value associated with the initial values is used. Sometimes estimation can result in NA and/or +/-Inf values, which are fatal for simulations. The value logl.penalty is the value returned by the log-likelihood function in the presence of NA or +/-Inf values
aux
NULL (default) or a list, se code. Useful for simulations (speeds them up)
...
further arguments passed to the nlminb function