Everything you need to get started and go live.
B13 TradePilot is a Chrome extension. Download it below and load it manually โ Chrome Web Store submission is in progress.
b13-tradepilot/ folderchrome://extensionsb13-tradepilot/ folderPaper trading requires no account, no API keys, and no internet connection. You get a $100,000 virtual balance immediately. All order types are supported: market, limit, stop, stop-limit, take profit.
The sim uses TradingView's real-time price data. Your positions, PnL, and trade history are stored in your browser locally.
After purchasing, you'll receive a license key in the format B13-XXXXXX-XXXXXX-XXXXXX-XXXXXX.
Requires Starter tier or above. You need a Binance Futures account with USDT-M enabled.
Requires Starter tier or above. Works with Bybit Unified Trading Account.
Requires Pro tier or above. Works with Tradovate and any Apex-linked Tradovate account.
Requires Elite tier. The desktop bridge app runs locally and relays orders from TradePilot to any MT4/MT5 broker.
localhost:7842B13_Bridge.mq5 EA on your MT5 terminalThe risk engine enforces your trading rules automatically. Configure in TradePilot โ RISK tab.
Enable in TradePilot โ RISK โ Apex Mode. Enter your account starting balance and max trailing drawdown amount.
The tracker shows: current trailing floor, high water mark, lock point, and distance to pass or fail โ all updated in real time on every tick.
Every trade is auto-logged. Access the full journal from the โก icon โ JOURNAL tab, or click the journal button in the trading panel.
Requires Elite tier or above. The trade copier mirrors orders from a master broker to one or more slave brokers automatically.
Copier also works with webhook orders. If the master broker receives a webhook alert, the copier fires on all slaves too.
POST http://localhost:7842/configure (requires auth token){
"copier": {
"enabled": true,
"masters": ["binance"],
"slaves": ["bybit", "okx"],
"mult": 1.0
}
}
Send trading signals from TradingView (or any HTTP client) directly to Bunker13's cloud servers โ no desktop app or bridge required. Requires a Pro or Elite subscription.
POST https://bunker13-capital.vercel.app/api/webhook/tradingview
{
"secret": "your-webhook-secret",
"broker": "binance",
"symbol": "BTCUSDT",
"direction": "buy",
"type": "market",
"size": 0.01,
"leverage": 10,
"stopLoss": 62000,
"takeProfit": 68000
}
secret โ required โ your webhook secret from Trade Copier โ Webhook tabbroker โ required โ binance, bybit, okx, tradovate, metatrader, tradestation, tastytradesymbol โ required โ e.g. BTCUSDT, ETHUSDT, NQH5direction โ required โ buy or selltype โ market (default), limit, stopsize โ required โ position size in base currency unitsleverage โ leverage multiplier (default: 1)stopLoss / takeProfit โ optional price levelslimitPrice โ required for limit ordersaction โ set to close or close_all instead of placing a new orderhttps://bunker13-capital.vercel.app/api/webhook/tradingview{
"secret": "your-webhook-secret",
"broker": "binance",
"symbol": "{{ticker}}",
"direction": "{{strategy.order.action}}",
"type": "market",
"size": {{strategy.order.contracts}}
}
{ "ok": true, "results": [{ "broker": "binance", "ok": true, "orderId": "123456" }] }
{
"secret": "your-webhook-secret",
"broker": "binance",
"symbol": "BTCUSDT",
"action": "close"
}
Use "action": "close_all" to flatten every open position on the broker at once.
Send a paper order to verify your secret and broker connection before going live.
Requires Starter tier or above. Works with OKX V5 Unified Account.
Requires Elite tier. Trade binary outcome prediction markets (Yes/No shares) through Polymarket's CLOB API.
Polymarket orders use the CLOB (Central Limit Order Book). You can buy Yes or No shares on any active market. Position size is in USDC.
Webhook example:
{
"secret": "your-secret",
"broker": "polymarket",
"symbol": "0x1234...",
"direction": "buy",
"type": "market",
"size": 50
}
symbol is the Polymarket condition ID (found in the market URL). direction is buy (Yes) or sell (No).
Requires Pro tier or above. Connects to ProjectX for funded futures trading (Topstep, Earn2Trade, etc.).
ProjectX integration respects your prop firm's rules. The risk engine automatically enforces daily loss limits and max position sizes from your account settings. If you're close to your daily limit, TradePilot will warn before placing orders.
Google Sign-In is optional โ email + license key always works. To enable Google Sign-In:
GOOGLE_OAUTH.md in your Bunker13 download for step-by-step instructionsTo free up a slot, go to your Account page โ active machines โ click Deactivate on the one you no longer use.