Questions on SMM Estimation

Hi everyone,

I am currently working on a DSGE model using the Simulated Method of Moments (SMM). I have encountered several issues and have a few questions that I would like to ask for your guidance on. I appreciate any advice or feedback you can provide.

(1) Selection of Estimated Parameters:

How do I generally decide which parameters to include in the estimated_params for estimation? Is it acceptable to select only a subset of parameters for estimation based on my judgment? I am concerned that this might lead to very subjective judgment and may contain bias.

(2)Choice of Matched Moments:

Regarding matched_moments, is the selection of moments also purely subjective? Should I include moments that yield actual data values and theoretical values that are closer, or is there a more objective criterion to follow?

(3) Order of Estimation:

How should I decide whether to use first-order, second-order, or higher-order estimation? My model only works with first-order estimation, but it fails with higher orders. What could be causing this issue? If I am unable to perform second-order or higher-order estimation, is it acceptable to rely solely on first-order estimation results?

(4) NaN in SMM Estimation Results:

In my RESULTS FROM SMM (STAGE 2) ESTIMATION, the standard deviations (s.d.) and t-statistics are showing as NaN. What might be causing this, and how should I troubleshoot and resolve this issue?

(5) Comparison of Data Moments and Model Moments:

When comparing data moments and model moments, do all the moments need to be close, or is it sufficient if most of them are close? What is the acceptable error margin, and what criteria should I use to evaluate the goodness of fit for the model?

(6) Graph for Minimum Check Plots:

The plots for parameters like rho_z, rho_e, rho_c, rho_d, sig_z, and sig_e in my model appear unusual (please see the attached graphs). Do you have any advice on what might be causing these anomalies?

I have attached my code and log file for reference. Thank you very much for your time and assistance!

Best regards,
Ya


updated06051.rar (85.7 KB)

  1. See
  1. Usually, you pick the moments that you are most interested in. That’s the difference to full information estimation.

  2. It depends on whether nonlinearities are important. If higher order does not work, there is often a problem with the scaling of shocks (scaling by 100). Also, often pruning helps.

  3. To compute the standard deviations, you need a positive definite Hessian at the mode. Looking at the mode_check pictures, that is not the case in your results, most likely due to a corner solution.

  4. If your model is overidentified, the J test ist for testing whether the model is rejected by the data.

  5. Enable options_.debug=true; to see where the dots comes from. But given that the autocorrelation coefficients go to 1 (unit root), you most likely have a problem with the observation equations. The mean of the data and the matched model variables most likely differ.

Thank you vey much. That’s very helpful!