I am new to Alpaca, just starting the prototype.
I run the bars = client.get_stock_bars(request_params) to get the bar data for INTL
The request params:
Create the request, here symbol is INTL, tf is timeframe.Day
request_params = StockBarsRequest(
symbol_or_symbols=symbol,
timeframe=tf,
start=start_date,
end=end_date,
adjustment='all'
)
I got INTL data for May 28 as:
5/28/2025 INTL 24.91 24.9425 24.84 24.8566 1675 40 24.884172
While INTL trade all day around 20.40 ~ 20.60
So why the price is so different?