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
36 14 12 14

Get Split date and split ratio for a stock current and historical

I know you can get last /current split info wiht the follownig:

fields = ['TR.CAAnnouncementDate',
'TR.CARecordDate',
'TR.CAEffectiveDate',
'TR.CADealDate',
'TR.CAExDate',
'TR.CAAdjustmentFactor',
'TR.CAAdjustmentType',
'TR.CATermsOldShares',
'TR.CATermsNewShares'
]
 
r, e = tr.get_data('AAPL.O', fields, parameters={"CAEventType":"SSP"})


How do I get historical split info and how do I get this in RDP?

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apirdp-api
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.

1 Answer

· Write an Answer
Upvotes
Accepted
39.4k 77 11 27

You can add 'SDate' and 'EDate' keys to the request parameters dictionary with values expressed as date strings (e.g. '2020-09-20') or as strings defining the time interval relative to today's date. E.g. to retrieve the list of stock splits for the last 20 years use

ek.get_data('AAPL.O', fields, {'CAEventType':'SSP','SDate':'0D','EDate':'-20Y'})

I don't believe this data is available from RDP yet. To the best of my knowledge the service on RDP that will provide fundamental and reference data for stocks has not been launched yet.

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.

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.