Hello everyone!
I am replicating a paper about calculating the idiosyncratic volatility with respect to the FF three factors' models. The excess returns and FF three factors are daily recorded but the idiosyncratic volatility needs to be computed based on monthly basis. However, I still couldn't get the same result as the paper did after trying many many times. May I ask that, is there anyone who is able to have a look for me? Many thanks for your help and time, I will be very grateful if you can give some tips!
Here is my code:
keep date permno mkt_rf smb hml rf ret vwretd
gen y=year(date)
gen m=month(date)
gen ym=y*100+m
gen exret1=(ret-rf)*sqrt(250) *annualised excess returns
drop if missing(ret)
sort ym permno
reg exret1 mkt_rf smb hml
May I also ask that, does the Root MSE out of the regression analysis mean the idiosyncratic volatility?
I am replicating a paper about calculating the idiosyncratic volatility with respect to the FF three factors' models. The excess returns and FF three factors are daily recorded but the idiosyncratic volatility needs to be computed based on monthly basis. However, I still couldn't get the same result as the paper did after trying many many times. May I ask that, is there anyone who is able to have a look for me? Many thanks for your help and time, I will be very grateful if you can give some tips!
Here is my code:
keep date permno mkt_rf smb hml rf ret vwretd
gen y=year(date)
gen m=month(date)
gen ym=y*100+m
gen exret1=(ret-rf)*sqrt(250) *annualised excess returns
drop if missing(ret)
sort ym permno
reg exret1 mkt_rf smb hml
May I also ask that, does the Root MSE out of the regression analysis mean the idiosyncratic volatility?
Comment