From superior-skills
Implements a probability momentum strategy for Polymarket markets, buying when outcome price and filled volume accelerate together. Backtestable with filled trade ticks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superior-skills:probability-momentumThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this when someone asks for momentum, trend following, breakout, follow-the-crowd behavior, fast-moving crypto milestones, or rapid probability acceleration.
Use this when someone asks for momentum, trend following, breakout, follow-the-crowd behavior, fast-moving crypto milestones, or rapid probability acceleration.
POST /v3/markets/search.backtestSupported: true.Good fit for this archetype. Filled TradeTick history can validate whether momentum would have produced fill-driven entries, exits, and directional exposure.
Limit: filled-trade backtests do not prove maker queue position, maker rebates, or order-book depth. Treat this as taker-style behavior evidence, not certainty.
Enter YES when recent probability rises more than a threshold over lookback_ticks. Exit when exit_after_ticks is reached, or when momentum stalls if an exit condition is included.
subscribe_trade_ticks(instrument_id) to stream TradeTicks.on_trade_tick as the main event handler.on_order_filled.{
"lookback_ticks": 5,
"momentum_threshold": 0.02,
"order_size": 10,
"exit_after_ticks": 25,
"max_entries": 3
}
| Knob | Effect |
|---|---|
lookback_ticks | Larger values reduce noise; smaller values react faster. |
momentum_threshold | Higher values reduce frequency and require stronger momentum. |
order_size | Larger values increase PnL sensitivity and liquidity exposure. |
exit_after_ticks | Shorter values trim quickly; longer values hold trend. |
max_entries | Caps repeated entries in choppy markets. |
"This is a probability momentum strategy: it buys when fills and last-trade probability move together in one direction. It is backtestable with filled TradeTicks, but it does not confirm maker queue priority or spread capture."
npx claudepluginhub superior-trade/superior-skills --plugin superior-skillsFades overreactions on Polymarket by entering when probability deviates from a rolling median and exiting on reversion.
Provides strategy, sizing, and backtesting methodology for binary prediction markets (Kalshi, Polymarket, ForecastEx). Covers durable edge thesis, fee-aware selection, fractional-Kelly sizing, and leak-free validation.
Analyzes Polymarket prediction markets, researches real-world news, and identifies trading opportunities. Executes trades via the poly CLI.