Hello, dear friend, you can consult us at any time if you have any questions, add WeChat: daixieit

ECON7350: Applied Econometrics for Macroeconomics and Finance

Tutorial 4: Dynamic Relationships

At the end of this tutorial you should be able to:

derive the ECM representation of an ARDL(p,l,s) model;

❼ create a function in R;

estimate IRFs to permanent and one-off shocks as well as LRMs;

❼ construct confidence intervals for IRFs and LRMs;

❼ Select and adequate set of ARDL models and draw inference on dynamic relationships.

Problems

1. Derive the ECM representation of the following ARDL(1, 1, 2) model:        yt  = a0 + a1yt 1 + b0 xt + b1 xt 1 + c0wt + c1wt 1 + c2wt 2 + ϵy,t .

Which parameter(s) in the resulting ECM are long-run multiplier(s) and adjustment parameter(s)?

2.  Create a function in R to compute coefficients θ0 , . . . ,θh  in

θ(L) = b(L)/a(L) = θ0 + θ1 L + ··· + θh Lh + ··· ,

where a(L) = a0 + a1 L + ··· + ap Lp  and (L) = b0 + b1 L + ··· + bq Lq . ¯

3.  Create a function in R to compute IRFs (to both one-off and permanent shocks) up to horizon h as well as the LRMs for the ARDL(p,l,s):

a(L)yt  = a0 + b(L)xt + c(L)wt + ϵy,t .

4. The file wealth .csv contains observations on:

❼ ct :  the log of total real per capita expenditures on durables, nondurables and services;

❼ at :  the log of a measure of real per capita household net worth (including all financial and household wealth); and

❼ yt : the log of after-tax labour income.

The sample period from  1952Q2 through 2006Q2  (see Koop,  G.,  S. Potter and R. W. Strachan (2008) “Re-examining the consumption-wealth relationship: The role of uncertainty” Journal of Money, Credit and Banking, Vol. 40, No. 2.3, 341-367).

(a) Estimate an ARDL(1, 2, 2) specified for ct  and use the functions created in Ques- tions 2 and 3 to obtain the estimated IRFs to permanent shocks in at  and yt  as well the LRMs.  Hint: to estimate the ARDL parameters, try the ardl function that is provided by the ARDL package.

(b) Estimate the ECM representation of the ARDL(1, 2, 2) and report the results. How do the LRMs in the estimated ECM compare to those computed in part (a)? Hint:  use the recm and multipliers functions to convert the output produced by ardl.

(c) Use the function ardl irfs ci that is provided in the file ardl irfs ci .R to construct 68% confidence intervals for the IRFs obtained in part (a).                   The function ardl irfs ci takes the following inputs:

❼ ardl est: this is the output of ardl;

❼ h: the maximum IRF horizon (default is 40);

❼ cumirf: whether to compute IRFs to a permanent shock (default is TRUE);

conf: the confidence level of the intervals (default is 0.95).

It returns the following outputs:

❼ lb: an h × k matrix of lower-bounds for confidence intervals;

❼ md: an h × k matrix of mid-points for confidence intervals;

❼ ub: an h × k matrix of upper-bounds for confidence intervals.

Note that k is the number of independent variables in the ARDL, so that column j of lb, md and ub is related the confidence intervals for IRFs to a shock in the jth independent variable.

(d)  Compare the values in md to the IRFs estimates obtained in part (a).

(e) Use the LRM estimates and standard deviations obtained in part (b)to construct 68% confidence intervals for the LRMs, assuming the sampling distributions of the LRM estimators are approximately normal. How do they compare to the IRF confidence intervals obtained in part (c)?

(f)  Construct an adequate set of ARDL(p,l,s) models for ct .

(g) Draw inference about the dynamic relationship between expenditures and wealth.