question

Upvotes
Accepted
1 0 0 0

How to extract DV01 from 10 year US Treasury Yield curve using Eikon API? The data is on a page of REPS Valuation.

1723554977873.png

eikon-data-apirefinitiv-dataplatform-eikon#content
1723554977873.png (230.6 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.

1 Answer

· Write an Answer
Upvotes
Accepted
15.5k 33 5 10

Hi @Yihan.Luo ,

Using Data Item browser with RIC 91282CLF6=, the DV01 field can be found as below

1723606368973.png

here's the code and its result

import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
          universe = ['91282CLF6='],
          fields = ['TR.DV01Analytics'] 
)
display(df)

1723606432068.png


1723606368973.png (107.1 KiB)
1723606432068.png (2.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.

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.