home/blog/hyperliquid perps tracker

Hyperliquid perps tracker: how to monitor your positions like a pro

By · Founder, DegenJournal
August 13, 2026 · 12 min read

A Hyperliquid perps tracker is any tool that lets you watch your perpetual-futures positions — size, leverage, liquidation price, funding, and profit — without logging into anything or handing over a key. If you have been searching for Hyperliquid analytics because you keep getting liquidated at 3am and cannot reconstruct why, this guide is the honest version: where your position data actually lives, what every number on the screen really means, and which tools tell the truth about what they can and cannot show you.

Perps are a different beast from spot memecoins. On spot you either hold the token or you do not; on perps you are running leverage, a liquidation price is hunting you, funding is quietly bleeding or feeding your account, and your PnL is split into a realized half and an unrealized half that behave completely differently. Track them the same way you track a spot bag and you will get wrecked by the parts you were not watching. So let us build the mental model first, then the workflow.

What Hyperliquid actually is

Hyperliquid is a decentralized perpetual-futures exchange that runs on its own purpose-built Layer 1, with an on-chain central limit order book rather than the automated-market-maker pools you know from Solana DEXes. That order-book design is the whole point: it feels like a centralized-exchange trading terminal — real bids and asks, fast fills, deep books on majors — but settlement and account state live on a public chain instead of inside a company's private database.

Two consequences matter for tracking. First, everything is a perpetual future: a derivative with no expiry date that tracks an underlying asset's price, held open indefinitely as long as you stay above your maintenance margin. There is no settlement day to plan around; the position just persists until you close it or it gets liquidated. Second, because account state is on-chain and addressed by your wallet, Hyperliquid can expose your positions and fill history through public, read-only endpoints keyed to your address — no API key, no signing, no permission grant. That single fact is what makes real, independent Hyperliquid analytics possible, and it is the backbone of the workflow below.

Why tracking perps is nothing like tracking spot

If your only trading experience is aping Solana memecoins, four concepts on perps will bite you if you do not internalize them. Each one is a number you have to actively monitor, not set and forget.

Leverage multiplies both directions

Leverage lets you control a position larger than your margin. Ten-x leverage means a roughly 10 percent move against you can wipe out most of the margin backing that position. It does not just amplify gains; it shrinks the distance between your entry and the price that ends you. The higher the leverage, the closer the exit door is to where you are standing — which is why the single most important number on a perps screen is not your PnL, it is your liquidation price.

Liquidation price is the line you cannot cross

Your liquidation price is the mark price at which your margin falls below the maintenance requirement and the exchange force-closes the position to stop it going negative. Cross it and you do not get a polite margin call and a chance to think — the position is gone, the loss is realized, and on a violent candle several traders' liquidations can chain together into a cascade that pushes price even further, liquidating the next tier down. Over-leverage plus a liquidation cascade is the classic account-killer, and it is entirely avoidable if you know where your line is and size so that normal volatility never reaches it.

Funding is a fee you pay while doing nothing

Perps stay tethered to the underlying spot price through funding: a periodic payment exchanged directly between longs and shorts. When the perp trades above spot, longs pay shorts; when it trades below, shorts pay longs. On Hyperliquid funding is settled on a short, frequent schedule (verify the current interval against the docs), which means a position you are holding flat can slowly bleed funding for days, or quietly earn it, depending on which side of the crowd you are on. Ignore funding and your realized PnL will not reconcile with the price move you remember — the gap is the funding you forgot you were paying.

Unrealized PnL is not money yet

This is the one that ruins people psychologically. Unrealized (open) PnL is the paper value of a position you still hold; it swings every second and it is not yours until you close. Realized PnL is what you actually banked when you closed a position, plus or minus the funding and fees along the way. For monitoring, unrealized PnL tells you how much risk is currently on the table; realized PnL tells you whether you are actually any good. For taxes the distinction is even sharper — realized gains and losses are what get counted, and jurisdictions treat derivatives differently, so do not assume your memecoin mental model carries over. This is educational info, not tax advice.

How to monitor your positions like a pro

Here is the actual workflow. The goal is a habit, not a one-time look: a live view for the position you are in right now, and a historical view for the trader you are becoming.

1. Find your address

Everything keys off your public Hyperliquid address — the same 0x-style address you deposited to. It is not a secret and it is not a credential; it is a lookup key, exactly like a Solana public address on a block explorer. You can hand it to any read-only tool, or paste it into a public info request, and get your data back without ever authorizing anything. If a tool asks you to sign or connect a spending wallet just to show your positions, that is a red flag — reading perps does not require it, the same way read-only wallet analysis never needs signing on the spot side.

2. Read your liquidation price first, every time

Before you admire a single dollar of green, find your liquidation price and ask one question: could a normal, boring candle reach it? The native Hyperliquid interface shows your liq price directly on each open position, alongside size, entry, leverage, and margin. If your liq price sits inside the range the asset routinely moves in an hour, you are not trading, you are holding a lottery ticket that expires on the next wick. Fix it by lowering leverage or adding margin until the line is somewhere volatility has to work to reach.

3. Watch open and unrealized PnL as risk, not reward

Keep the live position screen for what it is good at: showing you how much is currently at stake. Watch unrealized PnL to manage the trade — to trail a stop, take partials, or cut a loser — not to feel rich. The number is a risk gauge. The moment you start treating unrealized green as a balance you own, you will hold a winner into a reversal because giving back paper gains feels like a loss. It is not a loss until it was real, and it was never real until you closed.

4. Track funding on every position you hold overnight

For anything you carry longer than a scalp, pull up the funding you are paying or receiving and factor it into your thesis. A slow grind that is right on direction can still be a net loser if you are on the crowded side paying funding the whole way. The native UI shows your funding per position and in your account history; treat it as part of the cost of the trade, not an afterthought.

5. Query the public info endpoint for the raw truth

When you want your data outside the trading UI — to archive it, analyze it, or feed a journal — Hyperliquid exposes a public info endpoint. You POST a small JSON body specifying a request type and your address, and it returns account state or fills read-only. A minimal example, using request types like clearinghouseState for current positions and userFills for your trade log (confirm the exact type names and response fields against the current Hyperliquid API docs, since they evolve):

curl -X POST https://api.hyperliquid.xyz/info \
  -H "Content-Type: application/json" \
  -d '{"type":"clearinghouseState","user":"0xYOUR_ADDRESS"}'

No key, no signature, no header token — just an address and a request type. That is the same public surface a proper Hyperliquid perps tracker is built on. If you want the equivalent walkthrough for Solana spot data, we broke that down in the Helius wallet history tutorial.

6. Measure cumulative realized performance over time

This is the step almost everyone skips, and it is the only one that makes you better. A live screen tells you about one position; it tells you nothing about whether your last two hundred trades made money. Pull your realized PnL, win rate, average win versus average loss, and how much funding and fees ate into the total, then look at the trend across weeks — not the single trade you happen to remember. That is the difference between monitoring and actually journaling your trades: one keeps you alive in the moment, the other tells you if the strategy is worth running at all.

The honest tool comparison

No single tool does everything, and anyone who tells you otherwise is selling. Here is the straight version of what each one is genuinely good at.

What you needHyperliquid native UICoinglassDegenJournal
Live open positions and liquidation priceYes — best in class for your live accountNo — market-wide data, not your positionsNo — a review layer, not a live terminal
Your funding paid or earnedYes, per position and in historyMarket-wide funding rates onlyIncluded where it affects realized PnL
Market liquidation and open-interest heatmapsLimitedYes — this is its core strengthNo
Your realized PnL and win rate over weeksPartial — history without deep analyticsNo personal, address-level historyYes — the whole point
Behavioral patterns (overtrading, revenge, time of day)NoNoYes
Solana spot and Hyperliquid perps togetherNoNoYes
Access modelYour own logged-in sessionPublic market sitePaste a public address, read-only, no key

The pattern is simple. The native UI is your cockpit for the position you are in right now — best in class for live liq price, funding, and open PnL, and you should always have it open while a trade is on. Coinglass is a fantastic market lens — liquidation heatmaps, funding across venues, open interest — but it is watching the whole ocean, not your boat; it does not journal your personal, address-level realized history. DegenJournal is the review layer: it imports your Hyperliquid fills read-only through that public info API, computes realized PnL, win rate, and behavioral patterns, and — this is the part most journals cannot do — sits alongside your Solana spot activity so your perps and your memecoin aping live in one honest scorecard. It is not a live trading terminal and does not pretend to be; it is the mirror you look into after the session.

Common mistakes when tracking perps

  • Treating unrealized PnL as your balance. Paper green is risk on the table, not money in your pocket. The account that is up 400 percent unrealized and the account that got liquidated an hour later are frequently the same account.
  • Not knowing your liquidation price. If you cannot state your liq price from memory on every open position, you are not managing risk, you are hoping. Read it before you read your PnL, every single time.
  • Forgetting funding exists. A flat position is not a free position. Funding accrues while you do nothing, and over days it quietly rewrites your realized result. Reconcile it or your numbers will never add up.
  • Over-leveraging into cascades. High leverage does not just raise your risk linearly; it parks your liquidation price inside normal volatility, right where cascades reach. Size so a routine wick cannot end you.
  • Only ever looking at the live screen. Monitoring the current trade is not the same as reviewing your history. Without a realized-PnL feedback loop across weeks, you repeat the same losing setup forever because nothing ever forced you to notice it.
  • Mistaking a market dashboard for personal tracking. Coinglass showing a liquidation heatmap is not the same as tracking your account. Market-wide analytics and address-level journaling are different jobs; do not confuse the weather report for your own logbook.
  • Blending venues in your head. Perps realized PnL, spot realized PnL, funding, and fees are separate lines that matter separately — for strategy and especially for taxes. Keep them cleanly accounted, in one place if you can.

The bottom line

Monitoring Hyperliquid like a pro is two habits running at once: a live cockpit — native UI, liq price first, funding tracked, unrealized PnL read as risk — for the position you hold this minute, and a historical mirror — realized PnL, win rate, and behavioral patterns pulled from the public info API — for the trader you are trying to become. The data is all public and read-only, keyed to nothing but your address, so there is no excuse for flying blind.

DegenJournal is built for that second habit. Paste your public address and it imports your Hyperliquid perp fills read-only through the public info API — no key, no signing — computes your realized PnL, win rate, and the behavioral patterns you would rather not see, and puts them next to your Solana spot trades in one scorecard. Read-only means we literally cannot touch your funds, because we never asked for the ability to. See it on the live demo dashboard with sample data, or point it at your own wallet and start your trading journal. Want the wider setup first? Here is a rundown of the best Solana trading journal. Not financial advice. Trade responsibly (lol).

FAQ

How do I track my Hyperliquid positions?

Keep the native Hyperliquid interface open for the live view — it shows each position's size, leverage, liquidation price, funding, and open PnL in real time — and use a read-only journal for the historical side. Because Hyperliquid exposes account state and fills through a public info API keyed to your address, a tool like DegenJournal can import your fills read-only (no key, no signing) and compute realized PnL, win rate, and behavioral patterns across weeks.

What is a liquidation price?

It is the mark price at which your margin drops below the maintenance requirement and the exchange force-closes your position to stop it going negative. There is no warning shot — cross it and the position is gone and the loss is realized. Higher leverage moves your liquidation price closer to your entry, which is why it is the first number you should read on any open perp, before your PnL.

Can I see someone else's Hyperliquid PnL?

To a large degree, yes, because Hyperliquid account state is on-chain and the public info API is keyed to an address. Anyone's positions and fills for a given address are readable without permission — it is public, read-only data, the same way a Solana wallet's history is visible on a block explorer. Knowing an address lets you read its history; it never lets you move its funds.

Does Coinglass track my personal Hyperliquid account?

Not really. Coinglass is excellent market-wide analytics — liquidation heatmaps, funding rates across venues, open interest — but it is built to watch the whole market, not to journal your address-level realized PnL and trade history. For personal, per-address perp tracking you want the native UI for live positions and a read-only journal for historical performance.

What is the difference between realized and unrealized PnL?

Unrealized (open) PnL is the paper value of a position you still hold; it moves every second and it is not yours until you close. Realized PnL is what you actually banked when you closed, net of funding and fees. Monitor unrealized PnL as a measure of risk currently on the table, and judge yourself on realized PnL over time. Taxes generally care about realized results — this is educational info, not tax advice.

How does funding affect my perp tracking?

Funding is a periodic payment exchanged between longs and shorts to keep the perp near spot. If you are on the crowded side you pay it; on the other side you earn it. It accrues even while your position sits flat, so a trade that is right on direction can still net out negative once funding is counted. Always reconcile funding into your realized results, or your numbers will not match the price move you remember.

Do I need an API key or to connect a wallet to track Hyperliquid?

No. The public info API returns positions, fills, and history for any address with no key and no signature, and the native UI shows your own account after you log in normally. A legitimate analytics or journaling tool only needs your public address to read your history — if something demands a signing connection just to display your positions, treat it as a red flag.

Keep reading

See your own trades, read-only.

Paste a public wallet and DegenJournal auto-imports your history — no signing, no keys, never touches your funds.