-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathocp.mod
More file actions
90 lines (73 loc) · 1.84 KB
/
Copy pathocp.mod
File metadata and controls
90 lines (73 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
var y, pi, i, rr, rn, p, phi1, phi2;
varexo e;
parameters beta, sigma, kappa, lambda, elb, r, rho;
% Program execution parameters
% MODEL PARAMETERS
beta = 1/1.005; % quarterly time discount factor
sigma = 2; % relative risk aversion
kappa = 0.024; % slope of the Phillips curve
lambda = 0.003; % weight on output gap in loss function
elb = -0.0/4; % effective lower bound
% EXOGENOUS SHOCK PROCESS
r = 100*(1/beta-1); % steady-state (quarterly x 100)
rho = 0.95; % persistence
model;
y = y(+1) - 1/sigma*(rr - rn);
pi = beta*pi(+1) + kappa*y;
phi1 = (kappa/sigma +1)/beta*phi1(-1) + kappa*phi2(-1) - kappa*pi - lambda*y;
phi2 = phi2(-1) + phi1(-1)/(beta*sigma) - pi;
0 = min(i-elb, phi1);
rr = i - pi(+1);
pi = p - p(-1);
rn = r + rho*(rn(-1)-r) + e;
end;
initval;
rr = r;
rn = r;
i = r;
phi1 = 0;
phi2 = 0;
end;
steady; check;
initval;
rn = - r;
phi1 = 0;
end;
endval;
rn = r;
end;
perfect_foresight_setup(periods=200);
perfect_foresight_solver(lmmcp);
cut = [2 60];
figure(1)
set(gcf,'Name','Responses to natural real rate shock')
subplot(231)
plot(4*rn)
title('$r^n_t$','FontSize',14,'interpreter','latex')
hold on
xlim([1 cut(2)])
subplot(232)
plot(4*i)
title('$i_t$','FontSize',14,'interpreter','latex')
hold on
xlim(cut)
subplot(233)
plot(4*pi)
title('$\pi_t$','FontSize',14,'interpreter','latex')
hold on
xlim(cut)
subplot(234)
plot(4*rr)
title('$r_t$','FontSize',14,'interpreter','latex')
hold on
xlim(cut)
subplot(235)
plot(y)
title('$y_t$','FontSize',14,'interpreter','latex')
hold on
xlim(cut)
subplot(236)
plot(p)
title('$p_t$','FontSize',14,'interpreter','latex')
hold on
xlim(cut)