Hi All,
I’m trying to get back into algorithmic trading with Alpaca, and as playing around with the basic version of the API (I am subscribed). In the basic plan description, it says it has 5 years of historical data, yet when I try to query the historical data, it tells me "subscription does not permit querying recent SIP data (see call below). Is there another way I should be querying historical data? Thanks!
var historicalBarsRequest = new HistoricalBarsRequest(symbol, DateTime.UtcNow.AddDays(-30), DateTime.UtcNow, BarTimeFrame.Day);
var historicalBars = await client.ListHistoricalBarsAsync(historicalBarsRequest); - error here.