Funding Rate Arbitrage Returns: How to Calculate Net APR and Break-Even 2026年07月15日 – Posted in: cryptoarbitrage software

Funding Rate Arbitrage Returns: How to Calculate Net APR, Fees, and Break-Even

A headline funding rate of 40% APR can still lose money. This guide shows the full cost stack, the break-even math, and how to size the short leg, with worked examples and an inline calculator.

Most funding rate arbitrage write-ups stop at the gross number: take the current funding rate, multiply by the number of intervals in a year, and present the result as the yield. That figure is a starting point, not a return. Between it and your realized profit sits a stack of costs and one uncomfortable fact: funding changes every interval, so the rate you entered on is rarely the rate you exit on.

This article is the numbers-first companion to our funding rate arbitrage guide and live scanner. If you have not read how the trade is constructed, start there. Here we focus on a single question that decides whether the strategy is worth running at all: what is the net return, and what funding rate do you actually need to break even?

Start with gross funding APR

Perpetual funding is quoted per interval, most commonly every 8 hours, which is three times per day. The gross annualized rate assumes the current rate persists unchanged:

# Gross funding APR
intervals_per_day = 24 / interval_hours      # 8h -> 3
gross_APR = funding_rate_per_interval * intervals_per_day * 365

# Example: 0.01% per 8h
# gross_APR = 0.0001 * 3 * 365 = 0.1095 = 10.95% per year

The persistence assumption is the first thing to distrust. Funding mean-reverts. A rate that is elevated today is elevated because positioning is crowded, and crowded positioning unwinds. Treat gross APR as a ranking signal across opportunities, never as a forecast of what you will collect.

The cost stack that turns gross into net

Every funding arbitrage position pays to open and pays to close. On a cash-and-carry setup (long spot, short perpetual of the same asset) you cross the book on two legs at entry and two legs at exit. The costs that matter:

Cost Where it hits Typical magnitude
Trading fees Each leg, entry and exit Maker 0.01 to 0.02%, taker 0.04 to 0.10% per fill
Slippage Each leg, worse on thin alts 0.01 to 0.10%+ per fill
Spot borrow Only if the spot leg is leveraged Varies, can exceed the funding edge
Funding variance Every interval you hold The rate can compress or flip
Rebalancing When one leg needs margin top-up Extra fills, extra fees

Net edge formula. Amortize the round-trip cost over the number of intervals you actually hold:

# Round-trip cost as a percentage of notional
round_trip_cost = (fee_per_leg + slippage_per_leg) * 4      # 2 legs x open+close

# Net collected over a holding window of H intervals
gross_collected = funding_rate_per_interval * H
net_collected   = gross_collected - round_trip_cost

# Break-even: how many intervals just to cover entry+exit
break_even_intervals = round_trip_cost / funding_rate_per_interval

Worked example 1: single-venue cash-and-carry

Long spot BTC, short BTC perpetual on the same exchange. Funding is +0.01% per 8h, so as the short you receive it. Assume taker fills on both legs.

Funding per interval +0.010%
Gross APR (0.010% x 3 x 365) 10.95%
Fee per leg (taker) 0.045%
Slippage per leg 0.020%
Round-trip cost ((0.045 + 0.020) x 4) 0.260%
Break-even (0.260 / 0.010) 26 intervals (~8.7 days)

The trap is visible immediately. At 0.01% per 8h you must hold for roughly nine days just to cover the cost of getting in and out. Hold for a month (about 90 intervals) and your net is 0.90% minus 0.26%, or 0.64% for the month, which annualizes cleanly only if funding stays put. Churn the position weekly and the fees eat you alive. This is why funding arbitrage rewards patience and punishes overtrading, and why using maker orders (cutting fee-per-leg from 0.045% to roughly 0.015%) can more than halve your break-even.

Worked example 2: cross-exchange funding spread

Same underlying, two venues. Exchange A funds at +0.040% per 8h, Exchange B at +0.005%. Short the perpetual on A (receive 0.040%), long the perpetual on B (pay 0.005%). You are delta-neutral (short one perp, long another) and capture the spread.

Net funding per interval (0.040 – 0.005) +0.035%
Gross spread APR (0.035% x 3 x 365) 38.3%
Fee per leg (perp taker) 0.045%
Slippage per leg 0.020%
Round-trip cost ((0.045 + 0.020) x 4) 0.260%
Break-even (0.260 / 0.035) ~7.4 intervals (~2.5 days)

The cross-exchange spread breaks even far faster because the per-interval edge is larger. The catch is that these spreads compress faster too, since any capital can arrive to close them, and you now carry two exchange accounts, two margin buckets, and the risk that a withdrawal freeze or outage on one venue leaves you half-hedged. Wider edge, more moving parts.

The break-even funding rate

Flip the question around. If you know your cost and how long you intend to hold, you can compute the minimum funding rate worth entering on:

# Minimum funding rate per interval to break even over H intervals
required_rate = round_trip_cost / H

# Cost 0.26%, planned hold 15 intervals (5 days):
# required_rate = 0.26 / 15 = 0.0173% per 8h
# Anything below that is a losing trade at your cost structure.

This single line is the discipline the whole strategy needs. Screen the scanner, then reject every row whose funding does not clear your required rate for a realistic holding window. High APR on a row you can only hold two days, at taker cost, is often a loss.

Net APR calculator

Enter your own numbers. The calculator shows gross APR, break-even intervals, and the net APR you would keep if funding held for a full year at your cost structure.

Funding arbitrage net APR calculator

Sizing the short leg so a rally does not liquidate you

The most common way funding arbitrage goes wrong is not funding at all. It is liquidation of the short perpetual leg during a sharp rally, before the offsetting gain on the spot leg can be realized. Delta-neutral on paper does not mean safe in practice, because spot and perpetual usually sit in separate margin buckets with separate liquidation logic.

  • Keep the short perpetual at low effective leverage. A 1:1 hedge financed at 2 to 3x leverage survives a 30 to 40% adverse move; the same hedge at 10x is liquidated by a routine wick.
  • Prefer unified or portfolio margin where the spot leg collateralizes the short, so the two legs offset inside one account instead of racing each other.
  • Automate margin top-ups or partial unwinds, and set an alert well before the liquidation price, not at it.
  • Remember that funding you are collecting is small; one liquidation can erase months of it. The margin buffer is not a cost, it is the strategy.

Common ways the trade loses money

  • Quoting gross, ignoring the stack. The 40% APR row is 40% before fees, slippage, and the near-certainty that funding falls.
  • Taker in and out on thin funding. Long break-even, and you exit before you clear it.
  • Under-margining the short leg. A wick liquidates you while your hedge is still intact elsewhere.
  • Wrong interval assumption. Some assets fund every 4h or 1h; annualizing them as 8h overstates APR by 2x or more.
  • Chasing the top row. The highest funding is usually a low-liquidity alt with fat slippage that flips within an interval.
  • Ignoring transfer latency. On cross-exchange setups, the time to move collateral is time you are unhedged.

Frequently asked questions

How do I calculate the net return on a funding arbitrage trade?
Take the funding collected per interval times the number of intervals held, then subtract the full round-trip cost (fee plus slippage on every leg, both entry and exit, plus any borrow). Annualize only if you assume the rate persists, which it usually will not.
What funding rate do I need to break even?
Divide your round-trip cost by the number of intervals you plan to hold. If round-trip cost is 0.26% and you hold 15 intervals, you need at least 0.0173% per interval to break even. Below that, the trade loses at your cost structure.
Should I use maker or taker orders?
Maker wherever the leg allows it. Cutting fee-per-leg from roughly 0.045% to 0.015% can more than halve your break-even, which matters most on thin funding where the edge per interval is small.
Why did my high-APR trade still lose money?
Almost always one of three reasons: funding compressed or flipped before you cleared break-even, taker fees on a short holding window exceeded the collected funding, or the short leg was liquidated on a rally. High gross APR does not survive any of these.
Does a higher funding rate always mean a better opportunity?
No. The highest rates cluster on low-liquidity assets with wide slippage and fast reversion. A moderate rate on a deep, stable market often nets more after costs and holds longer.

Screen live funding with the right math

Use the BJF live funding scanner to find candidates, then run each one through the break-even test above before you commit capital.

Open the live funding scanner