Hi,
I am using system GMM (specifically, xtdpdgmm) to estimate a dynamic panel model for corporate cash holdings. For the endogenous explanatory variables (to be put in the gmmiv option) including the lagged dependent variable, I would like to know the basic rules to be kept in mind while deciding the lag structure. For instance, Roodman (2009) mentions that we need to use lags 2 and longer for endogenous variables. Given that I am using forward orthogonal (fodev) treatment for all endogenous variables and 'model(level)' option for all exogenous variables,, I would like to know tentative ideal starting and ending values for lag structure of endogenous variables. For a better understanding, here is my model:
Thanks
I am using system GMM (specifically, xtdpdgmm) to estimate a dynamic panel model for corporate cash holdings. For the endogenous explanatory variables (to be put in the gmmiv option) including the lagged dependent variable, I would like to know the basic rules to be kept in mind while deciding the lag structure. For instance, Roodman (2009) mentions that we need to use lags 2 and longer for endogenous variables. Given that I am using forward orthogonal (fodev) treatment for all endogenous variables and 'model(level)' option for all exogenous variables,, I would like to know tentative ideal starting and ending values for lag structure of endogenous variables. For a better understanding, here is my model:
Code:
xtdpdgmm CashHoldings1 L.CashHoldings1 Size1 Leverage1 Liquidity1 Profitability4 GrowthPotential2 OperatingCashflow Dividend2 CapitalExpenditure1 CashFlowVol15years WIndianPromotersInShar AgeoftheFirm AgeWIndianPromotersIn , teffects twostep vce(cluster CompanyID) gmmiv(L.CashHoldings1, lag(1 14)coll model(fodev)) gmmiv(Leverage1 Liquidity1 GrowthPotential2 Dividend2 CapitalExpenditure1, lag(1 3) coll model(fodev)) iv( AgeWIndianPromotersIn AgeoftheFirm Size1 Profitability4 WIndianPromotersInShar CashFlowVol15years OperatingCashflow, model(level)) nofootnote
Comment