All articles
Hyperliquid·October 25, 2025·5 min read

Hyperliquid Funding-Rate Arbitrage: Delta-Neutral Yield

Build a delta-neutral carry trade on Hyperliquid that captures perpetual funding rates while hedging spot exposure — a concrete engineering breakdown for serious traders.

Perpetual funding rates on Hyperliquid regularly clock 40–80% annualised during trending markets, yet most retail participants only access that yield directionally — absorbing delta risk in the process. A properly constructed hyperliquid funding rate arbitrage position strips out that directional exposure entirely, leaving you with a carry trade that pays regardless of whether the underlying asset moves up or down.

How Hyperliquid Funding Works

Hyperliquid runs an on-chain central limit order book (CLOB) with eight-hourly funding settlements. When longs outnumber shorts, longs pay shorts at a rate derived from the mark-spot premium capped and floored by a configurable interest component. This is standard perpetual mechanics, but what distinguishes Hyperliquid is settlement finality: funding is settled atomically on-chain every epoch, not in a soft off-chain ledger. That matters for position accounting and for building risk models — you can trust the realised cashflow rather than approximating it.

When the annualised rate on, say, ETH-PERP exceeds a threshold you set (commonly 20–30% APR net of fees), the opportunity is: go short the perpetual on Hyperliquid to collect funding, while simultaneously holding the equivalent spot long off-venue to hedge delta.

Constructing the Delta-Neutral Leg

The hedge leg can live on Solana (via a DEX position or a spot holding), on a CEX, or in a tokenised form. Each venue introduces its own latency and cost surface, so the architecture matters:

  • Spot leg on Solana. If your hedge is a token held in a Solana wallet, you are exposed to bridging risk and price-impact on entry/exit. Using Jito bundles for the entry and exit trades ensures your spot purchase lands atomically with your perp short — no leg-by-leg risk. Priority fees on Solana fluctuate; factor them into your break-even rate calculation.
  • Real-time rate monitoring. Subscribe to Hyperliquid's WebSocket feed (or a Geyser stream if routing through a Solana-side indexer for correlated assets) to watch the mark-spot premium continuously. Funding rate changes intra-epoch; react before the next settlement rather than after.
  • Inventory skew management. As funding ebbs, the yield may not justify the carry cost (spread, borrow where applicable, gas). Track your position's net P&L epoch-by-epoch. If the 24-hour rolling rate drops below your floor, begin unwinding both legs simultaneously to avoid creating naked exposure.

The critical insight here is that "delta neutral" is not a one-time condition — it degrades. The perp short accumulates unrealised P&L as price moves, shifting your effective delta. You need an automated rebalancer that recalculates delta every N minutes and fires a corrective spot trade if the imbalance exceeds a tolerance (commonly 0.5–1% of notional).

Risk Controls That Actually Matter

Funding arbitrage feels low-risk but carries several non-obvious failure modes. A robust implementation needs hard-wired controls from day one:

  • Kill-switch on rate sign flip. If funding flips negative (shorts pay longs), your position immediately inverts from yield-positive to yield-negative. A hard kill-switch that monitors rate sign and triggers full unwind within one epoch is non-negotiable.
  • Liquidation buffer. The perp short can be liquidated if the spot price rallies sharply before the rebalancer fires. Maintain at least 2x the exchange's initial margin requirement as a buffer, and monitor margin ratio continuously via the Hyperliquid REST API.
  • Slippage simulation / anti-rug. Before any leg executes, run a simulation against the current order book depth to estimate fill price and slippage. If simulated slippage on either leg exceeds a configured threshold, abort the entry — a thin book can wipe days of funding yield in a single fill.
  • Cross-venue latency budget. If your hedge leg is on a different venue, the two fills will never be perfectly simultaneous. Quantify your worst-case latency gap and set a maximum acceptable unhedged window (e.g., 200ms). Outside that window, cancel the pending leg and restart.

For teams building across venues, the cross-venue arbitrage portfolio case shows how these latency and routing considerations translate into production architecture decisions.

Sizing and Yield Projection

A realistic yield model for hyperliquid funding rate arbitrage looks like this: take the current 8-hour funding rate, multiply by three (daily), then by 365 (annual). Subtract estimated total costs — taker fees on entry/exit (0.035% × 2 sides × 2 legs), rebalancing friction (assume 0.1% of notional per week at moderate volatility), and bridging or gas costs. At 0.05% per 8 hours, the gross APR is roughly 54%. After costs, realised yield lands in the 35–42% range for a well-managed position — still highly competitive against passive alternatives.

Position sizing should respect the depth of the Hyperliquid order book for the target market. Deploying more notional than can fill within 1–2% market impact on both legs is counterproductive; the entry slippage alone degrades the yield, and large positions attract toxic flow on the hedge leg.

If you want to see how this kind of systematic yield extraction is built end-to-end, the Hyperliquid market maker case study walks through a related architecture that shares the same CLOB integration layer.

Building and maintaining a funding-rate bot is ongoing engineering work — rate environments shift, exchange APIs change, and risk parameters need tuning as market conditions evolve. Our trading-bot services cover the full stack, from initial architecture to production deployment and monitoring.


If you want to capture Hyperliquid funding yield without the directional risk, the engineering is tractable — but the details matter at every layer. Start a project with TierZero and we will scope the bot architecture, risk controls, and integration layer specific to your target markets and capital size.

Need a bot like this built?

We design, build and run trading bots on Solana, Hyperliquid and Polymarket.

Start a project
#funding-rate#arbitrage#hyperliquid