Why manage margin
Once a position is open, you can adjust the collateral backing it without closing and reopening. There are two reasons you might want to:- Add margin to lower liquidation risk — more collateral pushes your liquidation price further away from the mark.
- Remove margin to free wallet collateral when the position is comfortably in profit and you want to redeploy capital.
Adds are always allowed
Adding margin is straightforward. The only constraint is your wallet USDC balance — adding margin moves USDC from your wallet into the position’s collateral. New collateral lifts your effective equity directly, which moves the liquidation price away from current mark. There is no upper bound and no health check needed on the add path: more collateral can only make a position safer.Removes are gated by a PnL-aware health check
Removal applies the same safety check as a liquidation. After the proposed removal, your position must still sit above the maintenance margin requirement (MMR = 40 bps venue-wide). The math — including how unrealized PnL feeds in — is documented in Liquidations. If the requested removal would drop your position to or below the maintenance margin requirement, the request is rejected before any funds move. You cannot accidentally remove yourself into a liquidatable state.Min collateral floor
Even when the health check passes, you can’t remove collateral below the $10 per-position minimum — the request is rejected before any funds move.| Rule | Value | What happens if you breach it |
|---|---|---|
| Minimum collateral per position | $10 | Removal is rejected, no funds move |
When part of your collateral came from the payout queue
Part of a position’s collateral can come from the LP payout queue instead of your wallet, and Parquet tracks how much. When you remove margin, the wallet-funded portion comes out first; the queue-funded portion is only touched once the wallet portion is used up. This makes sure removing margin can never quietly drain collateral that was funded by the payout queue.If your position has no queue-drawn collateral, this rule has no effect —
every removal comes from your wallet portion as expected. See
Payout queue for the full picture on how queue-drawn
collateral enters a position.