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

Eikon Data API not returning data

Hello,

I have problem with accessing some data via Eikon Data API (explained in https://developers.refinitiv.com/en/api-catalog/eikon/eikon-data-api), which I use via R wrapper called eikonapir (https://github.com/ahmedmohamedali/eikonapir).

For some of the RICs calling get_data returns actual data, e.g. get_data('EUR=','ASK'):

Instrument ASK

1 EUR= 1.1842

but for other it return no data at all, e.g. get_data('MCU0','ASK'):

Instrument ASK

1 MCU0 <NA>

Do you know what can be cause of such behaviour and how can we fix it? I thought it may be due to license (MCU0 RIC is under other PE as it is data from LME market), but in normal Quote window in Eikon it works fine.

Regards,

eikoneikon-data-apirefinitiv-dataplatform-eikonworkspaceworkspace-data-apidata
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.

@mikolaj.stelmach01

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 reply that best answers your question. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

-AHS

Upvotes
Accepted
32.2k 40 11 20

Hello @mikolaj.stelmach01 ,

Please try:

df,err = ek.get_data(['MCU0'],'TR.ASKPRICE')
df

For me the result is:

ask.gif

In order to find the fields that are available via Data Eikon API for instrument, please use Refinitiv Wirkspace or Eikon's tool Data Item Browser, by typing "Data Item Browser" in the search bar. Please see the result of my DIB search:

dib.gif

I hope this helps



ask.gif (1.8 KiB)
dib.gif (162.3 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
39.4k 77 11 27

@mikolaj.stelmach01

If you're not subscribing to real-time data from LME, I assume in the Quote app in Eikon you see delayed data (with the RIC "/MCU0"). You can tell by checking the RIC name in the top left corner of the Quote app window and by the value of DSPLY_NAME field, which for delayed RIC should have "/d" at the end: "CASH MCU/d".
Could you try retrieving delayed RIC using get_data method:

get_data('/MCU0','ASK')
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
3 0 1 3

Hello,

the combination of the two worked: get_data('/MCU0','TR.AskPrice') - thank you!

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
39.4k 77 11 27

@mikolaj.stelmach01

If get_data('/MCU0','TR.AskPrice') works, then I would expect get_data('MCU0','TR.AskPrice') - without the "/" in front of the RIC to work as well.
It may be helpful to explain the difference between ASK and TR.AskPrice, and between MCU0 and /MCU0. TR.AskPrice returns ask quote from the historical daily timeseries. During London hours you'll be getting yesterday's close ask with TR.AskPrice. Since TR.AskPrice comes from historical daily timeseries, it returns the same value for real-time and delayed RICs. I.e. get_data('MCU0','TR.AskPrice') and get_data('/MCU0','TR.AskPrice') should always return the same result. ASK comes from streaming datafeed. With real-time RIC MCU0 it returns the latest ask quote, with delayed RIC /MCU0 it returns the latest quote delayed 30 minutes (i.e. the value of the latest quote as of 30 minutes ago). Most exchanges provide delayed data free of per user exchange fees, but there are exceptions. As far as I can see London Metal Exchange is one of those exchanges that makes even delayed data fee liable. Unless you pay the exchange fee, you may not be able to retrieve ASK for /MCU0. But this should apply to the Quote app in Eikon as well. If you're able to view /MCU0 in a Quote app in Eikon, you should also be able to retrieve ASK value using get_data('/MCU0','ASK').

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.