GARCH Toolbox | ![]() ![]() |
Univariate GARCH process simulation
Syntax
Arguments
Spec |
GARCH specification structure for the conditional mean and variance models. You create Spec by calling the function garchset or the estimation function garchfit . The conditional mean can be of general ARMAX form and conditional variance of general GARCH form. |
NumSamples |
(optional) Positive integer indicating the number of samples garchsim generates for each path of the Innovations , Sigma , and Series outputs. If NumSamples = [] or is not specified, the default is 100 . |
NumPaths |
(optional) Positive integer indicating the number of sample paths (realizations) |
Seed |
(optional) Scalar random number generator seed. If |
X |
(optional) Time series regression matrix of observed explanatory data. Typically, X is a matrix of asset returns (e.g., the return series of an equity index), and represents the past history of the explanatory data. Each column of X is an individual time series used as an explanatory variable in the regression component of the conditional mean. In each column, the first row contains the oldest observation and the last row the most recent. If |
Description
simulates sample paths for return series, innovations, and conditional standard deviation processes, using specifications for the conditional mean and variance of a univariate time series as input. [Innovations, Sigma, Series] = garchsim(Spec, NumSamples, NumPaths,
Seed, X)
garchsim
samples each of NumPaths
sample paths at NumSamples
observations.
See Also
garchfit
, garchget
, garchpred
, garchset
References
Bollerslev, T. (1986), "Generalized Autoregressive Conditional Heteroskedasticity," Journal of Econometrics, Vol. 31, pp. 307-327.
Box, G.E.P., G.M. Jenkins, G.C. Reinsel, Time Series Analysis: Forecasting and Control, third edition, Prentice Hall, 1994.
Engle, Robert (1982), "Autoregressive Conditional Heteroskedasticity with Estimates of the Variance of United Kingdom Inflation," Econometrica, Vol. 50, pp. 987-1007.
Hamilton, J.D., Time Series Analysis, Princeton University Press, 1994.
![]() | garchset | lagmatrix | ![]() |