Is it possible to get the results of the get_data function on a daily basis?

I want to retrieve data as Daily using get_data for the combination of target RIC and Field as follows. To do this, it seems I need to understand how to use parameters, but is there a separate guide for all the cases of parameters?

I couldn't find information about parameters even in the official documentation provided at https://developers.lseg.com/en/api-catalog/eikon/eikon-data-api/documentation#eikon-data-api-usage-and-limits-guideline, so I'm posting this question.


1710390243513.png


Best Answer

  • [Deleted User]
    [Deleted User] Newcomer
    Answer ✓

    Hi @sjh0724,

    I would advise using the new library with get_history:


    import refinitiv.data as rd
    rd.open_session()

    df = rd.get_history(
    universe=['LSEG.L', 'MSFT.O'],
    fields=["BID", "ASK", "TR.Revenue"],
    interval="1Y",
    start="2015-01-01",
    end="2019-10-01")

    df


    Else you may want to use the DIB, and you will see the parameters appear in the field names as you select and specify them - at the bottom right:

    1710401434621.png

Answers

Welcome!

It looks like you're new here. Sign in or register to get started.

Welcome!

It looks like you're new here. Sign in or register to get started.