Hello,
I am trying to retrieve some RICs price tickers from the eikon API like this:
import refinitiv.data as rd
rd.open_session()
eikon_data = rd.get_data(
ric_list,
fields=['BEST_BID1',…]
)
rd.close_session()
This returns live data. How can I retrieve this data as of yesterday? Or as of two days ago?
I would like to be able to retrieve from the API what some RICs were yesterday.
Please let me know, I would be very grateful
Thank you!