Catch volume anomalies before the price moves

Scans every major coin for fill activity significantly above its recent baseline and flags the directional bias of the spike. When a coin is trading at 4x its normal rate, you'll see it here before the chart reflects it.

Copy and paste the following prompt into your AI of choice:

I want to find coins on Hyperliquid that have unusual trading activity right now compared to their recent baseline.

API details:

  • Base URL: https://ht-api.coinmarketman.com/api/

  • Auth: Bearer token

Pull from these endpoints

  • GET /fills?start={ISO}&end={ISO}&limit=500 IMPORTANT: end must be same calendar day as start (max 24hr window)

  • GET /metrics/perp-volume?start={ISO}&end={ISO} — daily perp volume with ~1hr resolution

Here's what I need:

  1. Pull fills from the last 2-3 hours

  2. Group by coin: total fill count, total $ volume, unique addresses active

  3. Pull perp-volume metrics for the same coin over the last 24 hours as a baseline

  4. For each coin, calculate: current volume rate ($/hr) vs 24hr average rate

  5. Flag anomalies: any coin where current rate is > 2x its 24hr average

  6. For flagged coins, also check: is the volume mostly buys or sells? (directional bias of the spike)

Show me:

Coin | Current $/hr | 24hr Avg $/hr | Multiple | Buy/Sell Ratio | Active Addresses

Sort by highest multiple. Only show coins above 1.5x their average.

If nothing is spiking, say so. Don't force a signal that isn't there.

Use ISO 8601 dates. Auto-refresh every 5 min.

What you will see

A list of every coin that's trading significantly above its normal volume right now, sorted by how unusual the activity is, with buy/sell direction.

Why it helps you as a user

Volume moves before price. If a coin is at 5x its normal rate and the flow is 80% sell-side, something is happening. You see it here before the candle prints.

Last updated