Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 1 1

Earnings Calls Events via Eikon API

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

eikon-data-apipython#content
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hello @martin.koall

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?


If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar question.

Thanks,


AHS

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,

AHS

1 Answer

· Write an Answer
Upvotes
Accepted
14.2k 30 5 10

Hi @martin.koall ,

I tried to produce with RIC "T" (AT&T) and got a response with 39 rows

also, put the same filter in the ADVEV, there're 39 records returned as well, the filters are

  • Events Date: 2013-01-01 to 2023-01-01
  • Company Event Type: Earning Calls and Presentations

1678680026234.png

Hence, I cannot reproduce the issue you reported, could you please provide the screenshot of the result you've got from the Python code and the ADVEV (including the filters applied). Please also try to print if there's any error text stored in the variable "err" in Python Code as well.

Hope this helps and please let me know in case there's any further questions.


1678680026234.png (403.0 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hello


thank you for your response, it indeed works with AT&T, however i can name Weyerhauser (WY) as an example where it does not.

Using ADVEV i get 51 results, using the pythonm code:

calls_wy, err = ek.get_data(
instruments = 'WY',
fields = ['TR.EventStartTime', 'TR.EventStartDate', 'TR.EventType', 'TR.EventTitle'],
parameters= {"SDate":'2013-01-01', "EDate":'2023-01-01', 'EventType': 'ECALL'})


I get 7 results (see picture)

1678699424953.png


1678699458319.png

Thanks in advance for your help

1678699424953.png (406.4 KiB)
1678699458319.png (83.2 KiB)

@martin.koall

I ran the same code and got 40 results.

1679298442025.png

1679298442025.png (16.0 KiB)

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.