Dear readers,
I'm executing the following code:
cluster(industry) didn't work because then I received the error: "Panels are not nested within cluster"
DV= dependent variable ; IVs= independent variables
I was considering to also add i.fund but now I'm wondering if there's a better method to control for the fixed effects of funds, firms, industries, months and years because the above code takes more than 1 hour to run (without the i.fund)
It's about managers managing funds and their stock returns
EDIT:
also takes longer than 1 hour
-year: I'm 100% sure that I need year fixed effects due to the crisis years.
-month: I'm 99% sure that I need the month fixed effects due to well-known phenomena aspects of December-January (closing year, start of the year, snow-effect....http://www.investopedia.com/terms/j/januaryeffect.asp) and the phenomena called "go away in May and remember to come back in September"
-industry: 90% sure,,,due to different regulation per industry
-firm: 80% sure,,,due to things like ?
I'm executing the following code:
Code:
xtset personID date (date=combination of day, month and year) xtreg DV IVs i.firm, i.industry, i.month, i.year, re cluster(firm)
DV= dependent variable ; IVs= independent variables
I was considering to also add i.fund but now I'm wondering if there's a better method to control for the fixed effects of funds, firms, industries, months and years because the above code takes more than 1 hour to run (without the i.fund)
It's about managers managing funds and their stock returns
EDIT:
Code:
xtreg DV IVs i.firm, i.month, i.year, re cluster(firm)
-year: I'm 100% sure that I need year fixed effects due to the crisis years.
-month: I'm 99% sure that I need the month fixed effects due to well-known phenomena aspects of December-January (closing year, start of the year, snow-effect....http://www.investopedia.com/terms/j/januaryeffect.asp) and the phenomena called "go away in May and remember to come back in September"
-industry: 90% sure,,,due to different regulation per industry
-firm: 80% sure,,,due to things like ?
Comment