From e5938749120726eec6046d08ff2dddec2a014ad8 Mon Sep 17 00:00:00 2001 From: tinkle-community Date: Mon, 6 Jul 2026 15:13:50 +0900 Subject: [PATCH] docs: add Autopilot pipeline and data-source entries to FAQ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two entries the FAQ was missing: the strategy's four-stage decision funnel (Claw402 ranking universe → Signal Lab + cost/liq verification → 15m candle timing → confidence/risk-reward gated sizing, plus the hard risk-control layer outside the AI) and a breakdown of every data source with which parts are paid per call from the AI fee wallet. --- web/src/data/faqData.ts | 43 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/web/src/data/faqData.ts b/web/src/data/faqData.ts index f9309bb6..2a6eb024 100644 --- a/web/src/data/faqData.ts +++ b/web/src/data/faqData.ts @@ -256,6 +256,49 @@ export const faqCategories: FAQCategory[] = [ title: 'Trading & Execution', icon: TrendingUp, items: [ + { + id: 'autopilot-pipeline', + question: 'How does the Autopilot strategy work, step by step?', + blocks: [ + { + type: 'p', + text: 'Every cycle runs the same four-stage funnel — each stage can reject a candidate, and only setups that survive all four get traded:', + }, + { + type: 'steps', + items: [ + 'Build the universe — pull the live Claw402.ai ranking and take the top candidates (default 10) across crypto majors and the xyz synthetic markets (US stocks, indices, commodities, FX), each with a direction bias and signal z-score.', + 'Verify each candidate — fetch its Signal Lab deep signal plus the cost/liquidation structure around price: liquidation clusters and cost bases show whether a move has fuel ahead of it or walls against it.', + 'Confirm timing — read the raw 15-minute OHLCV candles (30 bars) to check the entry is riding structure, not chasing an extended move.', + 'Decide and size — only setups clearing the confidence threshold (default `78/100`) with roughly `3:1` risk/reward get positions at 10x; closes always execute before opens, and both long and short books are considered every cycle.', + ], + }, + { + type: 'p', + text: 'A fifth layer sits outside the AI entirely: hard risk controls (position cap, leverage caps, margin ceiling, trade throttle) reject any decision that violates them, no matter how confident the model is.', + }, + ], + }, + { + id: 'data-sources', + question: 'What data does it use, and which parts are paid?', + blocks: [ + { + type: 'list', + items: [ + 'Claw402.ai signal data — the ranking board, per-symbol Signal Lab deep signals, and market net-flow. These are paid endpoints, billed per call in USDC from your AI fee wallet (x402 micropayments).', + 'Cost/liquidation heatmaps — aggregated position-cost and liquidation-cluster structure for each market.', + 'Hyperliquid market data — raw OHLCV candles and the live L2 order book (free public data).', + 'Your account via the agent wallet — equity, available margin, open positions with PnL.', + 'Its own history — closed trades feed win rate, profit factor and drawdown back into the next prompt, so the AI knows its recent form.', + ], + }, + { + type: 'note', + text: 'The dashboard polls the paid Claw402 endpoints slowly (every few minutes) to conserve your fee wallet — market-data panels stay live from the free feeds.', + }, + ], + }, { id: 'decision-cycle', question: 'How often does the AI make decisions?',