8× Payout Cap

Profit on any position is hard-capped at 8× initial margin and the full liability is locked in escrow the moment the order settles.

Protocol modules

Volatility is not a bounded quantity. An index that prints 62 can print 400 in the hour a major exchange halts withdrawals. A payout obligation with no ceiling is an insolvency waiting for the right Tuesday.

maxProfit = 8 × initialMargin
  • The cap is enforced inside closePosition() and liquidate(), not approximated off-chain.
  • Worst-case liability is escrowed at execution time — the reserve exists before the move does.
  • Above the cap the position stops accruing profit but keeps its collateral; it is never force-closed for being too profitable.
  • Traders see the exact payout ceiling on the ticket before they sign. No discovery at settlement.