I am trying to get All Mergers and Acquisitions on the Python API, I am wondering if there's a Symbol or instrument to just get all of them, this is the code I am using at the moment.
names_list = ['TR.DealDate;TR.DealStatus;TR.DealAcquiror;TR.DealTarget;TR.DealType;TR.DealSynopsis; TR.DealAnnouncementDate;TR.DealPercentSought;TR.DealPercentOwned, ']
start_date = str(20060101)
end_date = str(20180812)
df, error = ek.get_data(ALLCOMPANIESCODEHERE, names_list, {"SDate": start_date, "EDate": end_date}) cheers.