In the MATLAB default settings for GARCH estimation they say "presample conditional variance is the sample average of the squared disturbances of the offset-adjusted response data y". Am I right in interpreting this as the sample variance? (sorry my English is not so sophisticated for me to get that sentence)
(second not totally unrelated question) Let's say that I'm using 2000 daily log returns to estimate a GARCH(1,1), and obtain $\omega=0.0000026$, $\alpha_1=0.1381$ and $\beta_1=0.8587$. Therefore the unconditional variance is $\frac{w}{1-\alpha_1 - \beta_1}=0.0008$. Should this estimate theoretically be the same as the sample variance $\frac{1}{n}\sum_{i=1}^{2000}(r_t-\mu_t)^2$, or are unconditional variance and sample variance not the same thing?
Answer
In this context, unconditional variance refers to the stationary variance level predicted by your GARCH model. This quantity need not coincide with the sample variance of the data on which the latter model has been calibrated.
That being said, in an effort to reduce the complexity of the GARCH parameters' estimation process (nasty non-linear optimisation problem), it is frequent amongst practitioners to impose that the unconditional variance (model-bound) matches sample variance (data-bound) perfectly. This technique, which effectively reduces the GARCH parameter space (i.e. constrains the intercept to become a function of the other GARCH parameters and sample variance) is known as variance targeting.
Although I do not know the particulars of the MATLAB function you are using, I guess "presample variance" simply refers to the first value of conditional variance $h_1$ (hence the adjective pre-sample). The knowledge of $h_1$ indeed allows all future conditional variances $(h_2,\dots,h_N)$ to be inferred since you already know the realised series of $(r_1, \dots, r_N) $ where $N=2000$ and $r_N$ the most recent past log-return in your case. Another possibility would be to consider $h_1$ as yet another parameter of your GARCH model and to determine it through maximum likelihood estimation.
No comments:
Post a Comment