View source: R/mainFunctions.R
bayesDccGarch | R Documentation |
Performs a Markov Chain for all parameters of the DCC-GARCH(1,1) Model.
bayesDccGarch(mY, nSim = 10000, tail_ini = 8, omega_ini=0.1*diag(var(mY)),
alpha_ini=rep(0.05, ncol(mY)), beta_ini=rep(0.85, ncol(mY)),
a_ini = 0.04, b_ini = 0.8, gamma_ini = rep(1, ncol(mY)),
errorDist = 2, control = list())
increaseSim(x, nSim=10000)
## S3 method for class 'bayesDccGarch'
update(object, ..., mY_new)
## S3 method for class 'bayesDccGarch'
window(x, start = NULL, end = NULL, thin = NULL, ...)
mY |
a matrix of the data ( |
nSim |
length of Markov chain. Default: |
tail_ini |
initial value of |
omega_ini |
a numeric vector ( |
alpha_ini |
a numeric vector ( |
beta_ini |
a numeric vector ( |
a_ini |
a numeric value of the initial values of |
b_ini |
a numeric value of the initial values of |
gamma_ini |
a numeric vector ( |
errorDist |
a probability distribution for errors. Use |
control |
list of control arguments (See *Details*). |
x, object |
an object of |
mY_new |
a matrix of new data ( |
start |
the first iteration of interest from Markov chain. |
end |
the last iteration of interest from Markov chain. |
thin |
the required interval between successive samples. |
... |
additional arguments for S3 generic |
The bayesDccGarch()
function performs a Markov Chain for all parameters of the model DCC-GARCH(1,1) (or GARCH(1,1) in the univariate case).
There are three options of probability distributions for the error
component. These are the standardized skew versions of normal, t-student and ged distributions. See Fioruci et al (2014a) and Fioruci et al (2014b) for any detail.
The control
argument can be used for define the prior hyper-parameters and the simulation algorithm parameters.
It is a list that can supply any of the following components:
the value of hyper-parameter \mu_\nu
if errorDist=2
or the hyper-parameter \mu_\delta
if errorDist=3
. Default: 8
a vector with the hyper-parameters \mu_{\gamma_i}
. Default: rep(0,ncol(mY)
a vector with the hyper-parameters \mu_{\omega_i}
. Default: rep(0,ncol(mY)
a vector with the hyper-parameters \mu_{\alpha_i}
. Default: rep(0,ncol(mY)
a vector with the hyper-parameters \mu_{\beta_i}
. Default: rep(0,ncol(mY)
the value of the hyper-parameter \mu_a
. Default: 0
the value of the hyper-parameter \mu_b
. Default: 0
the value of hyper-parameter \sigma_\nu
if errorDist=2
or the hyper-parameter \sigma_\delta
if errorDist=3
. Default: 10
a vector with the hyper-parameters \sigma_{\gamma_i}
. Default: rep(1.25,ncol(mY)
a vector with the hyper-parameters \sigma_{\omega_i}
. Default: rep(10,ncol(mY)
a vector with the hyper-parameters \sigma_{\alpha_i}
. Default: rep(10,ncol(mY)
a vector with the hyper-parameters \sigma_{\beta_i}
. Default: rep(10,ncol(mY)
the value of the hyper-parameter \sigma_a
. Default: 10
the value of the hyper-parameter \sigma_b
. Default: 10
the random walk Metropolis-Hasting algorithm update. Use 1
for update all parameters as one block,
use 2
for update one parameter for each time and use 3
for an automatic choice.
number of simulation for pilot sample if control$simAlg=3
. Default:1000
the cholesky decomposition matrix of the covariance matrix for simulation by one-block Metropolis-Hasting. It must to be passed if control$simAlg=1
.
a vector with the standard deviations for simulation by one-dimensional Metropolis-Hasting. It must to be passed if control$simAlg=2
.
a logical variable for if the function should report the number of interactions in each 100 interactions or not. Default: TRUE
The function increaseSim()
can be used to increase the length of Markov chain simulation.
The function window()
can be used to filter the Markov chain simulation. In this case, all statistics are recomputed.
An object of bayesDccGarch
class, which contains a list with elements:
$control |
a list with the used |
$MC |
an objetic of |
$H |
a matrix with the Bayesian estimates of volatilities and co-volatilities. |
$R |
a matrix with the estimates of the dynamic coditional correlation. |
$H_n1 |
Bayesian prediction of volatilities and co-volatilities for y_n+1. |
$R_n1 |
Bayesian prediction of coditional correlation for y_n+1. |
$IC |
the Bayesian estimate of Akaike Information Criterion, Bayesian Information Criterion and Deviance Information Criterion. |
$elapsedTime |
an object of class |
Jose Augusto Fiorucci, Ricardo Sandes Ehlers and Francisco Louzada
Fioruci, J.A., Ehlers, R.S., Andrade Filho, M.G. Bayesian multivariate GARCH models with dynamic correlations and asymmetric error distributions, Journal of Applied Statistics, 41(2), 320–331, 2014a. <doi:10.1080/02664763.2013.839635>
Fioruci, J.A., Ehlers, R.S., Louzada, F. BayesDccGarch - An Implementation of Multivariate GARCH DCC Models, ArXiv e-prints, 2014b. https://ui.adsabs.harvard.edu/abs/2014arXiv1412.2967F/abstract.
bayesDccGarch-package
, logLikDccGarch
, plot
, plotVol
data(DaxCacNik)
### Bayes DCC-GARCH(1,1) ###
mY = head(DaxCacNik, 1500)
out1 = bayesDccGarch(mY)
# more 50000 simulations
out2 = increaseSim(out1, 50000)
# remove first 10000 simulations and take at intervals of 20
out3 = window(out2, start=10000, thin = 20)
summary(out3)
# Plotting volatilities
plot(out3)
# Plotting Markov Chain
plot(out3$MC)
# Forecast volatility
H_pred = predict(out3, n_ahead=200)$H
plot.ts(rbind(out3$H, H_pred), main="volatility: historical and forecast")
# New data
out4 = update(out3, mY_new=DaxCacNik[1501:1628,])
plot(out4)
### Bayes univariate GARCH(1,1) ###
Dax = DaxCacNik[,1]
out = bayesDccGarch(Dax)
summary(out)
plot(out)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.