Comparison
Apex vs MyFundedFutures: Which Is Better for Pine Script Algo Trading?
Two of the more automation-friendly futures prop firms in the space — but the drawdown math and the eval structure genuinely differ once you look past the marketing. Here's the rule-by-rule breakdown for a Pine Script strategy running on TradingView.
Rule-by-rule comparison — 50k accounts
| Rule | Apex Trader Funding 50k | MyFundedFutures 50k |
|---|---|---|
| Profit target | $3,000 | $3,000 |
| Max drawdown | $2,500 | $2,000 |
| Drawdown type | Intraday trailing | StaticWIN |
| Daily loss limit | None, at any account size.WIN | $1,250 |
| Consistency rule (eval) | None during evaluation. | None — explicit, no cap on single-day contribution. |
| Min trading days | 1 day | NoneWIN |
| Automation allowed | Allowed during the evaluation. | Explicitly permitted on both the evaluation and the live funded account —…WIN |
| Payout split | New EOD/Intraday Trailing Drawdown accounts: 100% payout split.WIN | Not published |
| Best for | Fast, high-conviction strategies that bank a defined target | Strategies that want funded-account automation and a fixed floor |
What the key rule differences mean for Pine Scripts
Drawdown structure: static vs intraday trailing
MyFundedFutures runs a static drawdown — the floor is set once at account open and never moves again, regardless of how much the account grows. On a 50k account, that's a fixed $2,000 line the whole way through the evaluation. Apex's floor is intraday trailing: it ratchets up in real time with every new equity high the account touches during the session, including unrealized gains that later reverse. A trade that peaks $500 in the green and closes flat has already tightened Apex's floor by $500 with nothing banked.
For a script, static is the easier number to hard-code — one constant, checked once. Intraday trailing needs the strategy to track its own running peak and recompute the floor continuously, which matters most for strategies that let winners run rather than taking a fixed profit.
Daily loss limit: Apex's edge, MyFundedFutures' guardrail
Apex has no daily loss limit at any account size during the evaluation — a script runs the full session without a circuit breaker. MyFundedFutures enforces $1,250 on a 50k account, so a strategy needs a daily P&L tracker that halts new entries once that floor is close. At $125 risk per trade, that's roughly 10 losing trades of runway before the limit bites — workable, but it's a piece of logic Apex doesn't require.
Minimum trading days: both let you move fast
Apex requires 1 trading day. MyFundedFutures requires none at all — the source states no minimum trading days requirement, repeatedly and explicitly. Neither firm forces a strategy to grind through a multi-week waiting period once the profit target and drawdown conditions are satisfied.
Consistency rule: neither firm caps a single day on the eval
This is worth calling out because it's easy to find outdated claims that both firms enforce a 30% best-day cap. MyFundedFutures doesn't — the source is explicit that there's no cap on how much of your total profit a single day can represent. Apex's 30–50% cap is real, but it only starts counting on the funded account; it has no bearing on the evaluation itself. For a strategy that occasionally books an oversized single-day win, neither firm's eval will flag it.
Automation policy: MyFundedFutures covers both phases
Apex allows full automation during the evaluation but restricts commercial/resold automation on the live Performance Account — a script can still drive the chart and alerts, but the execution side typically shifts to manual confirmation once funded. MyFundedFutures explicitly permits automation on both the evaluation and the funded account, which is one of the more automation-friendly funded-account policies among major firms.
Payout split
Apex's current EOD and Intraday Trailing Drawdown product lines pay a straightforward 100% split; the legacy Performance Account line pays a standard split with a required safety net on the first three payouts. MyFundedFutures doesn't publish a payout split figure on its main account-tier page — if payout economics are the deciding factor, confirm the current number directly with MyFundedFutures before choosing.
Which firm should you choose?
You want a published payout split and a fast eval
- No daily loss limit — bot runs freely all session
- 1-day minimum, single-phase evaluation
- A stated, straightforward payout split
- Strategy takes fixed profit targets rather than trailing winners
You want funded-account automation and a fixed floor
- Static drawdown — floor never moves, easiest to size around
- No minimum trading days requirement
- Automation explicitly permitted on the funded account too
- No consistency rule at any stage
Pine Script automation stack for both firms
Both Apex and MyFundedFutures support a TradingView → TradersPost → broker pipeline. The Pine Script fires an alert on signal, TradersPost turns that alert into an order, and the order lands on the connected account. The main configuration difference between the two: Apex's script needs a running peak-equity tracker for the trailing floor and no daily-loss variable; MyFundedFutures' script needs a fixed floor constant and a daily P&L halt set a little inside the $1,250 line for buffer.
See the Apex strategy page or MyFundedFutures strategy page for firm-specific sizing notes.