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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
36 10 7 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-apiworkspaceworkspace-data-apirefinitiv-dataplatform-eikonpythonrdp-api
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

Upvotes
Accepted
39.2k 75 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 5.0 MiB each and 10.0 MiB total.

Click below to post an Idea Post Idea