Hello
I am currently attempting to get the Event Names for all earnings calls for a company over the last 10-years using the python API.
my query looks as follows:
calls, err = ek.get_data(
instruments = company_name,
fields = ['TR.EventStartTime', 'TR.EventStartDate', 'TR.EventType', 'TR.EventTitle'],
parameters= {"SDate":'2013-01-01', "EDate":'2023-01-01', 'EventType': 'ECALL'})
However when using certain companies (AT&T for example) my query returns 7 events when in reality when using "ADVEV" I should have at least 40 events returned
Thank you in advance