I was reading a few papers in finance regarding the method of event study. Below is the code that I used to estimate the abnormal return of a single company, did I make any mistake?
return =stock i's return
RF =risk free return
MKT_RF, SMB, HML =variables downloaded from French's website
abnormal_return =stock i's abnormal return
return =stock i's return
RF =risk free return
MKT_RF, SMB, HML =variables downloaded from French's website
abnormal_return =stock i's abnormal return
Code:
gen excess = return - RF reg excess MKT_RF SMB HML predict phat gen abnormal_return = return - (RF+phat)
Comment