# Funding Rates on Hyperliquid

Hyperliquid settles perpetual funding every **1 hour**. Binance, Bybit, and OKX settle every 8 hours. This difference is not a footnote. It affects compounding, signal freshness, strategy design, and how you should think about APR.

## Settlement frequency comparison

| Exchange        | Settlement interval | Settlements per day | Settlements per year |
| --------------- | ------------------- | ------------------- | -------------------- |
| Binance         | 8 hours             | 3                   | 1,095                |
| Bybit           | 8 hours             | 3                   | 1,095                |
| OKX             | 8 hours             | 3                   | 1,095                |
| **Hyperliquid** | **1 hour**          | **24**              | **8,760**            |

Hyperliquid settles 8× more frequently than the major centralized exchanges.

## Why this matters for yield farming

### More frequent compounding

When you earn funding by holding a delta-neutral position, you receive a payment every settlement period. On Binance, you receive three large payments per day. On Hyperliquid, you receive twenty-four smaller payments.

Mathematically, the same annualized rate compounds more favorably at higher frequency. The difference is modest on a per-day basis but compounds meaningfully over weeks and months.

### APR calculation: the correct formula for Hyperliquid

Because Hyperliquid uses 1-hour settlements, the correct APR formula is:

```
hourly_rate_pct = fundingRate × 100
daily_yield_pct = hourly_rate_pct × 24
APR_pct = hourly_rate_pct × 8760
```

A funding rate of `0.0000123` (the raw decimal from Hyperliquid's API) means:

* 1h rate: 0.00123%
* Daily yield: 0.02952%
* APR: 10.77%

> **Warning:** Do not use 8-hour math for Hyperliquid rates. The formula `rate_8h × 3 × 365` will give you a number that is 8× too large. Zirodelta's interface uses the correct 1-hour basis for all displayed rates and yield hints.

### Faster signal updates

Hyperliquid publishes a **predicted funding rate** for the upcoming settlement period. This prediction updates in real time via WebSocket. One update per block, approximately every 2 seconds.

On a 1-hour settlement cycle, the predicted rate for the next settlement is actionable within minutes. On an 8-hour cycle, you might act on a predicted rate that still has 7 hours until it settles.

This faster feedback loop is part of why Zirodelta's Farm Score™ can react to changing conditions more quickly on Hyperliquid than an equivalent system would on a CEX.

### Strategy timing

On 8-hour settlement exchanges, the optimal entry point for a funding rate farm is just after a settlement. You capture the full 8-hour window. On Hyperliquid, you enter, and the next settlement comes within the hour. There is no large "catch the full period" consideration.

This makes Hyperliquid more forgiving for entry timing. You can open a position at any point in the current hour and you are at most 59 minutes away from your first settlement payment.

## How the predicted rate works

Hyperliquid calculates a predicted funding rate based on the current premium between the perpetual price and the oracle price. The formula:

```
premium = (markPrice - oraclePrice) / oraclePrice
predicted = clamp(premium / fundingIntervalHours, -0.05%, +0.05%)
```

This predicted rate is published in real-time and displayed in Zirodelta's Realtime chart mode. When the predicted rate is high and positive, longs are currently paying at the next settlement. Farm Score factors this in as one of its nine inputs.

## Live data

Zirodelta tracks funding rates across Hyperliquid, Binance, and Bybit simultaneously via the `predictedFundings` endpoint. You can see cross-exchange rate comparison at [zirodelta.com/rates](https://zirodelta.com/rates) 90-day rolling history per coin across all three venues.

When Hyperliquid's rate significantly exceeds CEX rates on the same asset, it signals that Hyperliquid-native traders are more aggressively positioned. This is a Hyperliquid-specific opportunity that cannot be captured by running a strategy on CEX.

> **See also:** [Settlement Mechanics](/hyperliquid/settlement-mechanics.md) · [Farm Score™](/trade/farm-score.md) · [Key Concepts: Funding Rate](/getting-started/key-concepts.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.zirodelta.com/hyperliquid/funding-rates.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
