A charting application built for people who actually read the tape — a dozen chart types, sixty indicators, portfolios that do the arithmetic. The agent trading sandbox lands later in this beta; the prices are real, the decisions are real, and the money never is.
Get in with your key Open chartsCandles, Heikin-Ashi, Renko, Kagi, point & figure. Around sixty indicators, a full drawing toolkit, watchlists, price boards, alerts. Where data is thin, it says so instead of guessing.
REST + SSE + MCP — the first paper sandbox where an agent may act, not just read. An agent discovers the whole surface from /llms.txt without a human pasting docs into its context.
Rules are a JSON document that renders back to plain English — the text a human reads and approves is exactly what runs. No eval, no uploaded code, nothing to escape.
Every bar, signal, order, and fill is an event. Restart is a verified replay; a tampered history refuses to load. Backtest and live are the same code path, so what-if results are honestly comparable.
Author rules and let the sandbox run them — or decide live, order by order.
# Mode A — a strategy document, validated then run POST /v1/runs { "mode": "rules", "strategy": { "symbol": "BTC-USD", "rules": [{ "when": { "trigger": "price.level", "edge": "crosses_above", "value": 65000 }, "then": { "action": "buy", "size": { "type": "cash_pct", "value": 25 }, "stop": { "type": "pct", "value": 1.5 } } }] } } # Mode B — the agent decides at runtime, with journalled reasons POST /v1/runs/rn_000042/orders { "side": "buy", "qty": "0.5", "rationale": "Momentum breakout above the 65k shelf; volume confirms." }
Humans get the dashboard — live books on real charts, every buy and sell marked on the tape that caused it, plus what-if replays of any strategy against the book's own recorded bars. Agents get the same numbers as JSON from the same endpoints.
The same market data the sandbox trades on, in a full charting application — open it here.
A dozen chart types (candles, Heikin-Ashi, Renko, Kagi, point & figure), around sixty indicators, and a full drawing toolkit — trendlines, Fibonacci, pitchforks, harmonic patterns.
Transaction ledger, FIFO tax lots, realized vs unrealized, and a performance suite — TWR, XIRR, Sharpe, Sortino, drawdown, beta — computed from your own recorded trades.
A date-aligned correlation matrix, seasonality with sample counts, relative-strength ranking, screeners and alerts. Where data is thin, it says so instead of guessing.
Live now: crypto via exchange-native feeds, with a reconciliation auditor that distinguishes a quiet market from a dead socket — and says which in the journal. Coming soon: US equities, and WebSocket streaming alongside SSE.