Key Definitions
| Term | Description |
|---|---|
| totalBalance | Settled cash balance — unaffected by index price movements |
| unrealizedPnL | Aggregate unrealized profit or loss across all open positions (see Position Metrics for the per-position formula) |
| accountEquity | totalBalance + unrealizedPnL |
| positionMargin | Collateral locked per open position, calculated from the current index price |
| openOrderMargin | Collateral reserved for open (unfilled) orders |
Total Balance
Total balance accumulates all settled cash flows and does not fluctuate with index price movements.Account Equity
Account equity includes unrealized PnL, so it fluctuates in real time as the index price moves.Available Balance
Available balance is the amount free for new orders or withdrawals. It deducts position margin (computed at the current index price) and open order margin from account equity.Withdrawable Balance
Withdrawable balance is a more conservative measure than available balance. Unrealized profits cannot be withdrawn — only realized gains contribute. Unrealized losses reduce the withdrawable balance immediately, and margin is locked at the entry price rather than the current index price.Usage in API
These calculations are used in the Get Account Balances response. Note thataccountEquity is not returned directly — it can be derived as totalBalance + unrealizedPnl using the unrealizedPnl values from the Get Account Positions response. The top-level margin field in the balances response represents the total position margin in use across all markets.