Event Analysis - Colaboratory
Event Analysis - Colaboratory
We study the effect of the acquisition of 21st Century Fox by The Walt Disney Company that was announced on December 14, 2017. Disney's
$71.3 billion purchase of the film and TV assets held by 21st Century Fox — the company behind everything from the Alien movies to The
Simpsons — is one of the biggest media mergers ever.
We assume that abnormal returns on an event date and during a window after the acquisition are unusually large for Disney. We also study
whether there are negative effects on the main competitors of The Walt Disney Company - Paramount and Universal.
PARAMOUNT
returns
ff = pd.read_csv("/content/drive/MyDrive/Master's/Theoty of Finance/Developed_3_Factors_Daily.csv")
ff.rename(columns={'Unnamed: 0':'date'}, inplace = True)
ff
pd.to_datetime(ff['date'])
# ff['date'].astype('datetime64')
# ff = ff.drop(["Open", "High", "Low", "Adj Close", "Volume"], axis=1)
# ff.rename (columns = {'Date':'date'}, inplace= True)
from google.colab import drive
drive.mount('/content/drive')
path = "/content/drive/My Drive/Master's/Theoty of Finance/famafrench.csv"
with open(path, 'w', encoding = 'utf-8-sig') as f:
ff.to_csv(f)
ff
event = es.Single.market_model(
security_ticker = 'PARA',
market_ticker = 'IXIC',
event_date = np.datetime64('2017-12-14'),
event_window = (-5,+5)
)
event.plot(AR=True)
plt.show()
print(event.results(decimals=[3,5,3,5,2,2]))
event = es.Single.FamaFrench_3factor(
security_ticker = 'PARA',
event_date = np.datetime64('2017-12-14'),
event_window = (0,+5),
estimation_size = 300,
buffer_size = 30)
event.plot(AR=True)
plt.show()
print(event.results(decimals=[3,5,3,5,2,2]))
UNIVERSAL
returns
Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True).
date UVV IXIC
event.plot(AR=True)
plt.show()
print(event.results(decimals=[3,5,3,5,2,2]))
event = es.Single.FamaFrench_3factor(
security_ticker = 'UVV',
event_date = np.datetime64('2017-12-14'),
event_window = (-5,+5),
estimation_size = 300,
buffer_size = 30)
event.plot(AR=True)
plt.show()
print(event.results(decimals=[3,5,3,5,2,2]))
DISNEY
returns
Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True).
date DIS IXIC
512 2017-12-26
from google.colab 105.147232
import drive 6936.250000
drive.mount('/content/drive')
513 2017-12-27 104.680428 6939.339844
path = "/content/drive/My Drive/Master's/Theoty of Finance/famafrench.csv"
with open(path, 'w', encoding
514 2017-12-28 = 'utf-8-sig')
104.806854 6950.160156 as f:
ff.to_csv(f)
515 rows × 3 columns
ff
Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True).
date Mkt-RF SMB HML RF
event = es.Single.market_model(
security_ticker = 'DIS',
market_ticker = 'IXIC',
event_date = np.datetime64('2017-12-14'),
event_window = (-5,+5)
)
event.plot(AR=True)
plt.show()
print(event.results(decimals=[3,5,3,5,2,2]))
event = es.Single.FamaFrench_3factor(
security_ticker = 'DIS',
event_date = np.datetime64('2017-12-14'),
AR Std. E. AR CAR Std. E. CAR T-stat P-value
event_window
-5 -0.004 = (-5,+5),
0.00801 -0.004 0.00801 -0.48 0.63
estimation_size
-4 -0.003 = 300,
0.00801 -0.007 0.01133 -0.62 0.54
buffer_size
-3 0.023 = 30) 0.00801 0.016 0.01388 1.14 0.26
-2 0.007 0.00801 0.022 0.01603 1.39 0.16
-1 0.001 0.00801 0.023 0.01792 1.31 0.19
0 0.028
event.plot(AR=True) 0.00801 0.052 ** 0.01963 2.64 0.01
1 0.002
plt.show() 0.00801 0.054 ** 0.02120 2.54 0.01
2 -0.005 0.00801 0.049 ** 0.02267 2.14 0.03
3 0.009 0.00801 0.058 ** 0.02404 2.39 0.02
4 -0.019 0.00801 0.039 0.02534 1.53 0.13
print(event.results(decimals=[3,5,3,5,2,2]))
5 -0.001 0.00801 0.038 0.02658 1.42 0.16
Both methods show no significant changes in Paramount and Universal returns during the event window. It is to be expected as the companies
are big enough to endure the acquisition without negative consequences.
For Disney company both CAPM and FamaFrench results show large returns on the day of the event and 3 days after the acquisition. CAR on
these days varies from ~5% daily in CAPM to ~6.5% in FamaFrench. Buying Murdoch's studios undoubtedly allowed Disney to scoop up
valuable franchises, including television's longest-running scripted show, “The Simpsons,” as well as film juggernaut "Avatar".
The assumption about the large abnormal returns after the acquisition is confirmed.
Не удается связаться с сервисом reCAPTCHA. Проверьте подключение к Интернету и перезагрузите страницу.