con un clic
paper-trade
Run paper trading after backtest passes, with monitoring and intervention.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Run paper trading after backtest passes, with monitoring and intervention.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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.