{{ toast.message }}

{{ t('loading') }}

SHARPZ RESEARCH
{{ userEmail }}
{{ t('totalBalance') }}
{{ formatCurrency(aggregateTotalBalance) }}
{{ t('totalPnl') }}
{{ formatCurrency(aggregateTotalPnl) }}
{{ t('activeAccounts') }}
{{ accounts.length }}
| {{ selectedAccount?.name }} {{ selectedAccount.exchange }} {{ selectedAccount?.strategy }}
{{ userEmail }}
{{ t('initial') }}
{{ formatCurrency(selectedAccount.initial_balance) }}
{{ t('balance') }}
{{ formatCurrency(selectedAccount.portfolio_value) }}
{{ t('totalPnl') }}
{{ formatCurrency(selectedAccount.pnl_total) }} ({{ formatPct(selectedAccount.pnl_total_pct) }})
{{ t('dailyPnl') }}
{{ formatCurrency(selectedAccount.pnl_day) }} ({{ formatPct(selectedAccount.pnl_day_pct) }})
{{ t('drawdown') }}
{{ formatPct(selectedAccount.drawdown * 100) }}
{{ t('hwm') }}
{{ formatCurrency(hwmValue) }}

{{ t('equityCurve') }}

{{ t('exposure') }}

{{ t('monthlyPerformance') }}

{{ t('thMonth') }} {{ t('thStartValue') }} {{ t('thEndValue') }} {{ t('thPnlUsd') }} {{ t('thPnlPct') }} {{ t('thMaxDD') }} {{ t('thPerfFee') }} {{ t('thMgmtFee') }}
{{ t('noData') }}
{{ r.year }}-{{ String(r.month).padStart(2, '0') }} {{ formatCurrency(r.start_value) }} {{ formatCurrency(r.end_value) }} {{ formatCurrency(r.pnl) }} {{ formatPct(r.pnl_pct) }} {{ formatPct(r.max_drawdown * 100) }} {{ formatCurrency(r.performance_fee || 0) }} {{ formatCurrency(r.management_fee || 0) }}

{{ t('depositsWithdrawals') }}

{{ t('thDate') }} {{ t('thType') }} {{ t('thAmount') }} {{ t('thNotes') }}
{{ formatTimestamp(cf.timestamp) }} {{ cf.flow_type === 'deposit' ? t('deposit') : t('withdrawal') }} {{ cf.flow_type === 'deposit' ? '+' : '-' }}{{ formatCurrency(cf.amount) }} {{ cf.notes }}