Home › Resources › Prop Firms That Allow Automated Trading
Futures Prop Firms That Allow Automated Trading (2026) — Full Rules Breakdown
The first question every futures trader asks before building an automated strategy: will the firm let me run it? The short answer is yes — most major futures prop firms allow automated trading. The longer answer requires knowing exactly what "automated" means to each firm's compliance team, because the line between permitted algo trading and rule-violating HFT is not always obvious from the terms of service alone.
This guide breaks down what each major firm actually permits, what is universally banned, and how the most common TradingView-based automation stack stays firmly on the right side of every rule.
What "Automated Trading" Means to Prop Firms
Prop firms use "automated trading" to cover a wide range of approaches, and their rules treat them differently.
Semi-automated (TradingView alerts → broker)
A Pine Script strategy generates a signal on a closed bar. TradingView fires a webhook to TradersPost or PickMyTrade. That service places the order at your broker (Tradovate, Rithmic, NinjaTrader). A human is watching but not clicking every trade. This is the most common setup among retail futures algo traders and is explicitly permitted at every major prop firm covered below.
Fully automated (API bot, no human in loop)
A program connects directly to the broker API, monitors market data, and places orders entirely without human oversight. This is also permitted at most futures prop firms — with one critical carve-out: it cannot cross into high-frequency territory.
What firms universally ban
- High-frequency trading (HFT): strategies that place orders in sub-second intervals, exploiting microsecond price discrepancies
- Co-location / proximity hosting: running servers physically near exchange matching engines to gain speed advantages
- Latency arbitrage: trading based on price feed delays between the prop firm's data and the actual exchange
- Exploiting firm systems: any strategy that profits from the firm's own pricing, execution lag, or simulated fill model rather than real market dynamics
Futures Prop Firms That Explicitly Allow Automated Trading
The following table summarizes the automation policy for the five most widely used futures prop firms as of mid-2026. Always verify with the firm's current terms before trading a funded account.
| Firm | Automated Allowed | Key Restrictions | Supported Brokers |
|---|---|---|---|
| Apex Trader Funding | Yes | No HFT, no co-location | Tradovate, NinjaTrader, Rithmic |
| Topstep | Yes | No HFT, must use a Topstep-supported broker | Tradovate, NinjaTrader, Rithmic |
| TradeDay | Yes | No HFT, no latency arbitrage | Tradovate, Rithmic |
| MyFundedFutures | Yes | No HFT, no co-location | Tradovate, NinjaTrader, Rithmic |
| FTMO (futures accounts) | Yes | No HFT, no arbitrage, no copy trading across accounts | cTrader, MetaTrader 5 |
Apex and Topstep are the two most automation-friendly firms in practice, largely because they have the most documentation and community resources around automated setups. TradeDay and MyFundedFutures follow the same permissive approach with slightly less publicly documented guidance.
How Traders Automate TradingView Strategies on Prop Firm Accounts
The dominant stack for Pine Script traders at prop firms looks like this:
- Pine Script strategy in TradingView — the strategy runs on your chart, generates buy/sell signals based on your indicator logic, and fires TradingView webhook alerts when conditions are met
- TradersPost or PickMyTrade — receives the webhook, translates it into a brokerage order, handles position sizing, and manages the bracket (stop + target)
- Tradovate (for Apex) or Rithmic/NinjaTrader (for Topstep) — the brokerage account connected to your prop firm evaluation or funded account
The entire round trip from bar-close signal to order submission typically takes 1–3 seconds — orders of magnitude slower than anything that would qualify as HFT. This setup is well within every firm's permitted automation guidelines.
For a step-by-step walkthrough of connecting Pine Script alerts to a prop firm account, see How to Automate a TradingView Strategy with TradersPost.
What Automation Is NOT Allowed
Understanding the ban list in plain terms prevents expensive mistakes on funded accounts.
High-frequency trading
HFT means placing a large number of orders in extremely short time windows — think hundreds of orders per second, exploiting sub-millisecond price movements. Any strategy operating on 1-minute candles or higher, with entries confirmed on bar close, is nowhere near this category. Even a strategy that takes 20 trades per day is not HFT.
Co-location and proximity hosting
Running your trading server in the same data center as an exchange's matching engine to gain microsecond speed advantages. This is physically impossible to do accidentally — it requires contracting dedicated co-location services from exchange operators. No retail trader using TradingView + TradersPost is doing this.
Latency arbitrage
Exploiting the fact that the prop firm's price feed lags behind the real exchange. For example, if your data source shows the current price 50ms before the firm's system catches up, and you trade on that gap repeatedly. This targets the firm's infrastructure rather than real market dynamics and is banned everywhere.
Excessive order-to-fill ratios
Some firms flag accounts that place a very high number of orders relative to actual fills — a pattern associated with algorithmic order book manipulation. Most standard strategies never generate this pattern, but if your script places and immediately cancels limit orders at high frequency as part of its logic, review the firm's terms carefully.
Copy trading across accounts at the same firm
Most firms prohibit running identical trades simultaneously across multiple accounts at the same firm, especially during evaluations. Running the same strategy on accounts at different firms is generally permitted — check each firm's specific multi-account rules.
The Safest Automation Setup for Prop Firms
Prop firm compliance risk from automation is nearly zero when the strategy follows these design principles:
- Bar-close entries only: using
barstate.isconfirmedin Pine Script ensures the signal only fires after the candle closes, not on a live tick. This eliminates any appearance of intrabar scalping. - Session filter: the script only trades during regular session hours and goes flat during major news events (FOMC, NFP, CPI). This prevents the order volume spikes that can trigger compliance reviews.
- Kill switch: a simple input toggle that disables all new entries. This lets you pause the automation instantly if you need to intervene without modifying the strategy code.
- Hard daily loss limit: a coded maximum daily loss that halts trading for the rest of the session if hit. This protects against the trailing drawdown threshold on Apex-style evals, and demonstrates systematic risk management to the firm.
- Fixed contract sizing: no dynamic position scaling based on account equity during the eval. Consistent, predictable position size is the single easiest way to avoid a compliance flag.
All Pine Script strategies available in our strategy library and snippets collection are built around these principles by default.
Prop firm-compliant Pine Script strategies.
Each script includes a kill switch, session filter, bar-close entries, and a PDF guide covering the Apex and Topstep rule set. Instant email delivery.
View PlansOne-time payment · Instant delivery · No subscription
Frequently Asked Questions
Do I need to tell the prop firm I'm using automated trading?
No disclosure is required at most firms — Apex, Topstep, TradeDay, and MyFundedFutures do not require traders to notify them that they are using an automated strategy. The rules apply to all accounts equally. If you are unsure about your specific setup, contacting the firm's support before running live is always the safest approach.
Can my automated strategy get me banned even if it's not HFT?
A well-designed indicator-based strategy on 5-minute or higher charts carries essentially zero compliance risk. Where traders get into trouble is (1) running a strategy that exploits the firm's simulated fills rather than real market dynamics, (2) placing abnormal volumes of orders per session, or (3) running copy trades across multiple accounts at the same firm. None of these apply to a standard Pine Script setup.
Is TradersPost approved by prop firms?
TradersPost is a third-party order routing service, not something prop firms certify or ban by name. What matters is whether the orders routed through TradersPost comply with the firm's trading rules. Since TradersPost simply forwards your strategy's signals as market or limit orders at normal speed, it is compliant everywhere.
What about EAs (Expert Advisors) on MetaTrader?
For forex-style prop firms like FTMO that support MetaTrader 5, EAs are permitted under the same framework: no HFT, no arbitrage, no tick scalping. Futures firms generally do not use MetaTrader — they use NinjaTrader, Tradovate, or Rithmic — so EAs are not relevant for Apex, Topstep, or similar.