estimating dynamic stochastic general equilibrium models
play

Estimating dynamic stochastic general equilibrium models in Stata - PowerPoint PPT Presentation

Estimating dynamic stochastic general equilibrium models in Stata David Schenck Senior Econometrician Stata 2017 Canadian Stata User Group Meeting June 9, 2017 Schenck (Stata) DSGE June 9, 2017 1 / 21 Motivation Models used in


  1. Estimating dynamic stochastic general equilibrium models in Stata David Schenck Senior Econometrician Stata 2017 Canadian Stata User Group Meeting June 9, 2017 Schenck (Stata) DSGE June 9, 2017 1 / 21

  2. Motivation Models used in macroeconomics for policy analysis Schenck (Stata) DSGE June 9, 2017 2 / 21

  3. Motivation Models used in macroeconomics for policy analysis Dynamic Schenck (Stata) DSGE June 9, 2017 2 / 21

  4. Motivation Models used in macroeconomics for policy analysis Dynamic Stochastic Schenck (Stata) DSGE June 9, 2017 2 / 21

  5. Motivation Models used in macroeconomics for policy analysis Dynamic Stochastic General equilibrium Schenck (Stata) DSGE June 9, 2017 2 / 21

  6. Here’s a model in words Households Consume and save output Take inflation and interest rate as given Schenck (Stata) DSGE June 9, 2017 3 / 21

  7. Here’s a model in words Households Consume and save output Take inflation and interest rate as given Firms Produce output and set prices Take demand as given Schenck (Stata) DSGE June 9, 2017 3 / 21

  8. Here’s a model in words Households Consume and save output Take inflation and interest rate as given Firms Produce output and set prices Take demand as given Central bank Sets interest rate Adjusts interest rate in response to inflation Schenck (Stata) DSGE June 9, 2017 3 / 21

  9. Here’s a model in words Households Consume and save output Take inflation and interest rate as given Firms Produce output and set prices Take demand as given Central bank Sets interest rate Adjusts interest rate in response to inflation In equilibrium, this is a model that simultaneously determines output, inflation, and the interest rate Schenck (Stata) DSGE June 9, 2017 3 / 21

  10. Here’s a model in equations I Households demand output, given inflation and interest rates: x t = E t ( x t +1 ) − ( r t − E t ( π t +1 ) − z t ) Schenck (Stata) DSGE June 9, 2017 4 / 21

  11. Here’s a model in equations I Households demand output, given inflation and interest rates: x t = E t ( x t +1 ) − ( r t − E t ( π t +1 ) − z t ) Firms set prices, given output demand: π t = β E t ( π t +1 ) + κ x t Schenck (Stata) DSGE June 9, 2017 4 / 21

  12. Here’s a model in equations I Households demand output, given inflation and interest rates: x t = E t ( x t +1 ) − ( r t − E t ( π t +1 ) − z t ) Firms set prices, given output demand: π t = β E t ( π t +1 ) + κ x t Central bank sets interest rate, given inflation r t = 1 β π t + u t Schenck (Stata) DSGE June 9, 2017 4 / 21

  13. Here’s a model in equations II The model’s endogenous variables are characterized by equations: x t = E t ( x t +1 ) − ( r t − E t ( π t +1 ) − z t ) π t = β E t ( π t +1 ) + κ x t r t = 1 β π t + u t Schenck (Stata) DSGE June 9, 2017 5 / 21

  14. Here’s a model in equations II The model’s endogenous variables are characterized by equations: x t = E t ( x t +1 ) − ( r t − E t ( π t +1 ) − z t ) π t = β E t ( π t +1 ) + κ x t r t = 1 β π t + u t The model is completed by adding equations for the state variables: z t +1 = ρ z z t + ξ t +1 u t +1 = ρ u u t + ε t +1 Schenck (Stata) DSGE June 9, 2017 5 / 21

  15. Here’s a model in Stata I The model equations: x t = E t ( x t +1 ) − ( r t − E t ( π t +1 ) − z t ) π t = β E t ( π t +1 ) + κ x t r t = 1 β π t + u t z t +1 = ρ z z t + ξ t +1 u t +1 = ρ u u t + ε t +1 Schenck (Stata) DSGE June 9, 2017 6 / 21

  16. Here’s a model in Stata I The model equations: x t = E t ( x t +1 ) − ( r t − E t ( π t +1 ) − z t ) π t = β E t ( π t +1 ) + κ x t r t = 1 β π t + u t z t +1 = ρ z z t + ξ t +1 u t +1 = ρ u u t + ε t +1 In Stata: . dsge (x = E(F.x) - (r - E(F.p) - z), unobserved) /// (p = {beta}*E(F.p) + {kappa}*x) /// (r = 1/{beta}*p + u) /// (F.z = {rhoz}*z, state) /// (F.u = {rhou}*u, state) Schenck (Stata) DSGE June 9, 2017 6 / 21

  17. Here’s a model in Stata II . dsge (x = E(F.x) - (r - E(F.p) - z), unobserved) /// (p = {beta}*E(F.p) + {kappa}*x) /// (r = 1/{beta}*p + u) /// (F.z = {rhoz}*z, state) /// (F.u = {rhou}*u, state) Schenck (Stata) DSGE June 9, 2017 7 / 21

  18. Here’s a model in Stata II . dsge (x = E(F.x) - (r - E(F.p) - z), unobserved) /// (p = {beta}*E(F.p) + {kappa}*x) /// (r = 1/{beta}*p + u) /// (F.z = {rhoz}*z, state) /// (F.u = {rhou}*u, state) There are some rules Equations are bound in parentheses. Parameters are bound in braces. Each variable appears on the left-hand side of one equation. State equations are written in terms of their one-period-ahead value. Schenck (Stata) DSGE June 9, 2017 7 / 21

  19. Here’s a model in Stata II . dsge (x = E(F.x) - (r - E(F.p) - z), unobserved) /// (p = {beta}*E(F.p) + {kappa}*x) /// (r = 1/{beta}*p + u) /// (F.z = {rhoz}*z, state) /// (F.u = {rhou}*u, state) There are some rules Equations are bound in parentheses. Parameters are bound in braces. Each variable appears on the left-hand side of one equation. State equations are written in terms of their one-period-ahead value. Data: US inflation rate and nominal interest rate, quarterly Schenck (Stata) DSGE June 9, 2017 7 / 21

  20. Parameter estimation . dsge (x = E(F.x) - (r - E(F.p) - z), unobserved) /// > (p = {beta}*E(F.p) + {kappa}*x) /// > (r = 1/{beta}*p + u) /// > (F.z = {rhoz}*z, state) /// > (F.u = {rhou}*u, state), nolog DSGE model Sample: 1955q1 - 2015q4 Number of obs = 244 Log likelihood = -753.57131 OIM Coef. Std. Err. z P>|z| [95% Conf. Interval] /structural beta .5146675 .0783489 6.57 0.000 .3611065 .6682284 kappa .1659054 .0474072 3.50 0.000 .0729889 .2588218 rhoz .9545256 .0186424 51.20 0.000 .9179872 .991064 rhou .7005486 .0452604 15.48 0.000 .6118398 .7892573 sd(e.z) .6211211 .101508 .4221692 .8200731 sd(e.u) 2.318202 .3047436 1.720916 2.915489 Schenck (Stata) DSGE June 9, 2017 8 / 21

  21. Policy questions What is the effect of an unexpected increase in interest rates? Estimated DSGE model provides an answer to this question. We can subject the model to a shock, then see how that shock feeds through the rest of the system. Schenck (Stata) DSGE June 9, 2017 9 / 21

  22. Impulse response functions Q: What is the effect of a shock to u t on the model variables? Recall our model: x t = E t ( x t +1 ) − ( r t − E t ( π t +1 ) − z t ) (Demand) π t = β E t ( π t +1 ) + κ x t (Pricing) r t = 1 β π t + u t (Interest rate) z t +1 = ρ z z t + ξ t +1 (Natural rate of interest) u t +1 = ρ u u t + ε t +1 (Monetary policy) Schenck (Stata) DSGE June 9, 2017 10 / 21

  23. Impulse responses from the estimated model model1, u, p model1, u, r 0 .6 .4 −.5 .2 −1 0 model1, u, u model1, u, x 3 0 2 −2 1 −4 0 −6 0 2 4 6 8 0 2 4 6 8 step 95% CI impulse−response function (irf) Graphs by irfname, impulse, and response Schenck (Stata) DSGE June 9, 2017 11 / 21

  24. Solving a DSGE Model I Solution to a model is the key to estimation and generating impulse responses Schenck (Stata) DSGE June 9, 2017 12 / 21

  25. Solving a DSGE Model I Solution to a model is the key to estimation and generating impulse responses Solution expresses endogenous variables as a function of state variables alone Schenck (Stata) DSGE June 9, 2017 12 / 21

  26. Solving a DSGE model II Recall the structural equation for output: x t = E t ( x t +1 ) − ( r t − E t ( π t +1 ) − z t ) Schenck (Stata) DSGE June 9, 2017 13 / 21

  27. Solving a DSGE model II Recall the structural equation for output: x t = E t ( x t +1 ) − ( r t − E t ( π t +1 ) − z t ) The reduced form for output is: x t = g 1 z t + g 2 u t g 1 and g 2 are coefficients whose values are functions of the structural parameters Schenck (Stata) DSGE June 9, 2017 13 / 21

  28. Solving a DSGE model III What about expectations? Roll the solution forward one period, x t +1 = g 1 z t +1 + g 2 u t +1 Schenck (Stata) DSGE June 9, 2017 14 / 21

  29. Solving a DSGE model III What about expectations? Roll the solution forward one period, x t +1 = g 1 z t +1 + g 2 u t +1 And take expectations, E t ( x t +1 ) = g 1 E t ( z t +1 ) + g 2 E t ( u t +1 ) Schenck (Stata) DSGE June 9, 2017 14 / 21

  30. Solving a DSGE model III What about expectations? Roll the solution forward one period, x t +1 = g 1 z t +1 + g 2 u t +1 And take expectations, E t ( x t +1 ) = g 1 E t ( z t +1 ) + g 2 E t ( u t +1 ) Then roll the state variables back one period E t ( x t +1 ) = g 1 ρ z z t + g 2 ρ u u t Schenck (Stata) DSGE June 9, 2017 14 / 21

  31. Solving and Estimating a DSGE Model Compactly, the solution to a model is y t = Gz t z t +1 = Hz t + Me t +1 where y t is a vector of control variables, z t is a vector of state variables, and e t is a vector of shocks. Schenck (Stata) DSGE June 9, 2017 15 / 21

  32. Solving and Estimating a DSGE Model Compactly, the solution to a model is y t = Gz t z t +1 = Hz t + Me t +1 where y t is a vector of control variables, z t is a vector of state variables, and e t is a vector of shocks. This is a state-space model whose parameters can be estimated by maximum likelihood. Schenck (Stata) DSGE June 9, 2017 15 / 21

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend