Tick History - Eikon premium user

hi, is it possible to get tick data through API for FGBL (bund futures), FGBX (BUXL futures), FGBM (BOBL futures) and EURIBOR futures. ( Eikon premium user)

If so what are the limitations, is there an article available explaining the steps, use case.

Thanks.

Best Answer

  • @asli.sahin01 Thanks for your question - so its best to use the Historical Pricing service on RDP - or you can simply use the get_history RD Library function. Data depth is 90 days of tick-level data.

    1698834566373.png

    import refinitiv.data as rd
    rd.open_session()
    df=rd.get_history(universe="FGBLc1", interval="tick", count=2000) #start="2023-09-01",end="2023-10-01",

    df

    1698835121614.png

    There is an example notebooks available in Codebook both at the access layer and also at the content layer:

    Access__Get_History.ipynb

    Content__Historical_Pricing

    Content__Historical_Pricing_Requests_With_Events.ipynb

    Content__Historical_Pricing_Parallel_Requests.ipynb

    Content__Historical_Pricing__Erorr_Management.ipynb


    These are also available in the RD Library examples folder on github.

    I hope this can help.

Answers