The alpaca.data.requests module provides specialized request objects used to query various types of stock market data through the Alpaca Data API. Instead of passing raw parameters to data client methods, you instantiate these request classes to define the scope of your query (e.g., specific symbols, time ranges, or frequency).
Available request types include:
StockBarsRequest: For requesting historical bar/OHLCV data.StockQuotesRequest: For requesting historical quote data.StockTradesRequest: For requesting historical trade data.StockLatestQuoteRequest: For requesting the most recent quote.StockLatestTradeRequest: For requesting the most recent trade.StockSnapshotRequest: For requesting a snapshot containing the latest trade, quote, and bar data.MostActivesRequest: For requesting a list of the most active stocks.MarketMoversRequest: For requesting market movers (gainers, losers, etc.).