Strategy guides¶
Every entry below is one of Crank's 17 strategy types: a params
reference, an example strategy_*_create call, how it interacts with the
policy gate stack, and when to use it. All 17 share one lifecycle surface
(strategy_status / strategy_modify / strategy_pause / strategy_resume
/ strategy_cancel / strategy_list) -- see each page's Lifecycle section.
| Strategy | Status | Create tool |
|---|---|---|
| DCA (dollar-cost average) | Live | strategy_dca_create |
| Equity DCA (tokenized equities) | Live (jurisdiction-gated) | strategy_equity_dca_create |
| Stop-loss / take-profit | Live | strategy_stoploss_create |
| Protect | Live | strategy_protect_create |
| Hedge | Live | strategy_hedge_create |
| Rebalance | Live | strategy_rebalance_create |
| Vault | Live | strategy_vault_create |
| Yield farm | Live | strategy_yield_farm_create |
| Snipe / scalp | Live | strategy_snipe_create |
| Momentum | Live | strategy_momentum_create |
| Sentiment | Live | strategy_sentiment_create |
| Copy wallet | Live | strategy_copy_wallet_create |
| Market make | Live | strategy_market_make_create |
| Arbitrage | Live | strategy_arb_create |
| Perp grid | Live (jurisdiction-gated) | strategy_perp_grid_create |
| Basis trade | Live (jurisdiction-gated) | strategy_basis_trade_create |
| Composite (signal-rule DSL) | Live | strategy_composite_create |
Several types share an executor and differ only in framing and defaults -- noted on each page: Protect and Hedge both share the Stop-loss executor; Vault and Yield farm both share the Rebalance executor.
See also¶
- Trading catalog -- Strategy automations
- Strategy authoring -- publish a strategy as a clonable template, earn a share of the technology service fee on clones.
- Perps playbook -- the perp mechanics behind Perp grid and Basis trade.