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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvote
Accepted
37 3 3 10

How to extract quarterly fundamentals data

I would like to extract quarterly values for the field totalEquity for Apple usnig the Python eikon API. I currently have the following function:

temp_data = ek.get_data('AAPL.O',['TR.ISOriginalAnnouncementDate','TR.TotalEquity.periodenddate','TR.TotalEquity'],parameters={'SDate': start_date, 'EDate': end_date})

But i only get yearly values. I tried to change the field FRQ in the parameters but could not get the right set-up. Any suggestion?


eikoneikon-data-apiworkspaceworkspace-data-apirefinitiv-dataplatform-eikonpythondatafundamentals
icon clock
10 |1500

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

1 Answer

Upvote
Accepted
18k 21 12 20

Hi @Tulkkas

You can try this code:

df,e  = ek.get_data('AAPL.O',
                    ['TR.ISOriginalAnnouncementDate(SDate="2017-01-01",EDate="2019-08-01",Period=FQ0,Frq=FQ)',
                     'TR.TotalEquity(SDate="2017-01-01",EDate="2019-08-01",Period=FQ0,Frq=FQ).periodenddate',
                     'TR.TotalEquity(SDate="2017-01-01",EDate="2019-08-01",Period=FQ0,Frq=FQ)'])
df


ahs.png (47.4 KiB)
icon clock
10 |1500

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

Click below to post an Idea Post Idea