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

Best Answer

  • @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.