When I attempt to use get_last_quote or get_last_trade for the “TQQQ” stock symbol, the latest data is from 14:33ish on Friday (11/13). When I try to circumvent this issue and use the historical data feed, it too stops at around this time on Friday. If I use other stock symbols (including “SQQQ”), there are no issues with the historical data. Any thoughts as to why an individual stock symbol would stop responding to updates? Thanks,
Hmm. As of 3:06 PM ET 2020-11-16 I’m able to fetch all the TQQ data.
What code are you using? Sometimes the Polygon data limits the amount of data it sends in a single API call.
Thanks for the reply. Are you able to pull the TQQQ last trade data using get_last_trade() for TQQQ?
To specifically answer your question, when I use the following code:
import alpaca_trade_api as tradeapi
API_KEY =
API_SECRET_KEY =
ALPACA_API_URL = “https://paper-api.alpaca.markets”
alpaca = tradeapi.REST(API_KEY, API_SECRET_KEY, ALPACA_API_URL, api_version=‘v2’)
alpaca.get_last_trade(“TQQQ”)
I get this output (which is from Friday):
Trade({ ‘cond1’: 14,
‘cond2’: 37,
‘cond3’: 41,
‘cond4’: 0,
‘exchange’: 3,
‘price’: 143.43,
‘size’: 40,
‘timestamp’: 1605296014171000000})
Also its not just an issue for me with paper trading as the same happens in Live trading as well.
Thanks!
Ah, you are not using Polygon data. The get_last_trade
method uses IEX data which is sometimes incomplete.
Using get_last_trade
, I also don’t see any data for 11-16.
It’s best to use Polygon data for just this reason.
Ok, thanks for the feedback. I’m using a fairly complex (by my standards) program which started as a template on Udemy. While there are references in the program to Polygon, I’ve suspected for some time that I’m not actually tapping into the Polygon data. With that in mind, do you happen to have a simple template for getting last_trade out of Polygon, or example code that you could point me toward? The program I’ve built is pretty reliant on having accurate last_trade data, so any assistance in pointing me in the right direction would be much appreciated. Thanks!
You should be able to replace all instances of alpaca.get_last_trade("TQQQ")
with alpaca.polygon.last_trade("TQQQ")
. The result of both is a single Trade object. The difference is the latter will fetch data from Polygon and not the default provider IEX.
One thing to note is Polygon data is only available if you have a ‘live’ account. You can use it in both paper and live, but for licensing reasons, users must have a live account.
Wow, that’s extremely helpful. The entire time I had the infrastructure set up to handle Polygon data and I just wasn’t using it. Thanks for all of your help. That solved my problem!