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

TR.TotalReturn1YrCrossAsset timeseries PYTHON

How can I get the TR.TotalReturn1YrCrossAsset timeseries for a given instrument for given dates?


For example I would like to get the 'TR.TotalReturn1YrCrossAsset' timeseries for 'IBCD.DE' starting from 15-09-2022 till 20-02-2023

eikon-data-apipython#technology#content
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
20 0 1 3

I think this can be done using the following code:


ek.get_data('IBCD.DE', 
            ['TR.TotalReturn1Yr.Date','TR.TotalReturn1Yr'], 
            parameters={"Frq": "D",'SDate':'2022-09-15', 'EDate':'2023-02-17'})


Can you confirm this solution @jason.ramchandani01 ?

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 @siddharth.marya ,

I confirm that ek.get_data() can provide expected data.

You can also use same function from refinitv-data lib which was release beginning 2023:

r = rd.get_data('IBCD.DE',
                ['TR.TotalReturn1Yr.Date', 'TR.TotalReturn1Yr'],
                parameters={"Frq": "D", 'SDate': '2022-09-15', 'EDate': '2023-02-17'})


Thanks. What is really not useful is that even though the data code 'TR.TotalReturn1Yr' returns the expected value, it is not to be found in the data item browser. I literally found it via trial and error.

@siddharth.marya So the Total Return Fields are all available in the Data Item Browser - see below (make sure All Items is selected:

1676917688800.png

I hope this can help.

1676917688800.png (453.8 KiB)
Show more comments

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.