Real-time tracking for Master Chileung
Total Balance (USDC.e)
{{ totalPositionsCount }}
Currently open markets
{{ totalTradesCount }}
Across all synced wallets
{{ Object.keys(portfolioData).length }}
Connected accounts
| Token ID | Shares (Amount) | Avg Price | Total Cost | Unrealized P&L |
|---|---|---|---|---|
| No active positions found. | ||||
|
{{ pos.title || pos.asset }}
Outcome: {{ pos.outcome || 'Unknown' }}
|
{{ formatNumber(pos.size, 2) }} | {{ formatMoney(pos.avgPrice * 100, 2) }}¢ | ${{ formatMoney(pos.initialValue, 2) }} | {{ Number(pos.cashPnl) > 0 ? '+' : '' }}${{ formatMoney(pos.cashPnl, 2) }} |
| Market / Outcome | Total Bought | Avg Buy Price | Total Sold | Avg Sell Price | Realized P&L |
|---|---|---|---|---|---|
| No combined trades found. | |||||
|
{{ trade.title || trade.asset }}
Outcome: {{ trade.outcome || 'Unknown' }}
|
{{ formatNumber(trade.buyShares, 2) }} | {{ formatMoney(trade.buyAvgPrice * 100, 2) }}¢ | {{ formatNumber(trade.sellShares, 2) }} | {{ formatMoney(trade.sellAvgPrice * 100, 2) }}¢ | {{ Number(trade.pnl) > 0 ? '+$' : (Number(trade.pnl) < 0 ? '-$' : '$') }}{{ formatMoney(Math.abs(trade.pnl), 2) }} |