Hi Alpaca Staff and @hitoshi,
This is similar to Data.alpaca.markets returns quotes from incorrect dates in the programming forum.
I’m using R’s httr:GET
to request the following URL:
"https://data.alpaca.markets/v1/bars/5Min?symbols=FB,NFLX,AMZN,MSFT&limit=1000&start=2020-02-05T09:30:00-0500&end=2020-02-24T14:45:00-0500"
I’ve also tried the request with the URL encoded form of the request:
"https://data.alpaca.markets/v1/bars/5Min?symbols=FB%2CNFLX%2CAMZN%2CMSFT&limit=1000&start=2020-02-05T09%3A30%3A00-0500&end=2020-02-24T14%3A45%3A00-0500"
However, the data that I get back from either request is for the following date range:
"2020-03-02T09:50:00"
to "2020-03-18T15:55:00"
Any ideas as to what’s going on here?