...How is this error caused and how can we prevent this error from happening?
Recursive use of the get_timeseries() function in python.
@marketintelligence Please see details on API limits here. In short:
You will need to introduce a pause so for example you can use the following in between API calls - single threaded only.
import timefor ric in instruments: ek.get_timeseries(...) time.sleep(0.3)