Hi,
I am trying to replicate the results of a study that examines the effect of manager board connections on corporate takeovers. Specifically, the paper answers the question whether the fact that executives of the acquiring firm A and the target firm B share a common board seat in another company C. The authors rely on a cross sectional dataset.
In the robustness test section, the authors conduct an analysis with firm fixed effects.
Specifically the authors write:
I do understand the underlying idea but struggle to replicate it. Essentially, what the authors did is that they
only keep acquirer in their sample that i) conducted more than one deal and ii) in which in one deal there was a board connection and in another there was no board connection. This way, they keep the acquiring firm constant so that they are able to control for time-invariant effects on the acquirer-level.
Consider the following data example whereas each entry is one deal. Acq_ID refers to the ID of an acquiring firm and Connection is a dummy that equals 1 if -in a given deal - there is board connection and 0 otherwise. Deal_CAR are the cumulative abnormal returns, i.e., the performance indicator of a given deal.
My code so far:
As to my understanding, the authors compare the means of the cumulative abnormal returns of a given deal where the acquirer has board connections with the target to the CAR of deals where the same acquirer has no connections to the target. My approach:
However, using this command, I would compare the mean CAR over all connected deals with the mean CAR of all non-connected deals, right? So there isn't a comparison on the same acquirer level as stated by the author.
I would really appreciate if someone could tell me if my approach is correct so far and what the next step would be.
I am trying to replicate the results of a study that examines the effect of manager board connections on corporate takeovers. Specifically, the paper answers the question whether the fact that executives of the acquiring firm A and the target firm B share a common board seat in another company C. The authors rely on a cross sectional dataset.
In the robustness test section, the authors conduct an analysis with firm fixed effects.
Specifically the authors write:
To further control for any other unobservable or omitted acquirer characteristics which could affect both board connections and M&A outcomes, we conduct an analysis with firm fixed effects. This specification will not rule out all remaining omitted variables problems, but it will help control for time-invariant acquirer characteristics. Specifically, we compare the deals in which the acquirer has a board connection to the target with those deals by the same acquirer in which the acquirer has no board connection to the target. Put differently, keeping the identity of the acquirer fixed, we compare the connected and non-connected deals made by the same acquirer. Our sample size reduces significantly to 318 in this specification since we focus only on the deals made by those acquirers which undertake at least one acquisition where they have a board connection to the target.
only keep acquirer in their sample that i) conducted more than one deal and ii) in which in one deal there was a board connection and in another there was no board connection. This way, they keep the acquiring firm constant so that they are able to control for time-invariant effects on the acquirer-level.
Consider the following data example whereas each entry is one deal. Acq_ID refers to the ID of an acquiring firm and Connection is a dummy that equals 1 if -in a given deal - there is board connection and 0 otherwise. Deal_CAR are the cumulative abnormal returns, i.e., the performance indicator of a given deal.
Code:
* Example generated by -dataex-. For more info, type help dataex clear input long Acq_ID float Connection double Deal_CAR 71 0 .9519993984731437 71 0 .8364199986664539 71 0 -1.541903500906821 73 1 .19511691836717038 73 1 -4.787644069315418 73 0 2.6460057110489537 112 0 -2.2986211045901275 112 0 .5411933399895202 113 0 2.4946974085581974 113 0 -.5403433136260304 113 0 .48504035524075445 113 0 -4.487339976030167 124 0 3.6687205514550456 151 0 3.590825426789135 151 0 .7502576503749855 151 0 .5536335988657116 151 0 .026392322621639295 152 0 12.47101824461725 152 0 3.9530808072579684 152 0 9.36308608910677 190 0 -5.22601741072109 190 0 -3.6346442715639484 190 1 -2.644106849677599 190 0 -1.762056906238326 275 0 -13.816844600049105 276 0 -1.07461278651107 276 0 4.0346841181037885 276 0 3.582171326103593 324 0 1.850095552909985 324 0 -5.913551001671871 324 0 .31846880674315653 324 0 -7.896034254994485 324 0 1.3271396580365893 324 0 -6.398814218036208 324 0 2.983633572428436 324 0 5.072822046456308 335 1 5.890566950790053 335 0 -10.516050924879018 end
My code so far:
Code:
bysort Acq_ID: egen Acq_Deals = count(Acq_ID) drop if Acq_Deals < 2 //Only keep companies that conducted more than 1 acquisition drop Acq_Deals bysort Acq_ID: egen summ = sum(Connection) //Acquiring firms whose deals differ with respect to the connection take on a value >= 1 drop if summ == 0 //Drop Deals where the connection variable does not vary drop summ
Code:
ttest Deal_CAR, by(Connection)
I would really appreciate if someone could tell me if my approach is correct so far and what the next step would be.

Comment