Skip to content

Commit

Permalink
nk.mod: fix missing lag in Taylor rule
Browse files Browse the repository at this point in the history
  • Loading branch information
wmutschl committed Jun 8, 2024
1 parent 8d907f9 commit f3609e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions progs/dynare/nk.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
% capital, investment adjustment costs, nonzero inflation target, and fiscal policy
% -------------------------------------------------------------------------
% Willi Mutschler ([email protected])
% Version: May 1, 2024
% Version: June 8, 2024
% -------------------------------------------------------------------------

%-------------------------------------------------------------------------%
Expand Down Expand Up @@ -117,7 +117,7 @@ s2p = y + THETAP * BETA * lam(+1) / lam*pie(+1)^(EPSILONP-1) * s2p(+1);
% government %
%%%%%%%%%%%%%%
[name='monetary policy rule']
rnom/steady_state(rnom) = (rnom/steady_state(rnom))^(RHOR) * ( (pie/TARGET_PI)^PSIRPI * (y/steady_state(y))^PSIRY )^(1-RHOR) * exp(eps_r);
rnom/steady_state(rnom) = (rnom(-1)/steady_state(rnom))^(RHOR) * ( (pie/TARGET_PI)^PSIRPI * (y/steady_state(y))^PSIRY )^(1-RHOR) * exp(eps_r);
[name='government spending rule']
g/steady_state(y) = (1-RHOG) * TARGET_G_Y + RHOG * g(-1)/steady_state(y) + eps_g;
[name='fiscal budget constraint']
Expand Down

0 comments on commit f3609e9

Please sign in to comment.