I have an equation I want to estimate using the nonlinear iterated gmm:
Thanks in advance for your help.
yt = a + (1 − p)bX1 + (1 − p)cX2 + pX3 + et.
The code I have written and run in STATA is:gmm (Y-({a}+{b}*X1+{c}*X2+{p}*X3)),igmm instruments (Some matrix of instruments).
The returned results are b_hat=(1-p)b and similar for c. Is there a way to dis-aggregate these coefficients? Also, my professor thinks that I am not using a non-linear gmm estimator based on my returned coefficients. Am I using the wrong syntax/code for a nonlinear model?Thanks in advance for your help.
Comment