Hi, I would like to begin by saying I am new to statalist, so apologies for any issues with the quality of my question. I have previously only used OLS on stata, but for my thesis, I would like to use a GMM two-step, following the literature I have read, which advocated for using lagged explanatory variables as instruments. I am looking at how board size, independence and financial expertise of board members influence performance in the banking industry. I have never used GMM so while I have spent plenty of time researching, I am unsure if my methods or syntax are correct.
I am using an interaction variable (BSFEper) (the percentage of financial experts on board*boardsize) and also have a variable for the percentage of independent directors that are classified as financial experts (perIDFE). Furthermore, I am looking at a non-linear relation with board size, so I am quite confused about what exactly should be used as IVs.
So my main questions are:
1) Is it okay to have the interactions and non-linear effects, and which should be used as instruments?
2) What are the Issues with my code
3) Do the reported tests support the instruments used (from my understanding, they do, but I am unsure).
4) what recommendations would you make to better the analysis
Also any other issues that could be pointed out would be greatly appreciated. However, it is also a bachelor's Thesis, so while I would like my work to be good as possible, it does not need to be of expert quality.
Thank you in advance, and once again, apologies if I have not properly followed the posting guidelines.
I am using an interaction variable (BSFEper) (the percentage of financial experts on board*boardsize) and also have a variable for the percentage of independent directors that are classified as financial experts (perIDFE). Furthermore, I am looking at a non-linear relation with board size, so I am quite confused about what exactly should be used as IVs.
So my main questions are:
1) Is it okay to have the interactions and non-linear effects, and which should be used as instruments?
2) What are the Issues with my code
3) Do the reported tests support the instruments used (from my understanding, they do, but I am unsure).
4) what recommendations would you make to better the analysis
Also any other issues that could be pointed out would be greatly appreciated. However, it is also a bachelor's Thesis, so while I would like my work to be good as possible, it does not need to be of expert quality.
Thank you in advance, and once again, apologies if I have not properly followed the posting guidelines.
Code:
xi: xtabond2 ROA L.ROA BS BS2 BSFEper BS2FE FEper IDper perIDFE age lnTA year crisis leverage , gmm( L.BS L.BS2 L.IDper L.BSFEper L.perIDFE) iv(i.year, equation(level)) nodiffsargan twostep robust orthogonal small
Code:
Dynamic panel-data estimation, two-step system GMM ------------------------------------------------------------------------------ Group variable: gvkey Number of obs = 1516 Time variable : year Number of groups = 255 Number of instruments = 848 Obs per group: min = 1 F(13, 254) = 1179.32 avg = 5.95 Prob > F = 0.000 max = 18 ------------------------------------------------------------------------------ | Corrected ROA | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- ROA | L1. | .6742928 .0634229 10.63 0.000 .5493911 .7991945 | BS | .0034152 .0020192 1.69 0.092 -.0005613 .0073917 BS2 | -.0001301 .0000772 -1.68 0.093 -.0002822 .000022 BSFEper | -.0054987 .0032227 -1.71 0.089 -.0118454 .000848 BS2FE | .0001996 .0001237 1.61 0.108 -.000044 .0004432 FEper | .0354722 .0195382 1.82 0.071 -.0030052 .0739496 IDper | -.004322 .0038887 -1.11 0.267 -.0119802 .0033362 perIDFE | -.0008125 .0047536 -0.17 0.864 -.010174 .008549 lnTA | .0001546 .0002384 0.65 0.517 -.0003149 .000624 year | -.0002598 .0000564 -4.60 0.000 -.0003709 -.0001486 age | -.000121 .0000856 -1.41 0.159 -.0002897 .0000477 crisis | -.0084961 .0013747 -6.18 0.000 -.0112034 -.0057887 leverage | .0409919 .0158303 2.59 0.010 .0098164 .0721673 _cons | .5139144 .1133947 4.53 0.000 .2906009 .7372279 ------------------------------------------------------------------------------ Instruments for orthogonal deviations equation GMM-type (missing=0, separate instruments for each period unless collapsed) L(1/20).(L.BS L.BS2 L.IDper L.BSFEper L.perIDFE) Instruments for levels equation Standard _Iyear_2003 _Iyear_2004 _Iyear_2005 _Iyear_2006 _Iyear_2007 _Iyear_2008 _Iyear_2009 _Iyear_2010 _Iyear_2011 _Iyear_2012 _Iyear_2013 _Iyear_2014 _Iyear_2015 _Iyear_2016 _Iyear_2017 _Iyear_2018 _Iyear_2019 _Iyear_2020 _Iyear_2021 _Iyear_2022 _cons GMM-type (missing=0, separate instruments for each period unless collapsed) D.(L.BS L.BS2 L.IDper L.BSFEper L.perIDFE) ------------------------------------------------------------------------------ Arellano-Bond test for AR(1) in first differences: z = -4.02 Pr > z = 0.000 Arellano-Bond test for AR(2) in first differences: z = -0.25 Pr > z = 0.805 ------------------------------------------------------------------------------ Sargan test of overid. restrictions: chi2(834) = 697.56 Prob > chi2 = 1.000 (Not robust, but not weakened by many instruments.) Hansen test of overid. restrictions: chi2(834) = 204.94 Prob > chi2 = 1.000 (Robust, but weakened by many instruments.)
Comment