Can I connect TradingView alerts to Tradier through PickMyTrade?
Yes. PickMyTrade acts as the bridge between TradingView webhooks and Tradier's REST API, so when your Pine Script alert fires, PickMyTrade translates it into an order on your Tradier account. You authenticate once via your Tradier API access token, map your TradingView symbol to the Tradier symbol, and the alerts flow through automatically. This works for stocks, ETFs, and single-leg options on Tradier.
Does Tradier have a native TradingView integration?
Tradier is not one of the brokers you can trade with directly from the TradingView chart (unlike Tradovate or OANDA). To go from TradingView to Tradier you need a webhook bridge such as PickMyTrade, Option Alpha, or your own code hitting the Tradier API. That is the main reason most retail algo traders on r/algotrading use a third-party connector for Tradier.
How do I get a Tradier API access token for automation?
Log in at developer.tradier.com with your Tradier Brokerage credentials, create an application, and you will get a production access token tied to your live account. You can also generate a sandbox token for paper testing. Paste that token into PickMyTrade (or whatever bridge you use) and it can place orders on your behalf.
Can I automate options trades on Tradier with TradingView alerts?
Yes - this is one of the most common Tradier use cases. You send a webhook with the underlying symbol, strike, expiration, and side (buy/sell, call/put), and PickMyTrade builds the OCC option symbol and routes it to Tradier. Single-leg options (long calls, long puts, covered calls, cash-secured puts) are well supported; multi-leg spreads depend on the bridge you use.
Does Tradier support multi-leg options orders via API?
Yes. The Tradier API accepts multi-leg option orders (vertical spreads, iron condors, strangles, etc.) through the /v1/accounts/{id}/orders endpoint with class=multileg. Support for multi-leg webhook alerts varies by bridge - confirm with PickMyTrade support whether your specific spread type is supported before going live.
Is there a Tradier paper trading / sandbox for testing automation?
Yes. Tradier offers a free sandbox environment (sandbox.tradier.com) with delayed data and simulated fills. It is ideal for testing your TradingView webhook logic end-to-end before you point the bridge at your live token. Sandbox order fills are not perfectly realistic, but the API surface is identical to production.
What rate limits does the Tradier API have?
Tradier enforces per-endpoint rate limits documented in their API reference - roughly 60 requests/minute for market data and trading on the standard plan, with higher limits available on paid data tiers. For typical TradingView-alert-driven automation this is more than enough, but polling-heavy strategies may hit the cap. PickMyTrade is designed to stay well under those limits.
Does PickMyTrade charge extra to automate Tradier?
PickMyTrade is a flat $50/month that includes all supported brokers, so adding Tradier does not cost extra. You still pay Tradier's own commissions on the trades themselves ($0.35 per option contract or $10/month flat on the Pro plan). There are no per-trade fees charged by PickMyTrade.
Can I run the same TradingView strategy on Tradier and another broker at the same time?
Yes. In PickMyTrade you can point one alert at multiple broker connections, so the same Pine Script signal can fire into Tradier for options and into Tradovate for futures, for example. This is a common setup for traders who hedge equity options positions with futures.
What order types does the Tradier API support for automation?
Tradier's API supports market, limit, stop, stop-limit, and OCO/OTO bracket orders for stocks and options. Time-in-force options include day, GTC, pre-market, and post-market where allowed. Most TradingView alerts use market or limit, both of which route cleanly through PickMyTrade.
Does Tradier require OAuth for third-party apps?
Tradier supports OAuth 2.0 for production third-party applications, but individual automators usually just generate a personal access token from developer.tradier.com and paste it into their bridge. PickMyTrade supports both flows - the personal token flow is faster to set up for a single user.
How long does a Tradier API access token last?
Personal access tokens from developer.tradier.com do not expire on a fixed schedule but can be revoked by you or by Tradier at any time. If you regenerate the token, you must update it in PickMyTrade or your automation stops placing orders. Treat the token like a password and store it securely.
Can I automate 0DTE options on Tradier?
Yes, provided your account is approved for the correct options level. 0DTE SPX/SPY trades are popular with Tradier users because of the flat $10/month Pro pricing, which removes per-contract drag when you scale. Make sure your alert fires with enough time to fill before expiry close.
Does Tradier support fractional shares via API?
No. As of 2026 Tradier does not offer fractional-share trading via its API or web platform - it is whole-share only for equities. If your TradingView strategy sizes by dollar amount, PickMyTrade will round down to the nearest whole share when routing to Tradier.
Can I backtest on Tradier before automating?
Tradier itself does not have a built-in backtester; traders typically backtest in TradingView, Option Alpha, or QuantConnect and then route live signals to Tradier. The sandbox environment lets you dry-run the live-execution path, which is the important step before flipping to production.
What happens if my Tradier automation sends a duplicate alert?
Tradier's API will happily accept duplicate orders unless you dedupe them upstream. PickMyTrade includes an idempotency / duplicate-alert filter so a noisy TradingView alert does not fire the same order twice within a short window. If you are writing your own code, use the client_order_id field to prevent duplicates.
Does Tradier support bracket (OCO) orders from webhooks?
Yes. Tradier's API accepts OTOCO (one-triggers-one-cancels-other) for stocks and options, so you can send an entry with an attached take-profit and stop-loss in a single payload. PickMyTrade exposes this so your TradingView alert can include TP/SL levels directly.
Is Tradier good for Python algo trading?
Yes - r/algotrading frequently recommends Tradier for Python-based options algos because the REST API is clean, sandbox is free, and the Pro flat-fee plan makes high-frequency options testing affordable. Official SDKs are community-maintained, but the raw API is simple enough that most devs just use `requests`.
Can I paper trade my TradingView strategy on Tradier before going live?
Yes - generate a sandbox token at developer.tradier.com and use that token in PickMyTrade for paper mode. Alerts still flow from TradingView, but fills are simulated against sandbox quotes. Once you are confident, swap in your production token to go live.
Does Tradier's API stream real-time quotes for automation?
Yes - Tradier offers a streaming API (HTTP streaming + WebSocket) for quotes, trades, and account events. Real-time streaming for equities and options requires a paid market-data subscription; delayed streaming is free. For alert-driven automation, polling or the account-events stream is usually enough.