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

Could you please confirm why the following outputs aren't the same?

Could you please confirm why the following outputs aren't the same?

Using Eikon Data API in Python:

RIC = 'AUMG0620P='
ek.get_data(RIC,"TR.DV01AmountAnalytics(ValuationDate=2022-08-30)")

I get 5.38

Using IPA for bonds

rdp.get_bond_analytics(
universe = [
"AUMG0620P="
],
calculation_params = bond.CalculationParams(
market_data_date="2022-08-30",
),
fields = [
"DV01AmountInDealCcy"]
)

I get 3.68

eikon-data-apipythonrdp-apidatabondsipa
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.

@JoanneCamille.Andes

Hi,

Thank you for your participation in the forum.

Are any of the replies below satisfactory in resolving your query?

If yes please click the 'Accept' text next to the most appropriate reply. This will guide all community members who have a similar question.

Otherwise please post again offering further insight into your 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
5.8k 21 2 6

Hi @JoanneCamille.Andes



These are two different fields:


TR.DV01AmountAnalytics

1661938516801.png

I found this info in the DIB.




DV01AmountInDealCcy:


In the API Playground, you will find the field in question:


1661938516833.png



You can find info about this API endpoint (which locates Refinitiv’s database called ‘IPA’ – ‘Instrument Pricing Analytics’) in the ‘Reference’ tab, which sends you to this guide, which defines (in ‘Data’ and ‘IPA Financial Contracts - Analytics Guide’ on the left after signing in) this ‘DV01AmountInDealCcy’ field as ‘The sensitivity of the market value to a 1% parallel shift in the yield curve computed in the currency of the deal.’.




If the above is not enough, I would think that the difference in the returned number may very vell be due to calculation methodology discrepancies. This would be a content question, and for such questions (about calculation methodologies), please raise a ticket at https://my.refinitiv.com/.




1661938516801.png (83.4 KiB)
1661938516833.png (77.0 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.

DV01 is a fixed income metric. I get that the two fields are named differently and that I am using Eikon Data API and IPA and comparing the output of two different fields. However, given that the underlying terms and conditions are the same and I am using the same date, the value of DV01 should be the same and it doesn’t matter the field from where I am retrieving.


What I am trying to say is that 2+2 = 4 if I am using Eikon Data API or IPA. One of those fields is incorrect, there should be only one answer and the same output. Could you please confirm which one is correct and advise on how to get the correct information using IPA?

Hi @JoanneCamille.Andes , this is very much a content question; please raise a ticket at https://my.refinitiv.com/. Experts on this portal will be able to answer you. This current Forum is for technical API QandAs.

Upvote
78.9k 250 52 74

@JoanneCamille.Andes

Those fields are from different endpoints. The TR.DV01AmountAnalytics field is from the Data Grid service while the DV01AmountInDealCcy field is from the Instrument Pricing Analytics service.

I found the definitions of those fields.

1661937793020.png

You can use the Data Item Browser to check the definitions of the fields retrieved by the get_data method.

DV01AmountInDealCcy represents the sensitivity of the market value to a 1bp parallel shift in the yield curve. It is computed as [DV01Bp x NotionalAmount / 100]. The value is expressed in the deal currency.

Therefore, you need to contact the Eikon support team to verify how the TR.DV01AmountAnalytics field is calculated. Then, contact the Instrument Pricing Analytics - Refinitiv Data Platform support team to verify how the DV01AmountInDealCcy is calculated.

1661938174699.png

Finally, ask them if the TR.DV01AmountAnalytics and DV01AmountInDealCcy fields represent the same value.


1661937793020.png (34.2 KiB)
1661938174699.png (12.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.

DV01 is a fixed income metric. I get that the two fields are named differently and that I am using Eikon Data API and IPA and comparing the output of two different fields. However, given that the underlying terms and conditions are the same and I am using the same date, the value of DV01 should be the same and it doesn’t matter the field from where I am retrieving.

What I am trying to say is that 2+2 = 4 if I am using Eikon Data API or IPA. One of those fields is incorrect, there should be only one answer and the same output. Could you please confirm which one is correct and advise on how to get the correct information using IPA?

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.