Use when you have a written implementation plan to execute in a separate session with review checkpoints
npx skills add clawd-aftermath/senpi-skills-af --skill "emerging-movers"
Install specific skill from multi-skill repository
# Description
>-
# SKILL.md
name: emerging-movers
description: >-
Lightweight scanner tracking Smart Money market concentration across all
Aftermath assets. Flags assets accelerating up the ranks before they
become crowded top-3 plays. IMMEDIATE_MOVER signal fires on 10+ rank
jumps with quality filters (erratic history, velocity gate, trader count
floor, max leverage check). One API call per scan, runs every 60 seconds.
Use when detecting SM rotations, finding emerging opportunities early,
or monitoring rank acceleration patterns.
license: Apache-2.0
compatibility: >-
Requires python3 and cron. Single API call per scan via mcporter.
Optional: max-leverage.json for leverage filtering.
metadata:
author: jason-goldberg
version: "3.1"
platform: senpi
exchange: aftermath
Emerging Movers Detector v3.1
Tracks Smart Money market concentration across all Aftermath assets and flags assets accelerating up the ranks before they become crowded top-3 plays. By the time an asset hits the top of the SM leaderboard, the easy money is gone. This catches the trajectory.
One API call per scan. Near-zero LLM tokens. Runs every 60 seconds.
How It Works
The SM Profit Concentration Leaderboard
Senpi's leaderboard_get_markets returns all assets ranked by percentage of total Smart Money profit in the last 4-hour rolling window. This isn't trader count β it's where the money is actually flowing.
#1 ETH SHORT 31.4% 286 traders
#2 BTC SHORT 25.1% 436 traders
#3 HYPE SHORT 24.2% 330 traders
...
#36 ASTER SHORT 0.2% 18 traders β 60s later: #13, 0.82%, 65 traders
The script tracks this leaderboard over time and detects acceleration.
Detection Signals
Immediate Action Signals (v3+)
| Signal | Condition | Priority |
|---|---|---|
| IMMEDIATE_MOVER | 10+ rank jump from #25+ in ONE scan | Highest β act now |
| NEW_ENTRY_DEEP | Appears in top 20 from nowhere | Very high |
| CONTRIB_EXPLOSION | 3x+ contribution increase in one scan | Very high |
| DEEP_CLIMBER | 5+ rank jump from #25+ | High |
Trend Signals
| Signal | Condition |
|---|---|
| NEW_ENTRY | First appearance in top 50 |
| RANK_UP | Jumped 2+ positions in one scan |
| CLIMBING | 3+ positions up over several scans |
| ACCEL | Contribution % increasing scan-over-scan |
| STREAK | Consistently climbing every check |
| VELOCITY | Sustained positive contribution growth |
v3.1 Quality Filters
These prevent false IMMEDIATE signals that looked great on rank jump alone but failed on execution:
| Filter | Rule | Rationale |
|---|---|---|
| Erratic rank | >5 rank reversals in history β erratic: true, downgraded |
Bouncing ranks are noise |
| Velocity gate | contribVelocity < 0.03 β lowVelocity: true, excluded from IMMEDIATE |
No momentum behind the move |
| Trader count floor | <10 traders β SKIP IMMEDIATE | Single whale risk |
| Max leverage check | max leverage < 10x β SKIP | Not worth the limited position sizing |
See references/quality-filters.md for implementation details and real-world examples.
Architecture
ββββββββββββββββββββββββββββββββββββββ
β Cron: every 60 seconds β
ββββββββββββββββββββββββββββββββββββββ€
β scripts/emerging-movers.py β
β β’ Loads scan history from JSON β
β β’ Fetches leaderboard (1 API call) β
β β’ Parses top 50 markets β
β β’ Compares with previous scans β
β β’ Detects signals + v3.1 filters β
β β’ Saves updated history β
β β’ Outputs JSON with alerts β
ββββββββββββββββββββββββββββββββββββββ€
β Agent reads output: β
β β’ IMMEDIATE alerts β evaluate now β
β β’ Deep climbers β queue for review β
β β’ No alerts β silent β
ββββββββββββββββββββββββββββββββββββββ
Files
| File | Purpose |
|---|---|
scripts/emerging-movers.py |
Scanner script |
emerging-movers-history.json |
Auto-managed scan history (last 60 scans) |
max-leverage.json |
Optional: asset max leverage reference |
Output
See references/output-schema.md for the complete JSON schema.
Key top-level fields: alerts[], topMovers[], immediateMovers[], deepClimbers[], scanCount, timestamp.
Per-alert fields: asset, direction, rank, prevRank, contribution, traderCount, reasons[], contribVelocity, isImmediate, isDeepClimber, erratic, lowVelocity.
Cron Setup
*/1 * * * * python3 scripts/emerging-movers.py
Agent Response Logic
isImmediate: true+erratic: false+lowVelocity: falseβ Evaluate immediately for entry via ScannerisDeepClimber: trueβ Queue for next scanner runerratic: trueorlowVelocity: trueβ Log but do not act- No alerts β Silent
Companion Recipes
- opportunity-scanner β use Scanner to deep-dive assets flagged by Emerging Movers
- autonomous-trading β full loop integrating Emerging Movers as entry trigger
- wolf-strategy β uses IMMEDIATE_MOVER as primary entry signal
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.