I was trying to test out the new Alpaca-py Module but it seems that the module takes forever to run, like asking 1 day’s worth historical data has been loading for 10 mins versus the old API which can run through about 15 tickers within the same frame since 1970s (Daily). Am I doing something wrong or is it something else?
from alpaca.data.requests import StockLatestQuoteRequest, StockTradesRequest
from datetime import datetime
client = StockHistoricalDataClient("LOLOLOLOL","I believe Secrets are real")
multisymbol_request_params = StockTradesRequest(symbol_or_symbols=["SPY"], start = datetime(2022, 12, 29))
latest_multisymbol_quotes = client.get_stock_trades(multisymbol_request_params)
print(latest_multisymbol_quotes)```