My algo has been collecting the Alpaca get_last_trade price every minute to make trade choices. After comparing that data to twelvedata.com time_series close I’ve discovered the Alpaca data is delayed and has missing points. Check out the following graph:
Similiar issue - last trade shows that active symbol as TQQQ last trade was 5 minutes ago and not refreshing. Updating every minute too.
self.alpaca.get_last_trade(‘TQQQ’):
Trade({ 'cond1': 0,
'cond2': 0,
'cond3': 0,
'cond4': 0,
'exchange': 15,
'price': 109.25,
'size': 154,
'timestamp': 1619103337389148773})
Trade({ 'cond1': 0,
'cond2': 0,
'cond3': 0,
'cond4': 0,
'exchange': 15,
'price': 109.25,
'size': 154,
'timestamp': 1619103337389148773})
Trade({ 'cond1': 0,
'cond2': 0,
'cond3': 0,
'cond4': 0,
'exchange': 15,
'price': 109.25,
'size': 154,
'timestamp': 1619103337389148773})
Trade({ 'cond1': 0,
'cond2': 0,
'cond3': 0,
'cond4': 0,
'exchange': 15,
'price': 109.25,
'size': 154,
'timestamp': 1619103337389148773})
The get_last_trade
method references a v1 data API. The v1 data APIs only look at trades and quotes that were placed on the IEX exchange (notice exchange 15 in all the trades above). That is why it seems the data is ‘old’ or not being refreshed. There are generally newer trades and quotes occurring on other exchanges and trading venues.
The v1 data, along with the v2 ‘Free’ data, is really provided as an inexpensive way to test and debug ones program. To get full market data one would need to subscribe to the “Unlimited” data plan and use the v2 APIs. Unfortunately, as of the time this is being written, there isn’t a good v2 API to use to fetch the latest trade or quote. This is planned within the next several weeks so stay tuned.
As an aside, users are generally reporting latencies of 150-300ms between the participant_timestamp (ie when a trade was executed) and when they receive the data using v2 data.
Logs above using v2 API and with “Unlimited” plan. For get_barset()
same issue.
Looks like only the Daily (1D) timeframe has updated data.
The get_barset
method in the python SDK uses the bars API behind the scenes and references v1 data. The only APIs which reference the v2 data are those explicitly called out in the v2 documentation. That is why, even though one may be signed up for the “Unlimited” data plan, unless one uses the v2 APIs the data will only be IEX data. That is why get_barset
appears to not update as often as expected.
If using the python SDK, take a look at the read_me section in gethub. That has a bit more explanation of which methods to use to fetch v2 data and therefore get full market coverage if subscribed to the “Unlimited” data plan.
Yeah, looks like need makes some updates. Thanks, will check!