Hi All,
I am trying to extract prices using the following screept.
import refinitiv.data as rd
rd.get_history(
list_RIC,
fields=['BID','HIGH_1', 'LOW_1','MID_PRICE','ASK','ASK_HIGH_1', 'ASK_LOW_1'],
start = '2022-12-31',
end = '2023-06-30',
interval="daily"
)
The language used is Python.
the library is refinitiv-data 1.4.0
I have a list of about four thousand RICs.
However, when I run it I get blocked, surely I exceed the limits allowed by the API, but I can't figure out what they are.
Do you have an idea to handle this and avoid getting stuck every time?
Thanks