simGARCH | R Documentation |
Simulates a GARCH process which is an example of a weak white noise.
simGARCH(n, c, A, B = NULL, ninit = 100)
n |
Number of observations. |
c |
Positive number. |
A |
Vector of ARCH coefficients >=0. |
B |
Vector of GARCH coefficients >=0. If |
ninit |
Length of 'burn-in' period. |
Vector of size n
containing a nonlinear sequence ε_t such as
ε_{t} = H_{t}^{1 / 2} η_{t}
where
H_{t} = c + a_{1}ε_{t - 1}^ {2}+...+a_{q}ε_{t - q} ^{2} + b_{1}H_{t-1}+...+ b_{p}H_{t-p}
Francq C. and Zakoïan J.M., 2010, GARCH models: structure, statistical inference and financial applications
wnRT
, wnPT
, wnPT_SQ
simGARCH(100, c = 1, A = 0.25) simGARCH(100, c = 1, A = 0.1, B = 0.88)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.