MM Flow

For perp traders

The terminal for HL-native traders.

Whale tape, cross-venue funding, real-time picks, and an EIP-712-signed order entry — all in one URL, all free, no signup. Built on top of the public Hyperliquid info API so what you see is what the venue sees.

Monday-morning workflow

  1. 1

    Open the live terminal — see the highest-conviction pick with proof chips, plus a merged tape of whale prints, funding deltas, and liquidations.

    Picker scans 200+ HL markets every 15s; tape updates over SSE in under 2s. /live

  2. 2

    Glance at the mmflow Index — one number for the global crypto regime.

    Composite of breadth, funding, vol, dollar strength. /dashboard

  3. 3

    Check funding by venue — is HL paying for longs or shorts vs Binance / Bybit / OKX?

    Spread chart highlights basis arbs in real time. /funding/spread

  4. 4

    Drop into a coin's footprint — bid-ask volume by price + time.

    Reveals the actual flow behind the move. /footprint

  5. 5

    Cross-check the gamma-flip / call wall / put wall lines vs current price.

    Dealer-positioning levels mark price magnets. /options/gex

  6. 6

    Open /trade for one-click EIP-712 signed orders with builder routing.

    No custody, no API key — your wallet signs each action. /trade

Pages built for you

Real code

Tail every HL whale print over $250k in your console

TypeScript
import { mmflow } from "@mmflow/sdk";

const es = mmflow.streams.whales({ minUsd: 250_000 });
es.on("whale", (w) => {
  console.log(`${w.coin} ${w.side.toUpperCase()} $${w.notionalUsd.toLocaleString()}`);
});

Get the current HL funding spread vs Binance

Bash
curl -s 'https://mmflow.ai/api/v1/perps/funding?coin=BTC' \
  | jq '.venues | { hl: .hyperliquid.rate, bn: .binance.rate, diff: (.hyperliquid.rate - .binance.rate) }'

Open the live terminal.

No signup, no email, no paywall. Just the tape.