BTC/USDT94,238.42 1.84%ETH/USDT3,182.54 0.22%SOL/USDT184.92 3.41%BNB/USDT642.18 0.74%DOGE/USDT0.3842 1.12%AVAX/USDT38.51 2.28%ARB/USDT1.14 0.48%LINK/USDT22.84 1.18%MATIC/USDT0.5820 0.84%BTC-PERP94,251 1.92%ETH-PERP3,184.2 0.18%FUNDING_BTC0.0142 0.00%
BTC/USDT94,238.42 1.84%ETH/USDT3,182.54 0.22%SOL/USDT184.92 3.41%BNB/USDT642.18 0.74%DOGE/USDT0.3842 1.12%AVAX/USDT38.51 2.28%ARB/USDT1.14 0.48%LINK/USDT22.84 1.18%MATIC/USDT0.5820 0.84%BTC-PERP94,251 1.92%ETH-PERP3,184.2 0.18%FUNDING_BTC0.0142 0.00%
—:—:— EST/98 founding seats left

A sentence.A trading bot.

Describe a strategy in plain English. Project Y writes the code, backtests it on years of data, and ships it to your exchange — paper or live, in about eight minutes.

⏎ submit·shift+⏎ newline$299/year · 30-day refund
strategy.tswriting…
generated · 0.0s
Sharpe0.00Max DD0.0%Win rate0%Trades0
anon_btc_chad shipped BTC mean-reversion v332s ago

[01] · Watch it happen

You scroll. It writes.

>Long BTC when RSI(14) drops below 30, take profit when RSI crosses back above 70. Risk a 5% hard stop, max 10% of capital per trade.

strategy.ts
writing · 0%
export function strategy(ctx) {
// BTC/USDT · spot · long-only
const rsi = ctx.indicators.rsi(14);
if (rsi < 30 && !ctx.position) {
ctx.buy({
sizePct: 10,
stopLossPct: 5,
});
} else if (rsi > 70 && ctx.position) {
ctx.sell();
}
}
scroll — your sentence is the spec

[02] · Proof, not promises

Scroll to run the backtest.

RSI mean-revert · BTC/USDT · 2025 backtest · simulated fills

Total return+0.0%
$10,000

Win rate

0%

Trades

0

Max drawdown

0.0%

Every strategy runs against years of history before it touches a market — fees and slippage simulated on every fill. Past performance never guarantees future results.

[03] · The desk

Your bots live here.

Every bot. Every fill. Live.live
BTC mean-reversion
BTC/USDT · running
+2.41%
ETH trend-follow
ETH/USDT · running
+0.84%
SOL DCA
SOL/USDT · paper
-0.62%
Range BTC perp
BTC-PERP · running
+5.17%
Total equity$12,743.75 +1.95%
Rules the bot can’t break.
Max position
10% of equity
Daily loss cap
-3%
Open bots
4 / 15
Drawdown
-1.2%
Stop-loss, loss caps, circuit breakers — enforced by the engine, outside bot code. Try the switch →
It traded while you slept.
02:47 AMLONGBTC/USDT@67,431.50
03:12 AMSELLETH/USDT@3,418.22
0LIVE bots per account.
Paper bots: unlimited.
BinanceBybit
Spot + futures. Trade-only keys — withdrawals impossible.
[04] · Templates

Or skip the blank page.

Drop in a proven pattern, then iterate by chatting: “but only on weekends”, “add a 2% trailing stop”.

[05] · One seat, forever

$299. Done.

$299per year

Locked for as long as you stay. Pro is $588/year — founding members save $289 every year, not just the first.

2of 100
  • Unlimited backtests
  • 5 LIVE bots + unlimited paper bots
  • Binance + Bybit, spot or futures
  • $6 of AI per month (~175 strategy generations)
  • AI diagrams, narratives, suggestions
  • Stop-loss, loss caps, kill switch, CB
  • Real-time P&L dashboard
  • Email + in-app notifications
  • 50% off every future tier, forever
  • Founding Member badge
  • Direct feedback line to the founder
  • 30-day money-back guarantee

2 of 100 seats taken

We're pre-revenue.

Solo founder, bootstrapped, no VC. The first 100 seats fund legal structure, insurance, and the lights staying on.

You're early.

A rate that never rises, direct access to me, first dibs on every feature. Your feedback shapes v1.1.

Downside capped.

30-day refund, no questions. Your API keys stay yours — trade-only, never withdrawable. Leave anytime.

[06] · Straight talk

What this is not.

Not a profit guarantee.

Backtests don't predict the future. Any strategy can lose money live. Start small.

Not custodial.

I never hold your funds. Trade-only API keys — withdrawals are impossible.

Not financial advice.

I build tooling, not recommendations. You evaluate what's right for you.

Not futures for US residents.

Binance/Bybit IP-block US futures. Spot works fine.

Not a scam.

Everything I do is public. Ask anything. I'll answer.

Built in public — 3 months of daily commits, screenshots, decisionsAES-256-GCM key encryption — master secret never touches the web tierGDPR — export all your data, delete your account, any timeAudit log — every trade, AI generation, config change, exportableHonest backtests — fees + slippage simulated, never cherry-picked

Signup → running bot.

average: ~8 minutes

  1. 1

    Pay $299 once

    Stripe checkout, 30-day money back.

  2. 2

    Connect your exchange

    Paste a trade-only API key. Binance · Bybit

  3. 3

    Describe a strategy

    “buy BTC when RSI drops below 30, max 10% per trade”

  4. 4

    Backtest → paper → live

    When you're ready. Not before.

FAQ

Is this safe? My money is at stake.

Your funds stay on Binance/Bybit. The bot uses an API key with trade-only permission (no withdrawals ever). If I get hacked tomorrow, the worst case is someone sees your encrypted key and can't use it without my decryption secret. We have E&O + Cyber liability insurance and a lawyer-reviewed ToS for edge cases.

What AI model does this use?

Claude (Anthropic) — Opus for complex strategy generation, Sonnet for iterative edits. Your strategies never leave the AI pipeline.

What if the bot makes a bad trade?

It will sometimes. That's trading. Your risk controls (stop-loss, daily loss limit, max position size) are enforced by our engine OUTSIDE the bot code, so a buggy strategy can't bypass them. You can also kill-switch all bots instantly.

What exchanges?

Binance (spot + futures) and Bybit (spot + futures). Both support USDT-margined perpetuals with 1-20x leverage. More exchanges in v1.1.

Can I iterate on my strategy?

Yes. Each bot has a "New Version" button that clones it into a fresh chat, AI remembers the context, you refine it, launch the new version alongside the old.

What if I cancel?

Within 30 days: full refund, no questions. After that, cancel any time — you keep access through the year you've already paid for, and you're never charged again. No lock-in, no cancellation fee.

How do I know you won't disappear?

I'm publicly building this in public on Twitter/X. I reply to every DM and email personally. I've committed to a 90-day review with every founding member — if I can't continue, founding members are first to know, and the code is open enough (your API keys are yours) that you can export.

How do I pay?

Stripe, credit/debit card. Crypto payment (USDC on Base) coming post-launch if there's demand.

Get started

Ship your first bot
tonight.

2 of 100 founding seats taken. $299/year — about half of Pro. 30-day money-back.