MultiGASSpec {GAS} | R Documentation |
Multivariate GAS specification
Description
Specify the conditional distribution, scaling mechanism and time-varying parameters for multivariate GAS models.
Usage
MultiGASSpec(Dist = "mvnorm", ScalingType = "Identity",
GASPar = list(location = FALSE, scale = TRUE,
correlation = FALSE, shape = FALSE),
ScalarParameters = TRUE)
Arguments
Dist |
|
.
ScalingType |
|
GASPar |
|
ScalarParameters |
|
Details
All the information regarding the supported multivariate conditional distributions can be investigated using the DistInfo function.
Value
An object of the class mGASSpec
Author(s)
Leopoldo Catania
References
Creal D, Koopman SJ, Lucas A (2011).
"A Dynamic Multivariate Heavy-Tailed Model for Time-Varying Volatilities and Correlations."
Journal of Business & Economic Statistics, 29(4), 552-563.
doi: 10.1198/jbes.2011.10070.
Creal D, Koopman SJ, Lucas A (2013).
"Generalized Autoregressive Score Models with Applications."
Journal of Applied Econometrics, 28(5), 777-795.
doi: 10.1002/jae.1279.
Harvey AC (2013). Dynamic Models for Volatility and Heavy Tails: With Applications to Financial and Economic Time Series. Cambridge University Press.
Examples
# Specify a GAS model with multivariate Student-t
# conditional distribution and time-varying locations,
# scales and correlations parameters but constant shape parameter.
library("GAS")
GASSpec = MultiGASSpec(Dist = "mvt", ScalingType = "Identity",
GASPar = list(location = TRUE, scale = TRUE,
correlation = TRUE, shape = FALSE))
GASSpec