I am trying to replicate the paper of Schäfer, Schnabel, DiMauro "Bail-in expectations for EU banks: actions speak louder than words" (2016) (lhttps://www.esrb.europa.eu/pub/pdf/...d6db2c5105f789) where they implement SUR on stock returns and CDS spreads for 85 banks to check for abnormal returns at a certain date.
Their system of equations looks like that
R(i,t) = alpha(i)+beta(i)*Rm(t) + D(t)*tau(i,t)+u(i,t)
where Rit is a return on equity, Rm - market return, Dt - dummy equals to 1 at day when event of interest happened. Date of events are similar to all 85 banks, tau(i,t) - estimated coefficient that shows abnormal return at the day of interest.
What puzzles me is a test after SUR regression. The authors report that they test whether average abnormal returns significantly different from zero and report p-value. I didn’t find a command for such a test.
Right now I run sureg on 85 banks:
global eqn1 (Ret_bank_1 Ret_market Dummy_event1 Dummy_event2 … Dummy_event15)
...
global eqn85 (Ret_bank_85 Ret_market Dummy_event1 Dummy_event2 … Dummy_event15)
sureg $eqn1 …$eqn85
I get the coefficients but don’t know how to run a test I need on them.
Thank you very much in advance!
Comment