Portfolio

Manage and monitor your investment portfolio

Total Value

${{ portfolioSummary().totalValue.toLocaleString() }}

account_balance_wallet

Total P&L

{{ portfolioSummary().totalPnL > 0 ? '+' : '' }}${{ portfolioSummary().totalPnL.toLocaleString() }} ({{ portfolioSummary().totalPnLPercent.toFixed(2) }}%)

trending_up trending_down

Day Change

{{ portfolioSummary().dayChange > 0 ? '+' : '' }}${{ portfolioSummary().dayChange.toLocaleString() }} ({{ portfolioSummary().dayChangePercent.toFixed(2) }}%)

today

Cash Available

${{ portfolioSummary().cash.toLocaleString() }}

attach_money

Current Positions

@if (isLoading()) {
Loading portfolio...
} @else if (error()) {
error

{{ error() }}

} @else if (positions().length === 0) {
account_balance_wallet

No positions found

} @else {
Symbol {{ position.symbol }} Quantity {{ position.quantity.toLocaleString() }} Avg Price ${{ position.avgPrice.toFixed(2) }} Current Price ${{ position.currentPrice.toFixed(2) }} Market Value ${{ position.marketValue.toLocaleString() }} Unrealized P&L {{ position.unrealizedPnL > 0 ? '+' : '' }}${{ position.unrealizedPnL.toLocaleString() }} ({{ position.unrealizedPnLPercent.toFixed(2) }}%) Day Change {{ position.dayChange > 0 ? '+' : '' }}${{ position.dayChange.toFixed(2) }} ({{ position.dayChangePercent.toFixed(2) }}%)
}
trending_up

Performance charts and analytics will be implemented here

receipt

Order history and management will be implemented here