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
21 1 0 3

Getting both quarterly and semiannual data

Hi,

I need to download quarterly data for some stocks but I realized that some stocks report only or semiannual, some for quarterly, and some use mix sometimes. I wonder is there any way I can download it in mixed form like this.?

Thank you so much.

This is the result of the desktop app.

I used this code for Eikon API. I try to change FQ to FI but still only quarter or semiannual show up

parameters = {'Period':'FQ0', 'SDate':0, 'EDate':-25, 'Frq':'FQ', 'Curn':'EUR'}

dfx, err = ek.get_data('CTDM.SI'

,['TR.BSPeriodEndDate.fpa,'TR.ISPeriodEndDate.date','TR.ISPeriodEndDate'

],parameters)

or

parameters = {'Period':'FI0', 'SDate':0, 'EDate':-25, 'Frq':'FQ', 'Curn':'EUR'}

dfx, err = ek.get_data('CTDM.SI'

,['TR.BSPeriodEndDate.fpa,'TR.ISPeriodEndDate.date','TR.ISPeriodEndDate'

],parameters)

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apidata
1617197881591.png (52.9 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.

The code I used

1617197953528.png (33.5 KiB)

1 Answer

· Write an Answer
Upvotes
Accepted
10.1k 18 6 9

@Ha.T.Nguyen As far as I know there is no mixed period setting - practically you would need to request some combination or all of FQ, FI, FY, FS separately and then merge or join them into one frame. I hope this can help.

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.

Thank you so much for your reply

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.