I am currently trying to use Dynare++ to replicate the results on Burnside (1998) model, discussed in:
Juillard, Michel. "Local approximation of DSGE models around the risky steady state." Wp. comunite 87 (2011).
To obtain the steady state I use the command
dynare++ --steps 5 burnside.mod, and then retrieve the sequence of steady-states (in Matlab) by the command
dyn_steady_states.
Unfortunately, the entire sequence just gives the deterministic steady state.
Thank you,
Ivan Lozev
PhD student Hamburg University
Below I enclose the burnside.mod model:
var y, x;
varexo e;
parameters beta, rho, x_bar, theta, sigm;
beta = 0.95;
rho = -0.139;
x_bar = 0.0179;
theta = -10;
sigm = 0.0348;
model;
y = beta*exp(theta*x(+1))*(1+y(+1));
x = (1-rho)*x_bar+rho*x(-1)+sigm*e;
end;
initval;
x = x_bar;
y = 5;//beta*exp(theta*x_bar)/(1-beta*exp(theta*x_bar));
end;
vcov = [1];
order = 1;