Bayesian Estimation crash

I have make some adjustments to the fs2000.mod file to include a Taylor rule and I made some adjustments to the bank’s balance sheet. The stochastic shock works just fine. But my Bayesian estimation causes dynare to crash. :angry: The error message is

[quote]The loglinearization of the model cannot be performed, because the steady state is not strictly
positive.[/quote]

Also, dynare tells me to try adding

. Would this work? Is there an example of what this means?

Please advise.
Thanks
detoutput2.mod (7.86 KB)

Add

[quote]estimated_params_init(use_calibration);
end;
[/quote]

The problem is that without explicitly provided starting values, estimation will start at the prior means. But at the prior mean, the steady state of

becomes negative, giving rise to the reported error message. But given that you have a running calibrated version of the model, you can use the use_calibration option.

thanks. I really appreciate all of your help.