Back to Blog
Trading Education

Perpetual Futures: Funding, Basis, and Why They Matter

QFQuantForge Team·April 3, 2026·8 min read

Perpetual futures dominate crypto trading volume. On most days, perpetual futures volume on Binance alone exceeds the combined spot volume across all exchanges. These instruments are unique to crypto — they do not exist in traditional finance — and understanding their mechanics is essential for any serious trader, even one who only trades spot.

The three key concepts are funding rates (the periodic payment that keeps perp prices anchored to spot), basis (the price difference between perp and spot), and open interest (the total value of outstanding contracts). Together, they reveal the positioning and sentiment of the derivatives market, which often leads spot price action.

How Perpetual Futures Work

A perpetual future is a contract that tracks the price of an underlying asset (like BTC or SOL) without an expiration date. Unlike traditional futures that settle on a specific date, perps can be held indefinitely. This is convenient for traders but creates a problem: without expiration forcing convergence, the perp price can drift away from the spot price.

The funding rate mechanism solves this. Every 8 hours on Binance (and most major exchanges), a payment is exchanged between long and short holders. When the perp trades above spot (positive basis), longs pay shorts. When the perp trades below spot (negative basis), shorts pay longs. This creates an incentive to trade against the premium, pulling the perp price back toward spot.

The funding rate is typically tiny per period (0.01 percent is the base rate, approximately 10.95 percent annualized). During extreme market conditions, funding can spike to 0.1 percent or higher per 8-hour period (over 100 percent annualized). These spikes signal extreme positioning and often precede reversals.

Funding Rates as a Trading Signal

Extreme funding rates reveal crowded positioning. When funding is highly positive (longs paying shorts), the market is heavily long. This is a contrarian bearish signal because the cost of holding long positions is high and any price decline triggers cascading liquidations from the overleveraged longs.

When funding is highly negative (shorts paying longs), the market is heavily short. This is a contrarian bullish signal for the same reason: short squeezes can cascade when price rises and overleveraged shorts are forced to cover.

We built a funding_contrarian strategy to trade these signals. The theory was sound, but validation showed severe overfitting. The best sweep Sharpe was 1.94 on SHIB, but BTC validation produced Sharpe negative 4.26. The problem: extreme funding can persist for weeks during strong trends, and the contrarian entry gets crushed by the trend continuing against it.

The lesson is that funding rates are a useful contextual indicator but not a reliable standalone signal. We use funding rate data as one of three inputs in our leverage_composite strategy, where it combines with open interest and long-short ratios to produce a more robust composite signal.

The Basis: Spot vs Futures

The basis is the difference between the perpetual futures price and the spot price. A positive basis (perp above spot) means the market is willing to pay a premium for leveraged long exposure. A negative basis (perp below spot) means the market is paying a premium for leveraged short exposure.

The basis reflects the aggregate directional sentiment of leveraged traders. When institutional funds are accumulating BTC through futures (rather than spot), the basis widens positively. When fear drives deleveraging, the basis goes negative.

We store premium index data (basis OHLC candles) from Binance in our premium_index table. Our basis_convergence strategy attempted to trade the mean reversion of basis toward zero. In validation, only APT showed partial results (2 of 3 periods). The basis reverts, but too slowly and inconsistently for a systematic mean reversion approach.

The basis is most useful as a regime indicator. A consistently positive and widening basis signals bullish institutional positioning. A consistently negative basis signals bearish sentiment. These conditions inform our AI enrichment layer when adjusting signal confidence for spot-based strategies.

Open Interest: The Commitment Meter

Open interest measures the total number of outstanding futures contracts. It increases when new positions are opened (a new buyer and a new seller enter the market) and decreases when positions are closed.

Rising open interest with rising price is bullish: new money is entering to push prices higher. Rising OI with falling price is bearish: new money is entering to push prices lower (shorting). Falling OI with rising price means shorts are covering (bullish but exhausting). Falling OI with falling price means longs are closing (bearish but stabilizing).

These four OI-price combinations form a matrix that reveals the nature of any price move. A rally driven by new money entering long (rising OI) is more likely to continue than a rally driven by shorts covering (falling OI). A decline driven by new shorts (rising OI) is more likely to continue than a decline driven by longs exiting (falling OI).

Our oi_momentum strategy directly trades the OI-price relationship. In the sweep, it produced Sharpe 3.34, but validation showed only INJ with edge (2 of 3 periods). The signal exists but is too inconsistent for standalone trading. Like funding rates, OI is most valuable as a component in composite strategies.

How Derivatives Data Leads Spot

Derivatives markets often lead spot for a structural reason: leverage amplifies the impact of information. A trader who learns positive news about SOL and buys spot moves the price by the size of their order. The same trader using 10x leverage on futures moves the price by 10 times their capital, creating a much larger impact per dollar of information.

This leverage effect means derivatives markets react faster to new information. The price impact appears in perpetual futures before it shows up in spot because the leveraged traders are more capital-efficient. Spot traders who monitor derivatives data have a structural information advantage over those who only watch spot price action.

Our derivatives strategies (leverage_composite deployed on ARB, OP, WIF) are specifically designed to capture this information lead. The composite of open interest changes, funding rate levels, and long-short ratio crowding provides a view into leveraged positioning that is invisible on a spot price chart.

The Data Pipeline

We source derivatives data from two places. Binance REST APIs provide open interest, long-short ratios, and premium index with approximately 30 days of history (for OI and LSR) and several months for premium index. The Coinglass API extends this to approximately 6 months at 4-hour resolution on the Hobbyist plan, providing deeper history for backtesting.

The data syncs every 4 hours via an automated pipeline. The backtest engine loads funding rates, OI, LSR, and basis alongside candle data, slicing them no-lookahead at the same timestamps as the primary price data. Strategies access the data through the same interface used for all data types: a dictionary keyed by data type name.

PEPE and SHIB use 1000x contract formats on Binance futures (1000PEPE/USDT:USDT and 1000SHIB/USDT:USDT), which our fetch scripts handle through a contract override mapping. Symbols without derivatives data (BTC spot-only traders, some smaller tokens) produce zero trades in derivatives strategies, which is the expected behavior.

Why Spot Traders Should Care

Even if you never trade futures, derivatives data provides information that improves spot trading decisions. Extreme funding rates signal crowded positioning that creates reversal risk for spot holders. Rising open interest during a rally confirms the move has conviction. A widening basis during accumulation suggests institutional buyers are active.

Our AI enrichment layer incorporates derivatives context when adjusting spot-based strategy signals. A mean reversion long signal on SOL receives a confidence boost if open interest is declining (shorts covering, supporting a bounce) and a confidence reduction if funding is extremely positive (overleveraged longs, correction risk).

The derivatives market is not a separate universe from spot. It is the leveraged expression of the same market dynamics. Ignoring it means ignoring the most capital-efficient, fastest-reacting segment of the crypto market.