starchild strategies v2
Nine curated trading strategies for perpetual futures markets.
workflow
- User describes intent → match to category or specific strategy from catalog.json
- Load decision tree from
references/for full strategy logic - Configure interactively using
scripts/configure.py - Validate with backtest using
scripts/backtest.py - Execute through platform's strategy engine
strategy selection guide
| User says... | Category | Strategy |
|---|---|---|
| "buy dips, sell rips" | mean reversion | rsi reversal |
| "oversold/overbought signals" | mean reversion | rsi reversal |
| "trade the spread between BTC/ETH" | mean reversion | convergence trade |
| "pairs trading" | mean reversion | zscore reversion |
| "follow the trend" | momentum | volatility breakout |
| "breakout after quiet periods" | momentum | volatility breakout |
| "gap continuation" | momentum | gap continuation |
| "rank and rotate assets" | momentum | rsi rotation |
| "set up a grid" | market neutral | grid bot |
| "earn funding without risk" | market neutral | funding arb |
| "overnight trading" | market neutral | overnight drift |
automation scripts
scripts/configure.py- Interactive strategy configurator with risk calculationsscripts/backtest.py- Quick validation against recent market datascripts/risk_calc.py- Capital requirements and fee analysisscripts/market_scan.py- Current market regime assessment for strategy selection
progressive disclosure
- Browse catalog.json for overview (complexity, capital, holding period)
- Load decision tree from
references/{strategy-name}.mdonly when selected - Configure using scripts for interactive setup with validation
- Deploy with monitoring using generated JSON configs
⚠️ All strategies enforce pre-trade liquidity checks and fill verification.
Use scripts/configure.py {strategy-id} to generate ready-to-deploy configs.