How to Pass an Apex Trader Funding Evaluation
Hit the target, stay above the trail, log one trading day — that's the whole rule set. Most traders still fail because of how the trailing threshold behaves in practice, not because the rules are hard.
Apex is the most popular futures prop firm partly because its rule set is short: hit the profit target, don't breach the trailing threshold, log at least 1 trading day, and the account converts to funded. Most traders still fail — not because the rules are complicated, but because the trail behaves differently from a fixed stop-loss budget, and most traders size as if it were one.
1. Pick the right account size
The most common mistake is defaulting to the 50k because it's the cheapest entry point. Its $2,500 trail is proportionally tighter than the 100k's $3,000 trail relative to typical instrument cost — the 100k buys meaningfully more breathing room for close to the same per-contract risk.
| Account | Profit Target | Trailing Drawdown | Typical Monthly Cost* |
|---|---|---|---|
| 25k | $1,500 | $1,500 | ~$147/mo* |
| 50k | $3,000 | $2,500 | ~$167/mo* |
| 100k | $6,000 | $3,000 | ~$207/mo* |
| 150k | $9,000 | $5,000 | ~$297/mo* |
* Monthly cost figures are typical/approximate and not part of Target Filled's reconciled firm data — confirm current pricing directly with Apex.
If the budget allows it, the 100k is the sweet spot for a systematic trader: the trail is loose enough that a normal losing trade doesn't put the account on the edge of the floor, and the cost of a reset isn't crippling if a strategy needs a second attempt.
2. Understand how the trailing threshold actually works
Apex's trail is intraday trailing on the evaluation — it ratchets up with every new intraday equity high, not just at the close of a day. Every dollar of open, unrealized profit that later gets given back tightens the safety net along the way, whether or not that profit was ever locked in.
The practical implication: flatten near a daily profit goal and step away rather than letting unrealized gains sit open, hoping for more.
3. Size contracts to the trail, not the target
With a $2,500 max trail, a reasonable losing-streak budget is roughly a third of that — about $830. At four trades a day with a fixed stop, that's around $200 per trade: a 40-tick stop on MNQ, or roughly a 16-tick stop on MES. A strategy that genuinely needs more room than that either belongs on a larger account or needs a tighter setup.
4. Use a setup that confirms on bar close
The fastest way to fail an Apex eval is entering on a wick that immediately retraces. A strategy that confirms
on close — Pine Script's barstate.isconfirmed guard makes this trivial — removes the "did I actually
get filled at that price?" uncertainty entirely.
5. Automate the entry
The trailing threshold is fundamentally a discipline test, and the most reliable discipline is the kind that can't be overridden mid-session. A Pine Script firing alerts into TradersPost will:
- Take the entry at exactly the price the chart generated the signal at
- Set the bracket order with the predefined stop and target
- Not size up after a losing trade to "make it back"
That third point is where most manual Apex attempts actually fail — a loss looks "obvious" to reverse, size gets doubled, and a normal stop-out collapses the trail. A coded strategy has no impulse to override its own rules.
6. Respect scheduled news
FOMC, NFP, and CPI prints can run well past a stop before a script has any chance to react. An optional news filter — flatten a few minutes ahead of the print, sit out, resume after — costs very little given how low Apex's minimum trading-day bar actually is: sitting out a single session is a rounding error against a 1-day minimum, not a real delay.
7. Plan for the possibility of a reset
Apex allows resetting an evaluation for a fee. Treat a first attempt as calibration rather than a must-pass: if it fails, identify why — the trail, a specific setup, position size — and reset with a tighter rule rather than the same configuration. The cost of a reset is a fraction of the cost of a tilt-driven blown funded account later.