Hi, the following requests seems to return inaccurate data (I am using a paper account, should that make a difference?):
curl --location ‘https://data.alpaca.markets/v2/stocks/bars?symbols=STCN&start=2023-06-17T0%3A00%3A00Z&end=2023-06-25T0%3A00%3A00Z&timeframe=1Day&adjustment=split&limit=10000’
–header ‘Apca-Api-Key-Id: INSERT_ID_HERE’
–header ‘Apca-Api-Secret-Key: INSERT_SECRET_HERE’
Some of the days in the response have incorrect close prices, for example on 2023-06-21 it reports STCN had a close price of 0.8294, when really it was 7.74:
{
"t": "2023-06-21T04:00:00Z",
"o": 0.87,
"h": 0.9,
"l": 0.82,
"c": 0.8294,
"v": 183342,
"n": 447,
"vw": 0.850068
}