بنقرة واحدة
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.