Line 43 in Signals/Code/DataDownloads/I_CRSPmonthly.do: replace ret = ret + dlret.
In this way, 62 observations of delisting adujsted ret are less than -1. The minimum ret is -1.99
Is it better to use replace ret = (1+ret) * (1+dlret) - 1 as suggested by WRDS? There will be no delisting adjusted return that is less than -1.
Line 43 in Signals/Code/DataDownloads/I_CRSPmonthly.do:
replace ret = ret + dlret.In this way, 62 observations of delisting adujsted ret are less than -1. The minimum ret is -1.99
Is it better to use
replace ret = (1+ret) * (1+dlret) - 1as suggested by WRDS? There will be no delisting adjusted return that is less than -1.