From superior-skills
Generates Nautilus strategy code for detecting directional pressure from repeated large fills on Polymarket, using cluster analysis of TradeTick data.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superior-skills:large-fill-pressureThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this when the user asks about whales, big fills, unusual size, or "who is moving this market."
Use this when the user asks about whales, big fills, unusual size, or "who is moving this market."
POST /v3/markets/search.Good fit for directional-signal detection, weak fit for proving source-side confidence. Filled TradeTick replay can show whether big prints were associated with sustained movement, but it cannot reveal maker intent, hidden liquidity, or queue position.
Treat this as an archetype template that helps generate custom Nautilus strategy code; do not imply it is a proven edge.
Count large fill clusters over a rolling window. Enter when both size and direction align with the configured cluster threshold. Exit after a fixed window, reversal signal, or price giveback.
{
"size_window_ticks": 80,
"large_fill_multiple": 3.0,
"cluster_ticks": 12,
"min_cluster_count": 3,
"order_size": 10,
"exit_after_ticks": 40
}
| Knob | Effect |
|---|---|
large_fill_multiple | Higher = only react to more unusual fills. |
cluster_ticks | Lower = require tighter timing between fills. |
min_cluster_count | Higher = fewer, higher-confidence entries. |
exit_after_ticks | Lower = shorter reaction window. |
"This is a filled-trade pressure archetype. It uses exact slugs and TradeTick backtests to shape a custom Nautilus strategy, not to promise profit."
npx claudepluginhub superior-trade/superior-skills --plugin superior-skillsImplements a probability momentum strategy for Polymarket markets, buying when outcome price and filled volume accelerate together. Backtestable with filled trade ticks.
Analyzes Solana DEX orderflow including trade classification, buyer/seller pressure, volume profiles, whale detection, and wash trading patterns from swap data.
Analyzes Polymarket prediction markets for trading edges using pair cost arbitrage, whale tracking, sentiment analysis, and momentum signals. No trade execution.