Optimal simple rule
Posted: Fri Mar 24, 2017 6:35 pm
Dear Prof. Pfeifer,
I am having a bit of difficulty fully understanding how the optim_weights block works with the optimal simple rule.
In the user manual for the optimal policy package (attached), a variable in the optim-weights section only appears once (page 5). However, in a different example (below) from the Dynare optimal policy manual, inflation appears twice in this block and I don't understand the purpose of its second appearance (with 0.5 next to it)?
var y inflation r;
varexo y_ inf_;
parameters delta sigma alpha kappa gammarr gammax0 gammac0 gamma_y_ gamma_inf_;
delta = 0.44;
kappa = 0.18;
alpha = 0.48;
sigma = -0.06;
gammarr = 0;
gammax0 = 0.2;
gammac0 = 1.5;
gamma_y_ = 8;
gamma_inf_ = 3;
model(linear);
y = delta * y(-1) + (1-delta)*y(+1)+sigma *(r - inflation(+1)) + y_;
inflation = alpha * inflation(-1) + (1-alpha) * inflation(+1) + kappa*y + inf_;
r = gammax0*y(-1)+gammac0*inflation(-1)+gamma_y_*y_+gamma_inf_*inf_;
end;
shocks;
var y_; stderr 0.63;
var inf_; stderr 0.4;
end;
optim_weights;
inflation 1;
y 1;
y, inflation 0.5;
end;
osr_params gammax0 gammac0 gamma_y_ gamma_inf_;
osr y;
My other questions are:
2) Must the shock I include in the shock block be associated with the equations for the variables I have in optim_weight (as in both examples) or can the shock be for another variable in my model, say a technology shock?
3) Does the weight of the first variable in the rule ('y' in both examples) have to be 1?
4) Also, do the weights simply just represent the relative importance you are placing on the variables in the rules. I ask because they don't seem to sum to 1 or some value.
Many thanks
I am having a bit of difficulty fully understanding how the optim_weights block works with the optimal simple rule.
In the user manual for the optimal policy package (attached), a variable in the optim-weights section only appears once (page 5). However, in a different example (below) from the Dynare optimal policy manual, inflation appears twice in this block and I don't understand the purpose of its second appearance (with 0.5 next to it)?
var y inflation r;
varexo y_ inf_;
parameters delta sigma alpha kappa gammarr gammax0 gammac0 gamma_y_ gamma_inf_;
delta = 0.44;
kappa = 0.18;
alpha = 0.48;
sigma = -0.06;
gammarr = 0;
gammax0 = 0.2;
gammac0 = 1.5;
gamma_y_ = 8;
gamma_inf_ = 3;
model(linear);
y = delta * y(-1) + (1-delta)*y(+1)+sigma *(r - inflation(+1)) + y_;
inflation = alpha * inflation(-1) + (1-alpha) * inflation(+1) + kappa*y + inf_;
r = gammax0*y(-1)+gammac0*inflation(-1)+gamma_y_*y_+gamma_inf_*inf_;
end;
shocks;
var y_; stderr 0.63;
var inf_; stderr 0.4;
end;
optim_weights;
inflation 1;
y 1;
y, inflation 0.5;
end;
osr_params gammax0 gammac0 gamma_y_ gamma_inf_;
osr y;
My other questions are:
2) Must the shock I include in the shock block be associated with the equations for the variables I have in optim_weight (as in both examples) or can the shock be for another variable in my model, say a technology shock?
3) Does the weight of the first variable in the rule ('y' in both examples) have to be 1?
4) Also, do the weights simply just represent the relative importance you are placing on the variables in the rules. I ask because they don't seem to sum to 1 or some value.
Many thanks