This book is in Open Review. We want your feedback to make the book better for you and other students. You may annotate some text by selecting it with the cursor and then click "Annotate" in the pop-up menu. You can also see the annotations of others: click the arrow in the upper right hand corner of the page

16 Additional Topics in Time Series Regression

This chapter discusses the following advanced topics in time series regression and demonstrates how core techniques can be applied using R:

  • Vector autoregressions (VARs). We focus on using VARs for forecasting. Another branch of the literature is concerned with so-called Structural VARs which are, however, beyond the scope of this chapter.
  • Multiperiod forecasts. This includes a discussion of iterated and direct (multivariate) forecasts.
  • The DF-GLS test, a modification of the ADF test that has more power than the latter when the series has deterministic components and is close to being nonstationarity.
  • Cointegration analysis with an application to short- and long-term interest rates. We demonstrate how to estimate a vector error correction model.
  • Autoregressive conditional heteroskedasticity (ARCH) models. We show how a simple generalized ARCH (GARCH) model can be helpful in quantifying the risk associated with investing in the stock market in terms of estimation and forecasting of the volatility of asset returns.

To reproduce the code examples, install the R packages listed below and make sure that the subsequent code chunk executes without any errors.

library(AER)
library(readxl)
library(dynlm)
library(vars)
library(quantmod)
library(scales)
library(fGarch)

References

Kleiber, Christian, and Achim Zeileis. 2008. Applied Econometrics with R. New York: Springer-Verlag. https://CRAN.R-project.org/package=AER.
Pfaff, Bernhard. 2023. vars: VAR Modelling (version 1.5-9). https://www.pfaffikus.de.
Ryan, Jeffrey A., and Joshua M. Ulrich. 2023. quantmod: Quantitative Financial Modelling Framework (version 0.4.25). http://www.quantmod.com.
Wickham, Hadley, and Jennifer Bryan. 2023. readxl: Read Excel Files (version 1.4.3). https://readxl.tidyverse.org.
Wickham, Hadley, and Dana Seidel. 2022. scales: Scale Functions for Visualization (version 1.2.1). https://scales.r-lib.org.
Wuertz, Diethelm, Yohan Chalabi, Tobias Setz, Martin Maechler, and Georgi N. Boshnakov. 2023. fGarch: Rmetrics - Autoregressive Conditional Heteroskedastic Modelling (version 4031.90). https://www.rmetrics.org.
Zeileis, Achim. 2019. dynlm: Dynamic Linear Regression. https://CRAN.R-project.org/package=dynlm.