Hello everyone,
i've calculated abnormal returns for my event window and now i want to calculate average abnormal returns (AAR) for every day t in my event window and also my cumulative average abnormal return (CAAR).
Therefore i want to use the following formula:
with N: Number of observations = 151 Companies
ARi,t: abnormal Return for security i on day t
CAAR: cumulative abnormal return for the event_window
here is my file with abnormal return data (sorry, i don't have stata at home. so i've uploaded it to dropbox. hope someone will give it a look anyway
)
https://www.dropbox.com/s/4xxisqckqt...turns.dta?dl=0
Follwing commands i used to calculate AARs and CAAR:
sort dif
by dif: egen AAR = mean(abnormal_return)
egen CAAR = sum(AAR)
Now i want to test for statistical significance. Therefore i want to use the Cross-section test provided here (see photo below).
Here are my commands i've used:
sort dif
by dif: egen AAR_sd = sd(abnormal_return)
gen test =(sqrt(151)) * ( AAR /AAR_sd) //Formel: Wurzel(N)* (AAR/AAR_SD)
so here is my question. my results for the t-value seem to be wrong. have i done something wrong? i searched for this problem here but couldn't find any answer.
thanks for your help !
Felix
i've calculated abnormal returns for my event window and now i want to calculate average abnormal returns (AAR) for every day t in my event window and also my cumulative average abnormal return (CAAR).
Therefore i want to use the following formula:
AARt=1N∑i=1NARi,t
CAARi=∑t=T1+1T2AAR,ti,t
with N: Number of observations = 151 Companies
ARi,t: abnormal Return for security i on day t
CAAR: cumulative abnormal return for the event_window
here is my file with abnormal return data (sorry, i don't have stata at home. so i've uploaded it to dropbox. hope someone will give it a look anyway

https://www.dropbox.com/s/4xxisqckqt...turns.dta?dl=0
Follwing commands i used to calculate AARs and CAAR:
sort dif
by dif: egen AAR = mean(abnormal_return)
egen CAAR = sum(AAR)
Now i want to test for statistical significance. Therefore i want to use the Cross-section test provided here (see photo below).
Here are my commands i've used:
sort dif
by dif: egen AAR_sd = sd(abnormal_return)
gen test =(sqrt(151)) * ( AAR /AAR_sd) //Formel: Wurzel(N)* (AAR/AAR_SD)
so here is my question. my results for the t-value seem to be wrong. have i done something wrong? i searched for this problem here but couldn't find any answer.
thanks for your help !
Felix
Comment