question

Upvotes
Accepted
1 0 0 0

How to get non default view history data from Eikon Data Api

Hi,

How to get non default view history data from Eikon Data Api?

For example, last quote or voyage rate(bbl)
5a0fc6f3-19e4-4d8e-9929-5eedd5c37d9d.png

eikoneikon-data-api
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
11k 22 6 9

@952864047 I don't think this is possible with the Eikon Data API - those fields are from the RHistory COM API (which doesn't really work well with Python). You can see all the fields available via the Eikon Data API using the Data Item Browser or CodeCreator Apps (type DIB or CODECR into Eikon Search bar).

1636109770264.png

For pricing history you can also try the Refinitiv Data Platform Historical Pricing service which is available to Eikon users using the refinitiv.dataplatform libraries (pip install refinitiv.dataplatform) and a desktop session, that has an expanded datamodel compared to say ek.get_timeseries:

import refinitiv.dataplatform as rdp
import datetime
rdp.open_desktop_session('YOUR  APP KEY HERE')
rdp.get_historical_price_summaries('DFRT-ME-CN')

1636110516380.png

So from what I can gather FRGT_RATE1 is Est. % WS, REF_PRICE is $/Barrel and TCE_Rate is TimeChart Equiv. Rate. I think this might have what you need. I hope this can help.


1636109770264.png (291.9 KiB)
1636110516380.png (99.9 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.