RSearch: extract curves data

Hello,

I'm trying to extract curves data from Eikon by using Rsearch and DEX2. The data I want to extract are in the attached picture.

Can you tell me how to retrieve it (Maturity and Yield) ?

Thank you !

image

Best Answer

  • Alex Putkov.1
    Alex Putkov.1 ✭✭✭✭✭
    Answer ✓

    The yield curve you're looking at is contained in the chain "0#BBEURENEBMK=". You can see this code in the screenshot you included. To view the data structure in this chain type in "0#BBEURENEBMK=" in a Quote app in Eikon and over the mouse pointer over any data elements you're interested in. The tooltip will tell you the RIC and the field name for this data element.
    You can retrieve chain constituents using AdxRtChain object of AdfinX Real-Time library. Then for each constituent you can retrieve maturity code in field "GV_TEXT4", par yield in field "RT_YIELD_1" and zero yield in field "SEC_YLD_1" using AdxRtList object. See this tutorial for using AdxRtList in a custom .NET application and this tutorial for using AdxRtChain object to retrieve chains. The latter tutorial talks about using the object in Excel VBA, but the object can also be used in .NET the same way you'd use AdxRtList. The two COM objects are provided by the same COM library.

Answers