Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
agiprolabs avatar

Whale Tracking

  • 233 installs
  • 257 repo stars
  • Updated June 24, 2026
  • agiprolabs/claude-trading-skills

whale-tracking is a Claude Code skill that monitors large Solana wallets to detect accumulation, distribution, and smart-money signals before they appear in price.

About

A Claude Code skill that tracks large Solana wallets to detect accumulation, distribution, and smart-money movements before they show up in price action. It classifies wallets by absolute and relative thresholds, scores accumulation versus distribution with on-chain heuristics, and manages a whale watchlist. Developers use it as an on-chain alpha and risk-assessment source.

  • Monitors large Solana wallets for accumulation and distribution
  • Scores accumulation vs distribution with on-chain heuristics
  • Generates smart-money signals before they show up in price

Whale Tracking by the numbers

  • 233 all-time installs (skills.sh)
  • Ranked #399 of 1,106 Finance & Trading skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
At a glance

whale-tracking capabilities & compatibility

Free skill; needs a Solana data source. Helius free tier cited at 100K credits/mo, Birdeye at 100 req/min

Capabilities
whale tracking · wallet profiling · token holder analysis · smart money signals · accumulation detection
Use cases
data analysis · research · trading
Pricing
Bring your own API key
From the docs

What whale-tracking says it does

Whale tracking monitors the on-chain behavior of large wallets to detect accumulation, distribution, and smart money movements before they become visible in price action.
SKILL.md
A single large wallet selling 5% of a token's supply can crash the price 30-50% on thin Solana DEX liquidity.
SKILL.md
Accumulation is when a whale builds a position over time, often trying to minimize price impact.
SKILL.md
npx skills add https://github.com/agiprolabs/claude-trading-skills --skill whale-tracking

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs233
repo stars257
Last updatedJune 24, 2026
Repositoryagiprolabs/claude-trading-skills

What it does

Monitor large Solana wallets and detect accumulation or distribution before it fully affects a token's price.

Who is it for?

Catching large-holder accumulation or distribution on Solana tokens as an early trading signal.

Skip if: Non-Solana chains or executing trades automatically.

When should I use this skill?

You want an early warning that a whale is buying or dumping a token.

What you get

Scored accumulation and distribution signals for large wallets on a token.

  • Scored accumulation/distribution signals and a whale watchlist for a token

By the numbers

  • 4 whale size tiers (Retail to Mega-whale)
  • Accumulation and distribution scoring thresholds at score >= 4

Files

SKILL.mdMarkdownGitHub ↗

Whale Tracking for Solana Tokens

Whale tracking monitors the on-chain behavior of large wallets to detect accumulation, distribution, and smart money movements before they become visible in price action. On Solana, where token ownership is highly concentrated and whale transactions can move markets instantly, tracking large holders is one of the highest-signal alpha sources available.

Why Whale Tracking Matters

A single large wallet selling 5% of a token's supply can crash the price 30-50% on thin Solana DEX liquidity. Conversely, a known profitable wallet accumulating a new token often precedes major price runs. Whale tracking converts on-chain transparency into actionable intelligence.

Key use cases:

  • Early warning: Detect large holder sells before the price impact fully propagates
  • Smart money following: Identify wallets with strong track records and monitor their new positions
  • Accumulation detection: Spot gradual buying by whales who split orders to avoid detection
  • Distribution detection: Catch insiders or early investors offloading positions
  • Risk assessment: Evaluate token concentration risk before entering a position

What Constitutes a Whale

Whale classification depends on context. A wallet holding $50K of a $1M market cap token is a whale; the same $50K in SOL is not. Use relative and absolute thresholds:

Absolute Thresholds

CategoryTrade SizePortfolio SizeTypical Behavior
Retail< 10 SOL< 100 SOLReactive, follows trends
Mid-size10-100 SOL100-1,000 SOLMixed strategies
Whale100-1,000 SOL1,000-10,000 SOLInformed, moves markets
Mega-whale> 1,000 SOL> 10,000 SOLMarket makers, funds, insiders

Relative Thresholds (Per Token)

MetricThresholdSignificance
% of supply held> 2%Significant holder
% of daily volume> 5% single tradeMarket-moving transaction
Top N holdersTop 20Core holder group
Concentration ratioTop 10 hold > 50%High concentration risk

Use both absolute and relative metrics. A 50 SOL trade in a $200K market cap token is whale-level; the same trade in a $50M token is retail.

Accumulation vs Distribution Patterns

Accumulation Signals

Accumulation is when a whale builds a position over time, often trying to minimize price impact.

DCA pattern (Dollar-Cost Averaging):

  • Multiple buys of similar size over hours or days
  • Buys at regular intervals (e.g., every 30 minutes)
  • Position grows steadily without large single transactions

Dip buying:

  • Buys concentrated during price dips
  • Larger-than-usual purchases when price drops > 10%
  • Position increases during periods of general selling

Multi-wallet accumulation:

  • New wallets funded from the same source
  • Each wallet buys small amounts of the same token
  • Positions later consolidated into a primary wallet

Detection heuristics:

accumulation_score = 0
if buy_count > sell_count * 2:       accumulation_score += 2
if avg_buy_size > avg_sell_size:     accumulation_score += 1
if position_change_7d > 0:          accumulation_score += 1
if buys_during_dips > buys_on_pump:  accumulation_score += 2
if dca_pattern_detected:             accumulation_score += 2
# Score >= 4 = likely accumulating

Distribution Signals

Distribution is when a whale reduces or exits a position, often gradually to avoid crashing the price.

Gradual selling:

  • Multiple sells over days, each < 5% of position
  • Sells increase in frequency over time
  • Position shrinks steadily

Transfer to exchange:

  • Tokens transferred to known exchange deposit addresses
  • Large transfers to Binance, OKX, Bybit hot wallets
  • Often precedes selling by hours or days

Rapid exit:

  • Single large market sell (> 20% of position)
  • Often triggers cascading liquidations
  • Visible as large red candles with high volume

Detection heuristics:

distribution_score = 0
if sell_count > buy_count * 2:        distribution_score += 2
if position_change_7d < 0:           distribution_score += 1
if transfers_to_exchanges > 0:       distribution_score += 3
if sell_frequency_increasing:        distribution_score += 2
if position_pct_remaining < 50:      distribution_score += 1
# Score >= 4 = likely distributing

Whale Watchlist Management

Maintain a watchlist of wallets worth tracking. Sources for discovering whale wallets:

Discovery Methods

1. Top holders per token: Query getTokenLargestAccounts for any token of interest 2. Large transaction monitoring: Watch for trades > 100 SOL on key tokens 3. Profitable trader rankings: Use SolanaTracker or Birdeye top trader endpoints 4. Known fund wallets: Public wallet addresses of crypto funds and DAOs 5. Cross-referencing: Wallets that appear in top holders of multiple successful tokens

Watchlist Structure

Each watchlist entry should track:

whale_entry = {
    "address": "WhaLe...",
    "label": "Smart money #47",        # Human-readable label
    "discovered": "2026-01-15",         # When added to watchlist
    "discovery_reason": "top_trader",   # How they were found
    "win_rate": 0.72,                   # Historical trade win rate
    "avg_pnl": 3.4,                     # Average PnL multiplier
    "tokens_tracked": 12,               # Number of tokens held
    "last_active": "2026-03-09",        # Last on-chain activity
    "tags": ["dex_trader", "sniper"],   # Classification tags
}

Wallet Classification Tags

TagDescription
sniperBuys tokens within minutes of launch
dex_traderPrimarily trades on DEXes
accumulatorBuilds positions gradually
flipperShort hold times, quick profit-taking
insiderConnected to token teams (funded by deployer)
fundInstitutional or fund wallet
market_makerProvides liquidity, two-sided flow

Cross-Token Analysis

Whale tracking becomes most powerful when you analyze whale behavior across multiple tokens simultaneously.

Convergence Signals

When multiple tracked whales buy the same token independently, the signal strength compounds:

Whale CountSignalConfidence
1 whale buyingInformationalLow
2-3 whales buyingNotableMedium
4+ whales buyingStrong convergenceHigh
Whales + volume spikeConfirmed momentumVery high

Cross-Token Flow Analysis

Track where whale capital flows:

Token A (selling) → SOL → Token B (buying)

If multiple whales rotate from A to B:
  - Bearish for Token A (smart money exiting)
  - Bullish for Token B (smart money entering)

Data Sources

Whale tracking on Solana uses multiple data sources. See references/data_sources.md for complete details.

SourceUse CaseAuth Required
HeliusTransaction history, webhooksYes (free tier available)
SolanaTrackerTop traders, wallet PnLYes
BirdeyeToken holder rankingsYes (free tier available)
Solana RPCToken accounts, signaturesNo (public endpoints)

Helius Webhooks for Real-Time Tracking

Helius webhooks enable real-time whale alerts without polling:

# Webhook configuration for whale wallet monitoring
webhook_config = {
    "webhookURL": "https://your-server.com/whale-alerts",
    "transactionTypes": ["SWAP", "TRANSFER"],
    "accountAddresses": [
        "WhaLe1...",  # Tracked whale wallets
        "WhaLe2...",
    ],
    "webhookType": "enhanced",  # Parsed transaction data
}

Signal Generation

Convert whale activity into trading signals. Whale signals are one input to a broader decision framework, not standalone trading triggers.

Signal Types

Whale Buy Signal:

  • Whale buys > 100 SOL of a token
  • Confidence increases with: whale track record, buy size, number of whales buying
  • Weaken signal if: token is very new (< 24h), whale is known flipper, high concentration risk

Whale Sell Signal:

  • Whale sells > 25% of position or > 100 SOL
  • Confidence increases with: multiple whales selling, transfers to exchanges, increasing sell frequency
  • Weaken signal if: whale is taking partial profit after large gain, whale is known rebalancer

Accumulation Signal:

  • Whale accumulation score >= 4 (see scoring above)
  • Strongest when: multiple whales accumulating same token, accumulation during price downtrend
  • Time horizon: days to weeks (accumulation is a slow signal)

Distribution Signal:

  • Whale distribution score >= 4
  • Strongest when: team/insider wallets distributing, post-unlock distribution, increasing sell pace
  • Time horizon: hours to days (distribution can accelerate quickly)

Signal Scoring

def compute_whale_signal(whale_activity: dict) -> dict:
    """Combine whale activity indicators into a composite signal."""
    score = 0.0

    # Trade direction: +1 for buy, -1 for sell
    direction = 1 if whale_activity["is_buy"] else -1

    # Size factor: larger trades = stronger signal
    size_sol = whale_activity["size_sol"]
    if size_sol > 500:
        score += direction * 3
    elif size_sol > 100:
        score += direction * 2
    else:
        score += direction * 1

    # Whale quality: better track record = stronger signal
    win_rate = whale_activity["whale_win_rate"]
    score *= (0.5 + win_rate)  # 0.5x to 1.5x multiplier

    # Convergence: multiple whales = stronger signal
    whale_count = whale_activity["concurrent_whale_count"]
    score *= (1 + 0.3 * (whale_count - 1))

    return {
        "score": round(score, 2),
        "direction": "bullish" if score > 0 else "bearish",
        "confidence": "high" if abs(score) > 5 else "medium" if abs(score) > 2 else "low",
    }

Integration with Other Skills

Whale tracking works best when combined with other analysis:

SkillIntegration
token-holder-analysisIdentify concentration risk, insider wallets
liquidity-analysisEstimate price impact of whale trades
solana-onchainWallet profiling, transaction history
slippage-modelingPredict slippage for whale-sized trades
risk-managementFactor whale concentration into position sizing
helius-apiTransaction fetching, webhook setup

Files

References

  • references/detection_methods.md — Accumulation/distribution detection algorithms, whale classification, alert thresholds and scoring systems
  • references/data_sources.md — Complete guide to Helius, SolanaTracker, Birdeye, and on-chain data sources for whale tracking

Scripts

  • scripts/track_whales.py — Fetches top holders for a token, classifies whale activity as accumulating/distributing/holding, prints a whale report. Run with --demo for synthetic data mode.
  • scripts/whale_alerts.py — Monitors a watchlist of whale wallets for new large transactions, classifies trades, and prints alerts. Run with --demo for simulated whale trades.

Limitations and Caveats

  • Privacy wallets: Whales using multiple wallets or mixers can evade tracking
  • Misleading signals: Whales may intentionally create visible accumulation to attract followers, then dump
  • Latency: By the time you detect a whale buy, the price impact may already be priced in
  • False positives: Internal transfers between a whale's own wallets look like buys/sells
  • Exchange wallets: Centralized exchange hot wallets show massive flows that are not individual whale activity
  • Not financial advice: Whale activity is informational input for analysis, not a standalone trading recommendation

Related skills

FAQ

What counts as a whale?

It depends on context: absolute thresholds (e.g. >100 SOL trades) plus relative ones like holding >2% of supply or >5% of daily volume in a single trade.

How does it tell accumulation from distribution?

It scores on-chain heuristics like buy/sell ratio, DCA patterns, dip buying, and transfers to exchange deposit addresses.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.