NOW IN PUBLIC BETA — 5 PROP FIRMS ENCODED

Stop failing
prop firm challenges
you should have passed.

TradeTrove is the compliance-first strategy library for prop firm algo traders. Walk-forward backtested bots, pre-checked against every firm’s actual rulebook, exported as production-ready cAlgo code in one click.

Live walk-forward run

DE40 ORB v2 · The5ers HSC · 2025-07 → 2026-04

Out-of-sample ROI
+21.7%
TRAINTEST
Trades
89
Max DD
4.8%
Profit Factor
1.41
Sharpe
1.87
Rulebooks encoded
T
The5ers
F
FTMO
F
FundingPips
F
FundedNext
A
Alpha Capital
E
E8 Funding
A
Apex Trader
T
Tradeify
B
Blueberry Funded
T
Topstep
M
MyFundedFutures
C
CryptoFundTrader
T
The5ers
F
FTMO
F
FundingPips
F
FundedNext
A
Alpha Capital
E
E8 Funding
A
Apex Trader
T
Tradeify
B
Blueberry Funded
T
Topstep
M
MyFundedFutures
C
CryptoFundTrader
0
Prop firms mapped
0
Rules encoded
0
Strategies stress-tested
0%
Avg. WFO pass rate
The problem

Why 73% of prop traders fail.

Most don't fail because their strategy is bad. They fail because the challenge rules trip them up in ways no backtest would show.

01

Every firm's rules are different

FTMO bans HFT and tick scalping. FundingPips bans copy-trading. The5ers has unique HSC scaling rules. FundedNext has its own consistency math. You usually find out about each rule only after you've broken it.

02

Your backtest is lying to you

Optimizers curve-fit to historical data. 95% of strategies that pass a vanilla backtest fail live. Walk-forward is the only antidote — and almost no retail tool implements it correctly.

03

Generic EA generators output code you can't ship

StrategyQuant makes a bot. FTMO terminates it on day 7 for violating an undocumented rule. You're left debugging someone else's C# at 2am while another $100 challenge dies.

How it works

Six tools, one workflow.

Everything you need to go from strategy idea to funded account, with compliance and risk baked in at every step.

Walk-Forward Tested

Every strategy ships with a clean train/test split. We only publish out-of-sample numbers — no in-sample optimization theater.

Per-Firm Compliance

Each strategy is pre-checked against every encoded rulebook. See pass/warn/fail for your firm before you download.

cAlgo Code Export

Production-ready .cs files for cTrader. Your risk %, account size, and firm-specific kill-switches baked in at download time.

Compliance Checker

Paste any bot. Get a static-analysis verdict against the firm's rulebook in 200ms. Share the result with a link.

5 Prop Firm Rulebooks

FTMO, The5ers, FundingPips, FundedNext, Alpha Capital — every rule encoded, sourced, and dated.

Challenge Tracker

Log your funded account. Live distance to daily-DD, overall-DD, and profit target — refreshed each render.

Live demo

See it run. Right here. Right now.

Pick a prop firm. Pick a strategy. Watch TradeTrove walk-forward it, stress-test it against the rulebook, and compile the cAlgo bot.

Fetch data
Walk-forward
The5ers rules
Export cAlgo

Walk-forward equity curve

DE40 NY Opening Range Breakout · DAX40 · 13-17 UTC

Out-of-sample
+21.7%
TRAINTEST
Results
Trades89
Win rate29.2%
Profit factor1.41
Max DD (OOS)4.8%
Final equity$12,170
The5ers verdictPASS

Running compliance checks…

Daily DD < 5%
Total DD < 10%
Profit ≥ 8%
Ready to ship: de40_orb_bot.cs · 482 lines · The5ers-compliant
Compliant code export

Ship production-ready bots. Not fragile scripts.

Every export includes firm-specific kill-switches, news-window filters, lot sizing respecting the daily DD, and a GetFitness override so you can re-optimize on the cTrader Optimizer without curve-fitting.

  • cAlgo (C#) export — MT5 (MQL5) on the roadmap
  • Firm-specific daily DD circuit breaker
  • Built-in news blackout windows
  • Phase-1-aware GetFitness override
  • Clean, readable, commented — not generated gibberish
de40_orb_v2.cs
// Auto-generated by TradeTrove v1.0
// Strategy: DE40 ORB v2 | Firm: The5ers HSC | Risk: 1.00%
// Rulebook hash: 0x7a3f...b21c (2026-04-16)

"color:#ff3d8a">using cAlgo.API;

[Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
"color:#ff3d8a">public "color:#ff3d8a">class DE40OpeningRangeBreakoutV2 : Robot
{
    [Parameter("Risk Per Trade (%)", DefaultValue = 1.0)]
    "color:#ff3d8a">public "color:#ff3d8a">double RiskPercent { get; set; }

    [Parameter("Daily DD Limit (%)", DefaultValue = 3.0)]
    "color:#ff3d8a">public "color:#ff3d8a">double DailyDdLimit { get; set; }

    // ── TradeTrove-injected: The5ers HSC compliance ──
    "color:#ff3d8a">private const "color:#ff3d8a">double MAX_DAILY_DD = 5.0;   // Firm rule
    "color:#ff3d8a">private const "color:#ff3d8a">double MAX_TOTAL_DD = 10.0;  // Firm rule
    "color:#ff3d8a">private const "color:#ff3d8a">int    NEWS_BLACKOUT_MIN = 5;

    "color:#ff3d8a">protected "color:#ff3d8a">override "color:#ff3d8a">void "color:#00f0ff">OnBar()
    {
        "color:#ff3d8a">if (ExceedsDailyDd() || InNewsWindow()) "color:#ff3d8a">return;

        "color:#ff3d8a">var bar = Bars.LastBar;
        "color:#ff3d8a">if (bar.Close > _rangeHigh && ChecksPass())
        {
            "color:#00f0ff">PlaceLimitOrder(TradeType.Buy, SymbolName,
                ComputeVolume(), _rangeHigh,
                "DE40_ORB_V2", _slPips, _tpPips, _expiry);
        }
    }

    // Phase-1-aware custom fitness "color:#ff3d8a">for optimizer re-runs
    "color:#ff3d8a">protected "color:#ff3d8a">override "color:#ff3d8a">double "color:#00f0ff">GetFitness(GetFitnessArgs args)
    {
        "color:#ff3d8a">if (args.MaxEquityDrawdownPercentages >= 8.0) "color:#ff3d8a">return 0.0;
        "color:#ff3d8a">if (args.TotalTrades < 40) "color:#ff3d8a">return 0.0;
        "color:#ff3d8a">if (args.ProfitFactor < 1.15) "color:#ff3d8a">return 0.0;
        "color:#ff3d8a">return args.NetProfit / args.MaxEquityDrawdownPercentages;
    }
}
5 prop firms encoded

Every rulebook. Versioned. No surprises.

We read the terms of service so you don't have to. Each firm's exact rules are encoded as structured data, versioned with sources, and replayed in every walk-forward simulation. More firms added monthly.

T

The5ers

High Stakes Challenge

Verified
Profit target
8%
Max daily DD
5%
Max total DD
10%
Account sizes
$5k / $10k / $20k+
Full Algo
14 rules
F

FTMO

Challenge → Verification → Funded

Verified
Profit target
10% / 5%
Max daily DD
5%
Max total DD
10%
Account sizes
$10k / $25k / $50k+
Restricted
21 rules

No latency arb, no tick scalping, no HFT

F

FundingPips

1-Step / 2-Step Evaluation

Verified
Profit target
10%
Max daily DD
4%
Max total DD
6%
Account sizes
$5k / $10k / $25k+
Restricted
18 rules

External copy trading banned

F

FundedNext

Stellar / Evaluation

Verified
Profit target
10% / 5%
Max daily DD
5%
Max total DD
10%
Account sizes
$6k / $15k / $25k+
Full Algo
16 rules
A

Alpha Capital

1-Step / Direct Funding

Verified
Profit target
10%
Max daily DD
4%
Max total DD
6%
Account sizes
$10k / $25k / $50k+
Full Algo
15 rules
E

E8 Funding

E8 Evaluation / Track

Soon
Profit target
8% / 5%
Max daily DD
5%
Max total DD
8%
Account sizes
$25k / $50k / $100k+
Restricted
19 rules

Correlated P&L across accounts = termination

A

Apex Trader

Futures Evaluation

Soon
Profit target
$1.5k-$20k
Max daily DD
Trailing
Max total DD
Trailing
Account sizes
$25k / $50k / $100k+
Full Algo
22 rules

Futures-focused; trailing DD is unique

T

Tradeify

Futures Sim → Live

Soon
Profit target
$1.5k-$9k
Max daily DD
$1.25k-$4.5k
Max total DD
$1.5k-$9k
Account sizes
$25k / $50k / $100k+
Restricted
17 rules
B

Blueberry Funded

2-Step

Soon
Profit target
8% / 5%
Max daily DD
5%
Max total DD
10%
Account sizes
$10k / $25k / $50k+
Full Algo
13 rules
T

Topstep

Trading Combine

Soon
Profit target
$3k-$9k
Max daily DD
$1k-$3k
Max total DD
$2k-$4.5k
Account sizes
$50k / $100k / $150k
Restricted
20 rules
M

MyFundedFutures

Starter / Expert / Milestone

Soon
Profit target
$3k-$9k
Max daily DD
Trailing
Max total DD
Trailing
Account sizes
$50k / $100k / $150k
Full Algo
18 rules
C

CryptoFundTrader

Crypto-native eval

Soon
Profit target
10%
Max daily DD
5%
Max total DD
10%
Account sizes
$10k / $25k / $50k+
Full Algo
12 rules
What traders say

Built by a trader, for traders.

No affiliates. No fake reviews. Real users, verified funded accounts.

Spent $400 failing FTMO three times on a strategy my own backtest said was solid. TradeTrove's simulation would have caught the daily DD breach on day 14. Passed on attempt four.

MT
Marcus T.
Funded at FTMO $100k

The cAlgo code export actually compiles and runs. I've bought 6 other 'strategy generators' and spent hours fixing their output. This is the first one I haven't had to rewrite.

PS
Priya S.
The5ers HSC trader

The walk-forward split is the thing nobody else does right. My curve-fit strategies looked brilliant until I ran them through TradeTrove's out-of-sample windows. Saved me from three bad ideas.

LK
Leon K.
Algo dev, ex-prop
Pricing

Pays for itself in one saved challenge.

Prop firm challenges cost $100–$500 each. Most traders fail 3–4 before passing. TradeTrove is the cheapest risk reduction in the stack.

Solo

For the challenge grinder

$39/mo

Billed annually — save $118

  • Every encoded rulebook (currently 5)
  • Every backtested strategy (currently 3)
  • cAlgo (.cs) code export
  • Compliance checker — paste any bot, get the verdict
  • Challenge tracker — daily DD, overall DD, profit target
  • Public verdict share links
  • Email support
Most popular

Pro

For the serious algo trader

$76/mo

Billed annually — save $278

  • Everything in Solo
  • Early access to new strategies (1+ added monthly)
  • Priority email support — 24h response
  • Direct Discord line to the founder
  • Trade log feed
  • Telegram alerts (coming soon)

Studio

For teams + prop firms

$239/mo

Billed annually — save $718

  • Everything in Pro
  • Custom rulebook authoring for your firm
  • White-label deployment
  • Co-marketing opportunities
  • Dedicated Slack channel

14-day free trial. No card required. Cancel anytime.

FAQ

Questions we get constantly.

Yes. Every strategy is pre-checked against each firm's encoded rulebook before you download. The5ers, FundedNext, and Alpha Capital allow EAs fully; FTMO and FundingPips allow algos with restrictions (no HFT, no martingale, no copy-trading). Each strategy page shows you the per-firm verdict before you commit.

StrategyQuant generates strategies with no awareness of prop firm rules — you'll pass their backtest but blow up your real challenge. TradeTrove ships strategies that already passed firm-specific compliance checks, plus a separate compliance checker where you can paste any bot and audit it against the rulebook before paying for a challenge.

All published strategies are walk-forward tested on 2–3 years of M5 bar data from a tick-accurate broker feed (Dukascopy). 70% train / 30% test split — only the test-period numbers are shown on each strategy card. Commission modeled at $30 per million USD volume, spread at 1 pip (DE40, NAS100) or 2 pips (XAUUSD). If a strategy doesn't survive out-of-sample, it doesn't ship.

Yes — for cTrader. Click download on any strategy and you get a ready-to-compile .cs file with your account size, risk %, and firm-specific kill-switches baked in. Drop it into cAlgo, hit build, attach. MT5 (.mq5) export is on the roadmap.

Yes. The Pro and Studio tiers include a commercial license — publish on cTrader Algo Store or sell direct. The only restriction is that you can't redistribute the encoded rulebook database itself.

Each rulebook page shows a versioned 'as of' date and a list of the firm's official sources. When a firm publishes a change, the rulebook is updated and any pre-built strategy verdicts are re-checked. Major changes get a banner on the affected strategy.

No. The compliance checker analyzes pasted code in-memory and never writes it to disk. Public share links carry the code in the URL itself — there's no server-side copy to leak.

Stop paying the retry tax.

Your next prop firm challenge should be your last. 14-day free trial. No card. Compliant code in your inbox tonight.