Can I automate TradingView alerts to a ProjectX-based prop firm account?
Yes. PickMyTrade connects TradingView webhooks to ProjectX-powered accounts (TopstepX and remaining ProjectX prop firm partners) through the ProjectX API. You create a TradingView alert, point the webhook URL at PickMyTrade, and every fired alert is translated into a live order on your ProjectX account in under a second. No Pine-to-broker coding is needed.
How do I connect PickMyTrade to my ProjectX / TopstepX account?
Log in to your prop firm portal (e.g., topstepx.com), open the API section, and generate an API key. Then in your PickMyTrade dashboard add a new connection, select ProjectX / TopstepX, paste the API key plus your prop firm username, and save. The setup wizard walks through it in roughly 3 minutes.
Does ProjectX have its own public API?
Yes — ProjectX exposes a REST API plus WebSocket streams for order placement, account data and market data, authenticated with JWT tokens issued from an API key. Access is typically gated behind a small monthly fee (around $29/month via the dashboard at the time of writing) and has to be enabled by the prop firm for your account.
Does ProjectX support bracket orders through the API?
The in-platform experience supports Position Brackets and Auto-OCO Brackets, but the API integration is more limited — ProjectX does not support server-side bracket orders in the way Tradovate does. PickMyTrade works around this by tracking one SL and one TP per symbol and sending them as separate orders; any new alert in the same direction overwrites the previous SL/TP values.
What is the PickMyTrade webhook flow to ProjectX?
TradingView fires an alert with a JSON payload → PickMyTrade receives it on a unique webhook URL → PickMyTrade validates the payload, applies your risk/position rules, and sends the order to ProjectX over the authenticated API → ProjectX routes the order to the exchange through your prop firm account. Fills and rejections stream back to PickMyTrade in real time.
Can I run Pine Script strategies automatically on ProjectX?
Yes — any TradingView strategy or indicator that can fire an alert can drive ProjectX orders through PickMyTrade. You set 'Alert on order fills' on a strategy (or a custom condition on an indicator), paste the PickMyTrade webhook URL, and every generated signal hits your ProjectX account with your configured contract size, SL and TP.
What futures contracts can I automate on ProjectX via PickMyTrade?
All CME-group futures available on your prop firm plan — the E-minis (ES, NQ, YM, RTY), micros (MES, MNQ, MYM, M2K), energies (CL, NG), metals (GC, SI), grains, and bonds. The contract you can actually trade depends on what your specific prop firm enables (some block certain products around news).
How fast are orders sent from TradingView to ProjectX through PickMyTrade?
End-to-end latency is typically under one second from alert fire to order accepted at the exchange — most of that is TradingView's outbound webhook delay, not ProjectX execution. PickMyTrade itself adds millisecond-level overhead, and ProjectX fills on CME tend to settle well inside 100ms once the order reaches the router.
Can I attach stop loss and take profit to every ProjectX trade?
Yes. In PickMyTrade you can set SL/TP in ticks, points, dollars, or percent, and they are attached automatically to every alert hitting ProjectX. Because ProjectX does not broker-side support full bracket orders, PickMyTrade manages the SL/TP as working orders and updates them as the position changes.
Can I automate across multiple ProjectX accounts at once?
Yes. PickMyTrade lets you fire a single TradingView alert into multiple ProjectX accounts (for example, several TopstepX combines plus a funded account) with per-account contract sizing and risk rules. This is especially useful for prop traders running evaluations and funded accounts in parallel.
Will automation cause a prop firm rule violation on ProjectX?
Automation itself is allowed by most ProjectX-using prop firms, but your bot still has to respect the rules — daily loss limits, trailing drawdown, max contract size, news-trading windows and consistency rules. PickMyTrade's risk panel lets you set hard caps on contracts per alert and daily loss so an alert storm can't blow up an account.
Does ProjectX allow copy trading through the API?
Yes — the ProjectX API exposes per-account order placement, which is enough for third-party copier tools (including PickMyTrade) to mirror signals from a master to follower accounts. Most prop firms require copier users to disclose it and forbid copying across accounts owned by different people for arbitrage reasons.
Can I run a scalping bot on ProjectX via PickMyTrade?
Technically yes — ProjectX accepts rapid market and limit orders — but most ProjectX prop firms (Topstep, TickTickTrader, Tradeify, etc.) have anti-HFT / consistency rules that flag very high order rates or scalps held only a few seconds. Review the specific firm's rulebook before deploying a high-frequency scalper.
Can I automate EOD (end of day) flattening on ProjectX?
Yes, both natively and via PickMyTrade. ProjectX supports auto-liquidation and profit/loss-based lockouts in its risk settings, and PickMyTrade has a Flatten/Close-All action you can schedule from TradingView alerts or a time rule — useful for respecting the daily close-out windows on TopstepX and other ProjectX firms.
Can I reverse a position with a single TradingView alert on ProjectX?
Yes. PickMyTrade supports a 'reverse' action that closes the existing position and opens the opposite side in one webhook. On ProjectX this is handled as two sequential orders (flatten + new entry) because ProjectX doesn't expose a single reversal primitive on the API.
Can I use position sizing based on account balance in ProjectX automation?
Yes. PickMyTrade lets you express contract size as fixed, per-alert variable, or as a function of account balance, and it reads your ProjectX account balance over the API so sizing can scale with drawdown or growth. This keeps bots inside the TopstepX scaling plan without manual babysitting.
Do I need programming knowledge to automate ProjectX?
No — PickMyTrade is fully no-code. You configure the strategy, contract, SL, TP and sizing in the dashboard, TradingView fires the alert, and PickMyTrade does the translation to ProjectX's API. Developers who want more control can alternatively use the raw ProjectX API (project-x-py SDK, REST, WebSocket) to build custom bots.
Can PickMyTrade send trailing stops to ProjectX?
Yes. PickMyTrade supports trailing stop logic and will update the ProjectX stop order as price moves. Because ProjectX does not fully broker-side trail over the API, PickMyTrade computes the trail server-side and replaces the stop order on ProjectX whenever the trail crosses a tick.
Does PickMyTrade support the TopstepX flavor of ProjectX specifically?
Yes. TopstepX is the Topstep-branded build of ProjectX, and PickMyTrade treats it as a first-class broker on pickmytrade.io. You pick TopstepX in the connections list, paste the ProjectX API key issued from the TopstepX dashboard, and your TradingView alerts route straight into your Combine or Express Funded Account.
What happens to my automation if ProjectX or my prop firm has an outage?
Orders will fail at the broker leg and PickMyTrade will surface the rejection with the ProjectX error code. Because TopstepX / ProjectX had notable outages in late 2025, a good practice is to define a max-retry and a max-daily-loss in PickMyTrade so a reconnection burst can't flood the exchange once ProjectX comes back online.
Can I run multiple TradingView strategies into one ProjectX account?
Yes. Each TradingView alert carries its own payload, and PickMyTrade can route several strategies into the same ProjectX account with per-strategy tags and risk rules. Just make sure the combined contract size on any symbol stays inside the scaling plan your prop firm allows.
Is 2FA required for ProjectX API automation?
ProjectX wraps the dashboard with standard authentication and many prop firms require 2FA on the portal, but the API itself authenticates via an API key and short-lived JWT token rather than a second factor. Treat the API key as a credential, never commit it to code, rotate it periodically, and revoke it from the ProjectX settings if your automation tool is retired.
Can I backtest a TradingView strategy before automating it to ProjectX?
Yes — run the backtest inside TradingView's Strategy Tester as usual, then attach the PickMyTrade webhook to the same strategy and switch 'Alert on order fills' on. You can also paper-trade first by pointing the webhook at a TopstepX evaluation account rather than a funded one.