一键导入
paper-trade
Run paper trading after backtest passes, with monitoring and intervention.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run paper trading after backtest passes, with monitoring and intervention.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Discover market relations (8 types) that map 1:1 to builtin arbitrage strategies.
Use when the user asks to run the full trading workflow end-to-end, from finding markets to paper trading — covers discover, backtest, and paper-run in sequence.
Manage multi-strategy portfolios and automate lifecycle.
Write spread strategy code as a Strategy subclass and register it.
Backtest strategies against historical data.
Execute live trading with explicit authorization, strict risk and emergency controls.
| name | paper-trade |
| description | Run paper trading after backtest passes, with monitoring and intervention. |
Use this skill when the user asks to run paper trading.
The hub must be running before launching paper-trade engines. Without it, engines either fail to get order book data (stuck retrying hub connection) or each engine polls the API independently (wasteful and rate-limited).
# Check if hub is already running
coinjure hub status --json
# If not running, start it (detached)
coinjure hub start --detach --json
Wait for hub to be ready before proceeding.
coinjure engine paper-run \
--exchange <polymarket|kalshi|rss> \
--strategy-ref <strategy_ref> \
--strategy-kwargs-json '<json>' \
--duration <seconds> --json
Add --monitor to open the TUI monitor.
To batch-deploy all backtest-passed relations:
coinjure engine paper-run --all-relations --detach --json
Use --no-hub only for quick single-engine debugging when hub is unavailable.
coinjure engine status --id <strategy_id> --json
coinjure engine status --id <strategy_id> --full --json
coinjure engine pause --id <strategy_id> --json
coinjure engine resume --id <strategy_id> --json
coinjure engine swap --id <strategy_id> --strategy-ref <new_ref> --json
coinjure engine stop --id <strategy_id> --json
--no-hub for debugging).pause first; then resume or stop after assessment.