Every prop firm advertises "up to 90% profit split" and "fee refunded with first payout." Almost none of them publish the actual trading profit you need to generate before you net the fee back. This page does that math, with the formulas every firm review on TFH uses internally.
- Break-even profit — the trading PnL you must generate before the first payout refunds your fee. Formula:
fee ÷ (profit_split / 100). - R-multiple — break-even profit divided by the dollar value of the maximum drawdown. R < 1 = favorable risk math (you can lose more than you need to make). R > 1 = hostile.
- Day count — trading days to break even at 1% daily account growth, capped by the firm's daily-loss limit. A realistic floor, not a guarantee.
Why this math is necessary
Prop-firm marketing emphasizes the headline split ("90%!") and the refundability of the challenge fee ("100% refund on first payout!"). Both are real. Neither answers the question a buyer actually has: how much profit do I have to trade up to before this whole arrangement turns positive?
The structure of the prop-firm product matters. You pay a non-trivial fee upfront. You pass an evaluation (or skip it, on Instant products). You trade a funded account. You request a payout. The firm pays you your share — and refunds the fee on the first payout if the rules say so. The break-even profit is the amount you must generate on the funded side before the math nets to zero.
That number is not on any firm's marketing page. It varies by tier, by split, and by whether the fee is refundable. The math is simple; the firms just don't want it surfaced because it makes the cost of failure concrete.
The formulas
Break-even profit
break_even_profit = fee_usd / (profit_split_pct / 100)
At a 90% split on a $489 FTMO $100K Challenge, you need $543 of trading profit before the first payout pays the fee back. At an 80% split on the same fee, it's $611. The split matters more than most traders realize.
If the fee is non-refundable (Stellar Instant, FXIFY Instant, Topstep activation fee), the formula doesn't apply — the fee is sunk cost. In that case, "break-even" is the first profitable trade.
R-multiple
R = break_even_profit / (account_size_usd × (max_loss_pct / 100))
The R-multiple compares the profit you need against the loss you're allowed. Lower is better.
- R = 0.1 means the dollar value of the firm's maximum drawdown allowance is 10× the break-even profit. A single losing day at half-max-DD doesn't close your account — generous risk math.
- R = 0.5 is the borderline. Half of your maximum loss budget equals your entire break-even profit.
- R = 1.0+ is hostile. Your maximum allowed loss is equal to or less than the profit you need to generate. One bad trade ends the arrangement before you can recover.
Example: FundedNext Stellar 2-Step $100K at 95% split with 10% max DD. Break-even = $549.99 / 0.95 = $579. Max loss budget = $100,000 × 0.10 = $10,000. R = 579 / 10,000 = 0.058. Very favorable — you can absorb significant drawdown before the break-even math turns against you.
Counter-example: FXIFY Lightning $5K at 80% split with 10% trailing max DD. Break-even = $59 / 0.80 = $74. Max loss budget = $5,000 × 0.10 = $500. R = 74 / 500 = 0.15. Still favorable, but notice the absolute loss budget ($500) is small. A 4% daily DD cap on a $5K account = $200 — one bad day removes 40% of your loss buffer.
Day count
days = ceil( ln(1 + break_even_profit / account_size) / ln(1 + daily_growth_rate) )
where daily_growth_rate = min(0.01, daily_loss_pct / 100)
This projects how many trading days it takes to compound to the break-even profit at 1% daily account growth, capped by the firm's daily-loss limit (which sets a realistic worst-case for daily PnL — a green day capped at the daily-loss size is the symmetric upside).
The day count is intentionally conservative. Real trading isn't linear compounding — but the number gives you a floor: if a firm says "earn payouts on day 1", the day-count tells you whether the math actually permits it.
Worked example — FundedNext Stellar 2-Step $100K
| Fee | $549.99 |
| Profit split | 95% |
| Account size | $100,000 |
| Daily DD limit | 5% |
| Max DD limit | 10% static |
| Break-even profit | $549.99 / 0.95 = $579 |
| Max loss budget | $100,000 × 0.10 = $10,000 |
| R-multiple | $579 / $10,000 = 0.058 (favorable) |
| Realistic days @ 1%/day | 1 day (because $579 is just 0.58% of $100K) |
Read this as: at a 95% split, the Stellar 2-Step $100K product asks you to generate $579 of trading PnL before you net the fee back; you have $10,000 of dollar drawdown to work with; a single 1% green day suffices to clear break-even. That doesn't mean you'll do it. It means the structural math doesn't fight you.
What the math doesn't capture
This page is about cost, not probability. The math above tells you how much trading profit you need to break even; it says nothing about how likely you are to generate that profit, pass the evaluation, or take the first payout without tripping a rule.
Three factors that distort the cost picture in real life:
- Pass-rate friction. If a firm publishes (or third parties estimate) a 16% Combine pass rate (Topstep's 2025 figure), then the "average buyer" pays for 6.25 attempts to fund a single account. Multiply the fee by that ratio for a true-cost-of-funded-account figure. Most CFD firms don't publish pass rates, but estimates cluster in 8–14% across the major firms.
- News-window and consistency rules. FundedNext retains 40% of news-window PnL. Some firms enforce a 50%-of-total-profit cap on a single day. These distort the math: high-variance trades count less toward the break-even profit than their nominal value.
- Trailing vs static drawdown. A trailing max-DD tightens as you profit, which means the R-multiple in the table is the start-of-evaluation figure. Halfway through a profitable challenge, your effective R rises. The static-DD products (FTMO Challenge, FundedNext Stellar) preserve the math; trailing-DD products (FXIFY Lightning, Topstep, MFF) compress it.
How to use these numbers
Three takeaways for picking a challenge:
- If the R-multiple is above 0.5, the structural math is hostile. You can probably pass — but if you do, you'll be one bad day away from giving back the fee. Pick a larger account size or a different firm.
- Compare the break-even profit, not the fee. A $489 FTMO $100K Challenge at an 80% split has a higher break-even ($611) than a $549.99 FundedNext Stellar 2-Step $100K Challenge at 95% ($579). The cheaper-looking firm is actually the more expensive one in the math.
- Day count is a sanity check, not a forecast. If a firm advertises "day 1 payouts" on a tier whose day-count math says 8 days minimum, the marketing is selling something the rules can't deliver. Cross-reference before purchasing.
Every firm review on TFH includes a True Cost table per tier. The numbers come from the computeTrueCost() helper in our codebase — same formula across all firms, no editorial fudging. See the FTMO review or FundedNext review for the tables in context.