Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • S-GMM interpretation

    Hello everyone!

    I'm confused by my Stata-output. I'm doing a system-GMM estimation with bank risk as a dependent variable. My main variable of interest is supervisory stress, for which I use 2 different proxies (1 and 2 use proxy 1; 3 and 4 use proxy 2). I notice that the significance of some variables completely disappears when switching to the second proxy, look at Bank Size for example. I'm struggling with how to explain this, as there seems to be no relationship between Bank Size and the component that differs across proxies. Could this have to do with my instrumentation?

    Click image for larger version

Name:	Screenshot 2020-08-07 at 15.15.45.png
Views:	1
Size:	128.6 KB
ID:	1567554


    Here is my code.

    xtabond2 risk l.risk size L2GDP L2INFL L2INT L2LI CAP MON SUP DEP LIQ ENT ACT STAFFASSETS2 SKILL y* if inrange(year, 2014, 2019), gmm(l.risk L2GDP L2INFL) iv(L1FREE size y*, equation(level)) robust orthogonal small

    Kind regards,

    Philippe

  • #2
    Note that xtabond2 has a few serious bugs:
    1. It is likely to produce incorrect coefficient estimates when used with option orthogonal.
    2. When used with time dummies y*, the Sargan-Hansen overidentification test results might be incorrect.
    To avoid these problems, I recommend to use the xtdpdgmm command instead:
    https://www.kripfganz.de/stata/

    Comment

    Working...
    X