question

Upvotes
Accepted
3 0 1 2

Can I confirm Eikon real time feeds using RDP

Is it possible to check whether an Eikon user has permissions to real-time data for various RICs/exchanges programatically either by direct calls to RDP or by using a Desktop session via an RDP library?

The use case would be an Eikon user can run a quick app on their desktop alongside Eikon and test their access to real-time pricing across different markets in one go.

eikonrdp-apirefinitiv-data-platform
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.

Upvote
Accepted
39.4k 77 11 27

It's possible using RDP library desktop session. E.g.

import refinitiv.dataplatform as rdp 
rdp.open_desktop_session(your_app_key) 
sp = rdp.StreamingPrices(
     universe = ['TRI.N','LKOH.MM','PEUP.PA','VOD.L','0001.HK','XXX.XX'],
      fields   = ['CF_NAME'] ) 
sp.open() 
df = sp.get_snapshot() 
display(df) 
sp.close()

As you can see from the output below, if the value in column 'CF_NAME' is <NA>, then the RIC either does not exist or the user is not entitled for it.

Instrument CF_NAME
0 TRI.N THOMSON REUTERS
1 LKOH.MM <NA>
2 PEUP.PA PEUGEOT
3 VOD.L VODAFONE GROUP
4 0001.HK <NA>
5 XXX.XX <NA>

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
22.5k 59 14 21

Hi @panos.roussos,

The Eikon and RDP are not connected and hence a user's credentials on Eikon are not valid on RDP. They will need to have an RDP account to invoke any RDP REST services.

The streaming API option has been recently added in the Eikon data API, and it might be possible to do this in a python application. I am not sure if this streaming functionality has been added to the RDP python library for the desktop session.

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.