How to get the 3M USD LIBOR interest rate historical data with Python Eikon API?

I would like o get 3M USD LIBOR interest rate (i think the RIC is USDLIBOR) but I do not know what field and parameter I should enter in the get_data() function. Could anyon point that out to me?

Best Answer

  • Hi @Tulkkas

    If you want to use get_data method, you can try this:

    ek.get_data('USD3MFSR=X',['TR.FIXINGVALUE.date','TR.FIXINGVALUE'],{"Sdate":'2005-01-03', "Edate":'2019-01-03'})

Answers