Funding rate is the most-misunderstood metric on perpetual futures. Most traders ignore it until it costs them serious money. A few traders make their living off it.
This article walks through what funding rate actually is, why exchanges use it, what it tells you about market sentiment, and how to profit from it directly.
A perpetual futures contract has no expiry date. Without expiry, there's no natural mechanism keeping the perp price aligned with spot. Exchanges solve this with periodic cash transfers between longs and shorts — the funding rate.
When the perp trades above spot, funding is positive. Longs pay shorts. When the perp trades below spot, funding is negative. Shorts pay longs.
On LMEX, funding settles every 8 hours: 00:00, 08:00, and 16:00 UTC. The rate at each settlement is the average premium/discount of perp to spot over the preceding 8 hours, adjusted by an interest rate component.
A typical funding rate is 0.01% per 8-hour period. That's 0.03% per day, or roughly 11% annualised. Sounds small, but compounded across leveraged positions, it adds up fast.
The arbitrage mechanism: when perp trades 1% above spot, an arbitrageur can short perp and buy spot, locking in the 1% spread minus carrying costs. This pushes perp price down toward spot until the spread is too narrow to profit.
But arbitrage isn't instant. Funding rate accelerates convergence by directly penalising the dominant side. If perp is over spot (longs in control), positive funding makes longs pay continuously. This either pulls longs out (reducing demand) or attracts arbitrageurs (increasing supply of shorts). Either way, the gap closes.
The mechanism works. Average funding-adjusted perp price tracks spot within 0.1% over time on liquid markets.
Funding rate is one of the cleanest sentiment indicators available. It directly measures how much leveraged traders are willing to pay to maintain their positions.
Interpretation:
This isn't a perfect timing signal, but it's correlated with major turning points. When funding hits extreme levels, the market is usually overextended in that direction.
Three ways to profit from funding rates:
**Funding rate arbitrage** — the cleanest play. Long spot + short perp captures positive funding while being market-neutral. Annual returns 8-20% on deployed capital, scalable to millions.
**Funding rate momentum** — when funding shifts dramatically (e.g., positive to negative), it often signals a regime change. Following the new direction works for a few days post-shift, before the rate normalises.
**Funding rate mean reversion** — extreme funding (3+ standard deviations from rolling average) tends to revert. Bet against the dominant side, sized small, exit when funding normalises.
A Python implementation for tracking and trading on funding signals:
This isn't a complete strategy but it gives you the data structure for any funding-based strategy.
For directional traders who don't think about funding, the costs accumulate quietly:
A 10× leveraged long held for a year, when average funding is 0.02% per 8h, pays:
That's a hidden 220% annual drag on equity. Most retail longs don't realise this is happening until they look back at why their P&L underperformed the underlying asset's return.
Solution: factor expected funding into the cost basis. If you're going to hold a perpetual long for weeks, the asset needs to move enough to cover both fees AND expected funding.
Q: How is funding calculated exactly?
Funding rate = max(min(premium + interest, +1%), -1%). Premium is the average perp-to-spot spread; interest is a baseline rate (~0.01% on LMEX). The result is capped at ±1% per 8h to prevent extreme events.
Q: Do I pay funding if I exit before settlement?
No. Funding only settles for positions held AT the settlement time. If you exit at 07:59 UTC, you don't pay the 08:00 funding even if you held all night.
Q: Does funding affect spot trading?
No. Spot has no funding. Only perpetual contracts have funding. Quarterly futures have a built-in carry instead.
Q: How do exchanges differ on funding?
Settlement frequency (8h vs 4h vs 1h), exact calculation method, and caps vary. LMEX uses 8h settlements with a standard premium + interest formula. Compare exchange docs before doing cross-venue funding arb.