Say I am trying to get daily historical prices for two RICs; AAPL.O and MSFT.O. If I submit a request with a list of RICS, does that count as one request or two requests towards the daily limit?
# List of RICs (counts as one or two requests?)
prices = ek.get_timeseries(["AAPL.O", "MSFT.O"], start_date="1990-01-01", end_date="2000-01-01", interval='daily')
# Two separate RICs (counts as two requests!)
aapl = ek.get_timeseries(["AAPL.O", ], start_date="1990-01-01", end_date="2000-01-01", interval='daily')
msft = ek.get_timeseries(["MSFT.O"], start_date="1990-01-01", end_date="2000-01-01", interval='daily')
I actually have a very long list of symbols (few thousand) and would like to limit the number of requests to stay under the daily limit.