Profit & Loss

How vault PnL is split between LP and Manager Shares.

A vault holds a single account balance and a single set of positions. Realized and unrealized PnL accrue to that one account, and the vault then attributes the change to its two share classes (LP and Manager) before any deposit or withdrawal touches the share count.

Profit attribution

If PnL over a period is positive, the manager first takes a performance fee on profits above the vault's high-water mark. The remainder is split pro-rata between LP and Manager balances by their share of the previous period's total balance.

fee_eligible_profit  = max(current_equity - high_watermark, 0)
performance_fee      = fee_eligible_profit * manager_profit_share
remaining_pnl        = period_pnl - performance_fee

lp_ratio  = lp_balance      / (lp_balance + manager_balance)
mgr_ratio = manager_balance / (lp_balance + manager_balance)

lp_delta  = remaining_pnl * lp_ratio
mgr_delta = remaining_pnl * mgr_ratio + performance_fee

high_watermark = max(high_watermark, current_equity)

If manager_profit_share is unset it defaults to zero and no performance fee is taken.

Performance fee

The performance fee is charged only on equity above the previous all-time high (the "high-water mark", or HWM). If the vault has been at a loss since its last peak, no performance fee accrues until the prior peak has been recovered.

High-water mark

The HWM moves monotonically upward through trading PnL. It also tracks deposits and withdrawals so that they do not artificially trigger or skip the performance fee:

  • On a deposit, the HWM increases by the deposit amount. New capital does not retroactively earn or pay performance fees on the prior peak.

  • On a withdrawal, the HWM is reduced by the gross dollar amount paid out. The profit/loss of the vault is accounted for upon withdrawal with regard to calculating the HWM.

The HWM never moves down through trading. Drawdowns must be recovered before the manager earns another performance fee.

Loss attribution

If PnL over a period is negative, the loss is split pro-rata between LP and Manager balances.

Worked example: profit period

A vault with manager_profit_share = 0.20 starts a period at:

The vault trades to a new equity of 1100. An LP deposits.

NAV per LP share rises from 1.00 to 1.08; NAV per Manager Share rises from 1.00 to 1.18 (the manager captured both their pro-rata profit and the 20 USDC performance fee).

Worked example: loss period

A vault starts a period at:

The vault trades to a new equity of 900.

The HWM is unchanged, so the manager will not earn a performance fee until equity recovers above 1000.

Last updated