question

Upvotes
Accepted
18 0 1 5

Get corporate action (split date, ratio) history for stock with RDP

While replace old TS1 solution with RDP:
within the TS1 (monthly) data, the CA event info (like split) was returned.

================================================================

TSLA.OQ [Monthly]

Events:-

2020 Aug 31 01:00 '83' Split: 0.2

2022 Aug 25 01:00 '83' Split: 0.333333

================================================================
Is there a similar facility with Refinitiv.Data.Content.??? or any RDP API?

rdp-api#product#contenthistoricalcorporate-actions
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 @PatrickZ

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

Upvotes
Accepted
14.2k 30 5 10

Hi @PatrickZ ,

Have you had a chance to check this article yet?

To get the complete list of relevant fields, as this is the content-related question, please raise the content question ticket via MyRefinitiv

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.

Upvotes
5k 16 2 7

Hi @PatrickZ ,


You can use Refinitiv Data Libraries for Python which sit on top of RDP to get the CA data. Here is an example request:

rd.get_data(universe = 'TSLA.OQ',fields = ["TR.CAEffectiveDate", "TR.CAAdjustmentFactor", "TR.CAAdjustmentType"], parameters={'SDate': '2019-01-01', 'EDate': '2023-10-30'})

screenshot-2023-11-02-at-092342.png

You may look for additional CA fields from the Data Item Browser inside the Workspace

screenshot-2023-11-02-at-092706.png

Hope this helps.

Best regards,

Haykaz


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.

Upvotes
1 0 0 0

Thanks for the info.
Unfortunately, we are looking to the .Net (C#) solution.
Assuming the main elements in Refinitiv.Data.Content:

.Data
.ESG
.HistoricalPricing
.IPA
.News
.Pricing
.SearchService
.Symbology

only the .Data would seems to be the candidate to look in...
FundamentalAndReference.Definition().Universe("TSLA.OQ").Fields("???", "???")
Assuming this, where to fine an exhaustive list of fields?

Having the CA info in the TS1 was actually a good thing: after finding the split info a client application would possibly want to refresh the previously loaded historical data...

Best regards

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.

Upvotes
17.4k 82 39 63

Hi @syed.ghazanfar,

Try the following:

var response = FundamentalAndReference.Definition().Universe("TSLA.OQ")
                                                   .Fields("TR.CAEffectiveDate", "TR.CAAdjustmentFactor", "TR.CAAdjustmentType")
                                                   .Parameters(new JObject()
                                                    {
                                                       {"SDate", "2019-01-01" },
                                                       {"EDate", "2023-10-30" }
                                                    })
                                                   .GetData();

1698962748378.png


1698962748378.png (8.4 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.

Upvotes
18 0 1 5

Hello!
Code-wise this looks good, as anticipated, but I will have first need to get the access to fundamentals...
But regarding the fields: this does not look like the "standard" Refinitiv data model fields.
I cannot find them in any guide or data model that I can think of.
Is there any data guide available?

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.

Hi @PatrickZ,

Just to better understand, I noticed you are looking for a replacement for the old TS1 service as it is being decommissioned? What API (library) are you using to get TS1?

Regarding the fields, these are fields and their definition is available within the DIB (Data Item Browser) of the LSEG Workspace desktop product. However, it's not clear if you are accessing the data within the desktop or platform.

Upvotes
18 0 1 5

Thanks for your answer.
Regarding the TS1: the precise motivation is to replace our existing RFA API based application with a new one using the newest API (RDP). As we need to preserve the functionalities, we need to fetch the split (corporate action) info. In the old app, we used the relevant info returned in TS1 monthly data. As it is impossible with RDP interday data because the data structure has changed, we are looking for the alternative. Thus the need for a complete list of relevant fields.
Our new application is a standard Windows console /Windows Service app.
Thanks

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.