Questions tagged [garch]

A model for time series in which the conditional variance is time-varying and autocorrelated.

GARCH, or Generalized AutoRegressive Conditional Heteroskedasticity is a generalization of the ARCH model. It is used to model the time-dependent conditional variance (volatility) of financial time series. A GARCH model represents the current volatility in terms of both past volatility and past errors. E.g. in the standard GARCH($q,p$) model we have $$ \sigma_t^2 = \omega + \sum_{i=1}^q\alpha_i\varepsilon_{t-i}^2 + \sum_{j=1}^p\beta_j\sigma_{t-j}^2 $$ where $\varepsilon_t$ is the error of the conditional mean model and $\sigma_t^2$ is its conditional variance.

A GARCH model defines the conditional variance but not the conditional mean of a time series. A GARCH-type conditional variance specification can be combined with an arbitrary specification for the conditional mean, yielding e.g. an ARIMA-GARCH model.

The conditional variance equation in a GARCH model is deterministic (the variance is completely determined by lags of own values and of the error term), in contrast to Stochastic Volatility (SV) models. As such, the conditional variance itself does not follow an ARMA model (a frequent misconception), but the squared error term does.

GARCH models are mostly used for forecasting return distributions and variances and are instrumental in estimating Value at Risk, Expected Shortfall and other financial risk measures.

924 questions
4
votes
1 answer

GARCH out-of-sample testing required in scenario analysis context?

Wherever I read about performance checks of GARCH models people stress the need for out-of-sample testing (e.g. out-of-sample forecast evaluation, out-of-sample refitting and checking for the significance and value of the parameters etc.). Now I…
Joz
  • 1,072
4
votes
1 answer

GARCH vs GJR-GARCH

Both the GJR and the GARCH-specifications are used quite often in the finance literature. The GARCH is defined as: $$ \sigma^2_t = \omega + \alpha\varepsilon^2_{t-1} + \beta\sigma^2_{t-1}$$ and the GJR-GARCH reads as follows $$ \sigma^2_t = \omega +…
Eren
  • 109
3
votes
1 answer

Negative GARCH coefficients

Generally, for a strong GARCH(p,q) process it is assumed that all coefficients $\alpha_1, ..., \alpha_q, \beta_1, ..., \beta_p$ are non-negative. However, I estimated a regular GARCH(p,q) model for which the data exhibited strong volatility…
Taufi
  • 599
3
votes
1 answer

Question regarding the interpretation of the GARCH coefficients, is it possible to take the logarithms?

The GARCH model I am estimating is $y_t = \alpha_0 + \epsilon_t$ $\sigma_t^2 = c_0 + c_1 \epsilon^2_{t-1} + \beta \sigma_{t-1}^2 + \delta_0 I + \delta_1 I(-1) + \delta_2I(-2) $ with the output of the estimation…
Rainymood
  • 171
3
votes
2 answers

The use of GARCH

I have a conceptual question that I haven't managed to grasp yet and is most likely a econometrics 101 question by here it goes: If we estimate a GARCH model for a time series, how do we then use this in my model for the returns? For example; I have…
2
votes
1 answer

Does $\delta$ parameter in GARCH-M stay unchanged when the process is scaled?

Assume we have a GARCH-M(1,1) process as follows: $y_t = \beta y_{t-1} + \delta h_t + \epsilon_t, \quad \epsilon_t \sim N(0, h_t) $ $h_t = a_0 + a_1 \epsilon^2_{t-1} + b_1 h_{t-1}.$ If we scale $y_t$ to create $x_t = 100\times y_t $, I recently…
1
vote
1 answer

What is the optimal sample size for fitting a GARCH model?

I tried fitting an ARMA(1,1)/GARCH(1,1) model to my data consisting of around 5000 data points but I got significant results in Ljung Box test on standardized residuals and squared residuals. However when I used only the last 3000 data points the…
ankc
  • 959
1
vote
1 answer

GARCH CCC/DCC : empirical correlation coefficient different than the one in input CCC matrix

I implement a GARCH-DCC model in Python, for number of asset = 2. My implementation is the following : def garch_dcc_specification( self, eps_last: Optional[np.ndarray], cond_var_last: Optional[np.ndarray], q_last_t:…
1
vote
0 answers

Comparing volatility from different GARCH models with different distribution assumptions

As my master thesis aims to compare the volatility of 3 crypto-currencies, I want to find the best fitting garch model with the best fitting distribution assumption for each of my 3 crypto-currencies. But I wonder if different garch models with…
1
vote
0 answers

How can someone report an r2 for a GARCH(1,1) model?

On page 306, Tambakis and van Royen report an adjusted r2 for a GARCH(1,1) model. How is this possible? What are they reporting? You can find the paper here
1
vote
1 answer

Mean equation changes considerably after adding GARCH conditional variance

I am checking different GARCH models for my financial time series. What I have noticed is that regression coefficients in mean equation change considerably when different GARCH models are applied. Is it normal? I am not an expert, but my intuition…
1
vote
0 answers

GARCH - the magnitude of news impact on volatility

Suppose that I have an EGARCH(1,1) model, an APARCH(1,1) model and a GJR-GARCH(1,1) model all with GED errors. Are the following three measures for assessing the magnitude of news impact on volatility correct for all three models? a) Intensity of…
msmna93
  • 111
1
vote
1 answer

How to correct for week pattern in GARCH?

While studying the squared residuals of a financial asset with the ACF, I noticed that there appears to be a pattern at the beginning of the ACF, starting at lag 4. I was wondering whether this might be some kind of ''day in the week'' effect and…
Taufi
  • 599
0
votes
1 answer

Can you help me interpret GARCH results?

Can you please explain what the next GARCH results mean? where in these results can i know how well does the model forecast?
0
votes
0 answers

Can normal GARCH innovations outperform student-t GARCH innovations?

I am trying to model gold and oil volatility but I am getting quite confusing results. I am using the rugarch package and using the standard GARCH and EGARCH to model volatility. My results seems to indicate that the standard GARCH model with…
ankc
  • 959
1
2