Questions tagged [ardl]

AutoRegressive Distributed Lag is a time series model where the dependent variable is a function of its own lags, other variables, and their lags. ARDL is convenient for modelling I(0) and I(1) variables together and for cointegration testing.

ARDL stands for "Autoregressive-Distributed Lag". In its basic form, an ARDL regression model looks like this: $$ y_t = \beta_0 + \beta_1 y_{t-1} + \dots + \beta_p y_{t-p} + \alpha_0 x_t + \alpha_1 x_{t-1} + \dots + \alpha_q x_{t-q} + \varepsilon_t $$ where $\varepsilon_t$ is a random "disturbance" term.

The model is "autoregressive", in the sense that $y_t$ is "explained (in part) by lagged values of itself. It also has a "distributed lag" component, in the form of successive lags of the $x$ explanatory variable. Sometimes, the current value of $x_t$ itself is excluded from the distributed lag part of the model's structure.

ARDL models have come to play an important role recently in the modelling of non-stationary time-series data. In particular, they are used to implement the so-called "Bounds Tests" (Pesaran & Shin, 1999; and Pesaran et al., 2001), to see if long-run relationships are present when we have a group of time-series, some of which may be stationary, while others are not.

Based on Dave Giles' blog posts "ARDL Models - Part I" and "ARDL Models - Part II - Bounds Tests".

Pesaran, M. H. and Y. Shin, 1999. An autoregressive distributed lag modelling approach to cointegration analysis. Chapter 11 in S. Strom (ed.), Econometrics and Economic Theory in the 20th Century: The Ragnar Frisch Centennial Symposium. Cambridge University Press, Cambridge.

Pesaran, M. H., Shin, Y. and Smith, R. J., 2001. Bounds testing approaches to the analysis of level relationships. Journal of Applied Econometrics, 16, 289–326.

79 questions
9
votes
2 answers

Using non-stationary time series data in OLS regression

I am using 1983-2008 annual data to test if both Gini coefficients and gross national saving in China and the US can affect the US current account balance. The data seem to be non-stationary, but I am a beginner and only know the basic multiple…
Bruce
  • 93
  • 1
  • 1
  • 4
5
votes
1 answer

Delta method and correlated variables

I have been reading about the delta method in regards to auto regressive distributed lag models. This is very new to me, so excuse any beginner mistakes. The problem is as follows: We have a model for gasoline consumption. $g$ is the per capita…
Ondrej
  • 547
  • 1
  • 5
  • 11
5
votes
2 answers

Autoregressive distributed lag model

I have one dependent variable (water consumption) and one independent variable (rainfall). The water consumption variable is non-stationary, so I differenced it to make it stationary. Meanwhile, rainfall is already stationary in nature, so I do not…
4
votes
1 answer

Which test for lagged effect of one time series on another?

I have a data set with three variables: year (21 consecutive years) and two time series which are count data (count1 and count2). I want to know whether count2 correlates with some time delay lag with count1. Both time series follow a positive (and…
4
votes
1 answer

Difference between Distributed Lags and VAR Models

What would be the difference of estimating a variable inside and outside a VAR model? Namely, if I know the relevant explanatory variables to model a certain variable in a time series framework, what's wrong with estimating a distributed lag instead…
Lucas Farias
  • 1,232
  • 1
  • 8
  • 22
4
votes
0 answers

Analysis of Multiple Time Series Data with Exogenous Shocks

Real Life ProblemThis one is a tough one and some crowd sourcing seems like a good way to get some feedback. I am trying to determine the effect of Non-Farm Payroll surprises on a subsector of the economy. Furthermore, I want to forecast the effect…
3
votes
2 answers

How to extract long run and short run coefficients from ARDL (UECM) estimates?

I have estimated ARDL(UECM) in eviews but I dont know how to specify or extract the long run an short run estimates/coefficienst? what is the standard procedure to do so?
Ramu Kaka
  • 31
  • 1
  • 3
3
votes
2 answers

How to deal with a mix of I(1) and I(0) variables?

It seems that choosing the appropriate model for a mix of I(1) and I(0) variables is an hot topic on Stack Exchange but I was not able to find the solution I am looking for : Considering a TS model with an I(1) dependent variable (y) and an I(0)…
3
votes
1 answer

The relationship between autoregressive model and distributed-lag model

The autoregressive models (koyck model, adaptive expectation model, potential adjustment model) I have learned so far are all derived from distributed lag models. And intuitively it makes sense since how could an outcome variable effect itself? the…
Yuan
  • 473
  • 2
  • 6
3
votes
1 answer

VAR/VECM/ARDL optimal lag selection

Question 1: Is it necessary to consider AIC and the BIC criteria when selecting the lag for a VAR, VECM or ARDL model OR can I use something else? Example: Can I pick 12 lags because the model simply produce great results when I do or do I have to…
3
votes
1 answer

Vector autoregression for mix of stationary and nonstationary variables

I am currently investigating the impact of certain indicators such as GDP and inflation on the stock market. However some of my variables are non-stationary and some stationary in levels. All variables are stationary in first differences. My…
Parash Dejmar
  • 415
  • 7
  • 18
3
votes
2 answers

Time series with autoregressive distributed lags: Forecasting for future

I have daily data from last 2 years. I want to do ARIMAX and the regressor component being autoregressive distributed lag of the same variable. Since it has impact, along with dummy variables to account for seasonality in the xreg paratemer in…
StatguyUser
  • 874
  • 3
  • 9
  • 27
3
votes
1 answer

How do AR,ARMA,ARDL and other time series models correct for omitted variable bias

I have come across numerous papers that use an Auto Regressive Distributed Lag (ARDL) model of the following form: $$ \Delta y_{t}=\alpha_{0}+\beta_1\Delta y_{t-1}+\beta_2\Delta x_{t-i}+\gamma_{1}y_{t-1}+\gamma_{2}x_{t-1} $$ Where $y_{t}$ is one…
SidtheKid
  • 103
  • 1
  • 8
3
votes
3 answers

ARDL/Error Correction Model: long vs. short run, restricted vs. unrestricted

I have a few questions about unrestricted error correction models. The UECM for a model where $Y$ is the dependent variable and $x$ is the sole independent variable is given by $$ \Delta Y_{t}=\alpha_{0}+\sum_{n=1}^{N}\beta_1\Delta…
2
votes
0 answers

Do I need to First-Difference Before Using ARDL?

I have a four variables, two of which are $I(0)$ and the other two are $I(1)$. I've decided to use ARDL (Auto regressive distributed lag) model because I have a mix of $I(0)$ and $I(1)$ variables. Do I still need to take the first difference of…
Andrew
  • 55
  • 3
1
2 3 4 5 6