Recursive use of the get_timeseries() function in python.
For a deeper look into our Eikon Data API, look into:
Overview | Quickstart | Documentation | Downloads | Tutorials | Articles
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 time for ric in instruments: ek.get_timeseries(...) time.sleep(0.3)