Time-Series

GARCH model is better for index than stock

  • May 16, 2016

We have used a standard GARCH(1,1) model with t distributed innovations for daily data of S&P index and JPM stock.

Question: is there any financial or statistical reason why the GARCH model would be more suitable for an index than for a stock? My initial guess was that returns “behave better” with indicies than stocks (for example JPM vary around +20% and -20% whereas S&P vary around +10% -10%) and since the return data is the input into the GARCH model this would make

Details

To forecast the volatility we used a standard GARCH(1,1) model with t distributed innovations. Via the formula $ VaR_t = \hat \mu_t + t \hat \sigma_t $ the volatility forecast was used in the calculation of the forecasted VaR.

We had two different datasets: returns on S&P index prices and returns on JPM stock prices. We used the same GARCH model for both return series, and labelled them $ m.index $ and $ m.stock $ respectively.

The VaR forecasts were backtested using standard backtesting procedures, the most important one is Christoffersen’s test of independece (also called a cc test). The results from applying this test to our VaR forecasts showed that $ m.index $ was better than $ m.stock $ with respect to VaR backtesting. It was better because the p-value from Christoffersen’s test of independece was $ 0.603 $ for $ m.stock $ but only $ 0.095 $ for $ m.stock $ suggesting that VaR violations were closer to being independent and correct number of violations when using index returns rather than stock returns.

The reason is earnings and other idiosyncratic corporate actions like takeovers, major product releases, etc.

There are three terms in garch(1,1), the constant, term proportional to previous day’s volatility, and a term proportional to “stock noise”. Earnings jump is much larger than previous “regular” volatility, and also much larger than “regular” noise. When a stock jumps, it is not the type of return that is explained by the model, so the fit is worse.

Indexes, by averaging component stocks returns, smoothes out idiosyncratic jumps. Note that you can add terms to a garch model to model earnings, so you can get a better fit, possible comparable to those of an index.

Jacob, you conclude that “The main finding is that VaR is more suited for our index portfolio GSPC than for our stock JPM.” This conclusion is not surprising. However I think that is not the VaR in itself “more suited,” but the underlying GARCH(1,1) model. You introduce the standardized error in section 4.6. That is the right way. I did not study your pdf in depth, but I’m almost sure that the quality of fit of GARCH(1,1) model for index are, in some sense, better than than those of the same model on a single stock. Here is the problem: the result of Kupiec and or Christoffersen’s test are only the transposition of the same thing. The problem for single stock is not the VaR in itself, but finding the “good model,” as ARMA(?,?)-GARCH(?,?), for it. Probably if you fit the same GARCH(1,1) model for a single stock much smaller and less liquid that JPM the resulting VaR will be worse than JPM’s.

As liquidity I mean the usual sense in stock market as explained here https://en.wikipedia.org/wiki/Market_liquidity#Stock_market if the stock A in less liquid than stock B, probably is easier to find a good model for A than for B. That’s all.

引用自:https://quant.stackexchange.com/questions/26007