Hi everyone,
I have a panel with monthly financial markets data, including returns, volatility, sentiment and a few dummy variables to capture crisis, crashes and other particular events. The data is composed by 15 countries (N=15) and 300 monthly observations (T=300). There is cross-sectional dependence, heteroscedasticity and country fixed effects. I'm also concerned with two additional issues: serial correlation and endogeneity.
After reading extensively about panel models, I've chosen Driskoll-Kraay (xtscc) to deal with the data. Something like:
From my understanding xtscc is able to deal well with serial correlation and the other problems reported above. However, I was thinking about the possibility of adding a lagged dependent variable (LDV) and run a model like:
I believe that the fact T is large relative to N, allows for the introduction of a LDV without problems, but not sure. Here are my questions:
I have a panel with monthly financial markets data, including returns, volatility, sentiment and a few dummy variables to capture crisis, crashes and other particular events. The data is composed by 15 countries (N=15) and 300 monthly observations (T=300). There is cross-sectional dependence, heteroscedasticity and country fixed effects. I'm also concerned with two additional issues: serial correlation and endogeneity.
After reading extensively about panel models, I've chosen Driskoll-Kraay (xtscc) to deal with the data. Something like:
Code:
xtscc depvar ret vol sent, fe
Code:
xtscc depvar ret vol sent L.depvar, fe
- Do you believe xtscc is the best option to fit the data and its characteristics, or would you run something else like xtreg?
- Do you believe I can add the LDV to a xtscc fit without creating econometric issues?
- Should I do Arellano-Bond dynamic model to fit the LDV, instead?
Comment