ワンクリックで
strategy-writing
Write spread strategy code as a Strategy subclass and register it.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Write spread strategy code as a Strategy subclass and register it.
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.
Run paper trading after backtest passes, with monitoring and intervention.
Manage multi-strategy portfolios and automate lifecycle.
Backtest strategies against historical data.
Execute live trading with explicit authorization, strict risk and emergency controls.
| name | strategy-writing |
| description | Write spread strategy code as a Strategy subclass and register it. |
Use this skill when the user asks to write spread/arb strategy code.
coinjure/strategy/strategy.py (Strategy subclass, implement process_event)coinjure/trading/types.py (TradeSide), coinjure/trading/trader.py (Trader)coinjure/strategy/builtin/*.pystrategies/process_event (typically PriceChangeEvent)trader.place_order(...)self.record_decision(...)coinjure engine paper-run \
--strategy-ref strategies/<name>.py:<ClassName> \
--strategy-kwargs-json '<json>' --json
.py file, not inline scripts.