Polymarket Bot Tutorial · Chapter 24 of 32

Polymarket added native perpetual futures in 2026 - leveraged, never-expiring price bets on crypto, stocks, and indices. This chapter is the bot view: how leverage and funding really work, the liquidation math that keeps you alive, ATR-based sizing, and a working order-with-stop skeleton.

Perps in 60 seconds

A perpetual future is a bet on a price that simply never expires. To keep that never-ending price honest, the exchange uses a gentle nudge called the funding rate: whenever the perp drifts above the real spot price, longs pay shorts a small fee, and when it drifts below, shorts pay longs. That tug-of-war keeps the perp tethered to spot. Add leverage and you control a large position with a small deposit, which magnifies both the gain and the loss - and if the loss eats your deposit, the exchange force-closes you. That force-close is liquidation.

Polymarket launched its own perps in 2026 as part of its CFTC-regulated US offering, currently rolling out through a beta on crypto, equities (think NVDA, NFLX), and indices like the S&P 500. They behave nothing like binary prediction markets - liquidation is real, the sizing math is different, and the edge sources are their own. Here is what this chapter covers.

  • What perps are and why they are different
  • Native leverage on Polymarket
  • Funding rate mechanics
  • Liquidation distance math
  • ATR-based position sizing
  • Polymarket perps vs Binance and Bybit
  • Risk: liquidation cascade scenarios
  • Code: a leveraged perp order with a stop

What perps are and why they are different

Polymarket Perpetual Futures, launched in 2026, are a different instrument from binary prediction markets. A perp is continuous price exposure to an underlying - BTC and other crypto, plus equities and indices - with native leverage and a funding rate, and no resolution date.

How they differ from binaries:

  • Continuous: no expiration, no resolution to wait for.
  • Leveraged: native leverage, no proxy-contract gymnastics - but a small deposit controls a big position.
  • Funded: positive funding pays shorts, negative pays longs, and it accrues continuously.
  • Liquidatable: run out of margin and the exchange force-closes you. That is a real, realized loss.

Strategy-wise, trading perps is closer to leveraged CFD trading than to prediction-market trading. The edges - technicals, funding carry, basis trades - are entirely different from the ones that work on binaries.

Native leverage on Polymarket

Leverage is set per market and is still moving as the beta rolls out: early waitlist access started around 10x, and the beta has shown up to 20x on some stock and index markets. Always read the live cap before sizing - do not assume a number.

The rule that matters: the higher the leverage, the smaller the move that liquidates you. At 10x, a 10% adverse move wipes the position; at 20x, roughly 5%. BTC routinely moves 10% inside a week, so high-leverage positions held for days carry non-trivial liquidation odds.

Practical guidance: 2x to 5x for swing trades held days to weeks; 5x to 10x for day trades; anything higher only for sub-hour trades with tight stops. Past 10x for a retail account held overnight is mostly gambling - the funding cost plus the liquidation tail eats the expected return.

Funding rate mechanics

Funding is the periodic payment longs and shorts exchange to keep the perp price tethered to spot. It is computed from the price gap: a positive gap (perp above spot) means longs pay shorts; a negative gap means shorts pay longs.

Typical magnitudes run around 0.01% to 0.05% per 8-hour period in calm conditions, and can spike toward 0.5% per period in extreme moves. Annualized, that is anywhere from a few percent to tens of percent - very material for a strategy that holds for days.

Funding can even be the entire edge: take the side that gets paid, then hedge the price exposure with spot or another perp. That is the classic basis-trade carry.

Liquidation distance math

The liquidation price for a long is roughly entry × (1 - 1/leverage). At 10x, a long entered at $50,000 BTC liquidates near $45,000 - a 10% adverse move.

For a short it is entry × (1 + 1/leverage). At 10x short from $50k, liquidation sits near $55k.

This ignores the maintenance-margin buffer (usually 0.5% to 1% in your favor off the theoretical price). Use the simple formula for a sanity check, then confirm the exchange's actual maintenance margin for the precise number.

The practical target: pick a size and leverage so the liquidation distance is more than twice the underlying's daily volatility. For BTC's roughly 3% daily volatility, that means leverage of about 16x or less for a position held without a stop.

ATR-based position sizing

Average True Range (ATR) is a volatility measure - the average daily price range over the last N days. Sizing off ATR ties your risk to current conditions instead of a fixed guess.

The pattern: risk a fixed dollar amount per trade, say $50. Position size = risk / (ATR × leverage). If BTC's daily ATR is $1,500 (about 3% of $50k) and you are 10x leveraged, position size is $50 / (1,500 × 0.1), or about $3,300 of notional.

This automatically shrinks positions when volatility is high and expands them when it is low, so a single bad day moves your equity by a bounded amount no matter the regime.

Polymarket perps vs Binance and Bybit

How Polymarket's young perps stack up against the big CEX venues, as of mid-2026.

 Polymarket PerpsBinance PerpsBybit Perps
Max leverageup to ~20x (beta)125x100x
SettlementpUSD on PolygonUSDT (internal ledger)USDT
KYC requiredyes (CFTC-regulated US)yes (most regions)yes
API maturitynew, growingmature, deepmature
Liquidity (BTC)thinner (early)extremely deepdeep

Polymarket perps are the right pick when you are already on Polymarket and the simplicity of one venue matters - especially for a basis trade against your own prediction-market positions. For a standalone perp strategy at size, the CEXes still win on depth and leverage. Most builders we know use Polymarket perps as the hedge leg, not the main book.

Risk: liquidation cascade scenarios

The catastrophic perp failure is a single adverse move big enough to liquidate, where the liquidation itself adds book pressure that liquidates the next wave of positions. Crypto has produced several 10% to 20% intraday moves that cascaded 10x+ longs out within hours. Polymarket perps are not immune, and with thinner early liquidity a similar move would liquidate even faster.

Defenses, and you want all three:

  • A manual stop above the liquidation price - place a hard limit comfortably inside your liquidation level so you exit before the auto-liquidator does (and skip its fee).
  • Position-size limits - never risk more than about 10% of equity on a single perp.
  • Halt on regime change - if 24h volatility runs past twice its baseline, cut size or pause new entries.

Code: a leveraged perp order with a stop

The order-placement skeleton for a Polymarket perp long with a hard stop sized from your risk budget. It computes the stop from the liquidation distance, so the stop always fires first.

def open_long_with_stop(symbol, entry_px, leverage, risk_usd):
    # stop sits 70% of the way to liquidation, so it triggers first
    liquidation_px = entry_px * (1 - 1/leverage)
    stop_px        = entry_px * (1 - 0.7/leverage)
    risk_per_share = entry_px - stop_px
    shares         = risk_usd / risk_per_share

    long_order = perp_api.place_order(
        symbol=symbol, side="long", size=shares, leverage=leverage,
        order_type="market")
    if long_order.status != "filled":
        return None

    # reduce-only stop: can only close, never flip you short
    stop_order = perp_api.place_order(
        symbol=symbol, side="close", size=shares, stop_price=stop_px,
        order_type="stop_market", reduce_only=True)
    return {"long": long_order, "stop": stop_order}

The reduce-only flag means the stop can only close the existing position, never open a new short. Production additions: a trailing stop once you are in profit, a funding-cost monitor, and a position-size halt on a volatility spike.

Key takeaways

  • Polymarket perps are real and new (launched 2026, CFTC-regulated US, still in beta rollout) - leveraged, never-expiring bets on crypto, stocks, and indices.
  • Funding tethers the perp to spot; leverage magnifies both ways; liquidation is the price that ends the trade.
  • Leverage is set per market and moving (around 10x to 20x in the beta) - read the live cap, and most pros still run 2x to 5x.
  • Size off ATR and keep your liquidation distance more than twice your stop. A reduce-only stop must fire before the liquidator.
  • Best used as the hedge leg of a basis trade against your prediction-market positions, not as a standalone deep-liquidity venue.

Frequently asked questions

What leverage does Polymarket perps support?
It varies by asset and is rolling out through a beta. Early waitlist access started around 10x, and the beta has shown up to 20x on some stock and index markets. The cap is set per market and is still moving, so check the live cap before you size anything. Higher leverage means a tighter liquidation distance - 20x means a roughly 5% adverse move wipes you - so most disciplined traders run 2x to 5x even when more is offered.
How does the funding rate work on Polymarket perps?
Funding is a periodic payment between long and short holders that keeps the perp price tethered to spot. When perps trade above spot, funding is positive and longs pay shorts; below spot, shorts pay longs. The cycle is commonly 8 hours. A funding-carry strategy takes the side that gets paid and hedges the price exposure elsewhere.
How are Polymarket perps different from Binance or Bybit?
Polymarket perps are pUSD-margined, settle on Polygon, and are part of Polymarket's CFTC-regulated US offering launched in 2026 - so they are newer, the asset list is smaller, and liquidity is thinner than a big CEX. The CEXes still win on depth and max leverage. Use Polymarket perps when staying on one venue (and basis-trading against your prediction-market positions) matters more than raw liquidity.
How do I size a leveraged perp position?
Use ATR-based sizing: position size = bankroll fraction * bankroll / (ATR over N days * leverage). Cap leverage to whatever keeps your liquidation distance at more than twice your stop distance. With a 5% stop and 10x leverage you are one stop from liquidation - too tight. With a 5% stop and 3x leverage, liquidation sits near 33% away - safe.
What happens at liquidation?
Your position is force-closed at the liquidation price. Whatever collateral is left after the loss returns to your account, usually minus a liquidation fee. Plan for a worst case where slippage pushes the real exit 1 to 3% beyond the marked liquidation price in fast markets - thin books make this worse.
Are Polymarket perps available everywhere?
Not yet. Perps launched in 2026 as a beta under Polymarket's CFTC-regulated US offering and are rolling out to more users over time, subject to regional rules. Always confirm access and your jurisdiction before depositing into perps.