Hello
I ran the following regression to model accounting performance of Indian firms for the period 2001-16. Two independent variables namely Leverage1 and CurrentRatio are endogenous on account of simultaneity. Other three independent variables namely are Size2, lnAgeofthefirm and SalesGrowth are exogenous. Although all independent variables are statistically significant, the AR(2) and Sargan-Hansen test do not get satisfied. I have tried many combinations of lag lengths with collapse and without collapse options. However, results do not conform to the diagnostic tests of AR(2) and Sargan-Hansen test. Is there anything we can change in the model so that conditions of AR(2) and Sargan-Hansen are met?
Thanks!
I ran the following regression to model accounting performance of Indian firms for the period 2001-16. Two independent variables namely Leverage1 and CurrentRatio are endogenous on account of simultaneity. Other three independent variables namely are Size2, lnAgeofthefirm and SalesGrowth are exogenous. Although all independent variables are statistically significant, the AR(2) and Sargan-Hansen test do not get satisfied. I have tried many combinations of lag lengths with collapse and without collapse options. However, results do not conform to the diagnostic tests of AR(2) and Sargan-Hansen test. Is there anything we can change in the model so that conditions of AR(2) and Sargan-Hansen are met?
Code:
xtdpdgmm Profitability4 L.Profitability4 Size2 lnAgeofthefirm Leverage1 CurrentRatio SalesGrowth , t
> effects twostep vce(cluster CompanyID) gmmiv(L.Profitability4, lag(1 2) model(fodev)) gmmiv(Leverag
> e1 CurrentRatio, lag(1 1) model(fodev)) iv(Size2 lnAgeofthefirm SalesGrowth , model(level)) nofootno
> te
Generalized method of moments estimation
Fitting full model:
Step 1 f(b) = .00024728
Step 2 f(b) = .05463668
Group variable: CompanyID Number of obs = 20574
Time variable: Year Number of groups = 1657
Moment conditions: linear = 71 Obs per group: min = 1
nonlinear = 0 avg = 12.41642
total = 71 max = 15
(Std. Err. adjusted for 1,657 clusters in CompanyID)
--------------------------------------------------------------------------------
| WC-Robust
Profitability4 | Coef. Std. Err. z P>|z| [95% Conf. Interval]
---------------+----------------------------------------------------------------
Profitability4 |
L1. | .6668446 .0262416 25.41 0.000 .6154121 .7182772
|
Size2 | .001875 .0005509 3.40 0.001 .0007952 .0029548
lnAgeofthefirm | .0024152 .0011865 2.04 0.042 .0000897 .0047406
Leverage1 | .0495562 .0120445 4.11 0.000 .0259494 .073163
CurrentRatio | -.0006555 .0002972 -2.21 0.027 -.0012379 -.0000731
SalesGrowth | .0357161 .0018874 18.92 0.000 .0320168 .0394154
|
Year |
2003 | .002406 .0020818 1.16 0.248 -.0016743 .0064863
2004 | .0069989 .0020466 3.42 0.001 .0029877 .0110102
2005 | .004757 .0020531 2.32 0.021 .0007329 .0087811
2006 | .0086493 .0020496 4.22 0.000 .0046321 .0126664
2007 | .0050735 .0020601 2.46 0.014 .0010357 .0091112
2008 | .0046124 .002133 2.16 0.031 .0004317 .0087931
2009 | -.0105933 .0021875 -4.84 0.000 -.0148807 -.0063059
2010 | .0152441 .002063 7.39 0.000 .0112006 .0192876
2011 | -.000839 .0021657 -0.39 0.698 -.0050836 .0034057
2012 | -.0072511 .0021387 -3.39 0.001 -.0114428 -.0030594
2013 | -.0026715 .0021785 -1.23 0.220 -.0069412 .0015982
2014 | -.0036378 .0022557 -1.61 0.107 -.0080589 .0007834
2015 | -.0026539 .0022484 -1.18 0.238 -.0070607 .0017528
2016 | .003732 .0023898 1.56 0.118 -.0009518 .0084159
|
_cons | -.0172578 .0060395 -2.86 0.004 -.029095 -.0054206
--------------------------------------------------------------------------------
. estat serial
Arellano-Bond test for autocorrelation of the first-differenced residuals
H0: no autocorrelation of order 1: z = -16.8996 Prob > |z| = 0.0000
H0: no autocorrelation of order 2: z = 2.3835 Prob > |z| = 0.0171
. estat overid
Sargan-Hansen test of the overidentifying restrictions
H0: overidentifying restrictions are valid
2-step moment functions, 2-step weighting matrix chi2(50) = 90.5330
Prob > chi2 = 0.0004
2-step moment functions, 3-step weighting matrix chi2(50) = 90.0441
Prob > chi2 = 0.0004

Comment