Profit & Loss
How vault PnL is split between LP and Manager Shares.
Profit attribution
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)Performance fee
High-water mark
Loss attribution
Worked example: profit period
Worked example: loss period
Last updated