总资产 (元)
{{ formatMoney(totalAssets) }}
持有盈亏 (元)
{{ formatMoney(totalUnrealizedPnL, true) }}
收益率: {{ formatPercent(totalUnrealizedPnLRate, true) }}
今日预估盈亏 (元)
{{ formatMoney(todayEstimatedPnL, true) }}
账户与分类
维度统计明细
{{ stat.key }}
{{ formatPercent(stat.ratio) }}
金额: {{ formatMoney(stat.value) }}
盈亏: {{ formatMoney(stat.pnl, true) }}
持仓明细 筛选: {{ selectedCategory }}
| 序号 | 名称/代码 | 现价/成本 | 持仓/市值 | 今日涨跌 | 持有盈亏 | 操作 |
|---|---|---|---|---|---|---|
| {{ index + 1 }} |
{{ item.name }}
未更新
{{ item.type === 'cash' || item.id.startsWith('bank_') || item.id.startsWith('portfolio_') ? '-' : item.id }} | {{ item.typeLabel }} | {{ item.accountSource || '未知' }}
{{ item.level2 || '-' }} / {{ item.level3 || '-' }}
{{ item.lastUpdate }}
|
{{ item.type === 'cash' ? (item.currency === 'CNY' ? '1.0000' : item.currentPrice?.toFixed(4)) : (item.currentPrice?.toFixed(4) || '--') }}
{{ item.type === 'cash' ? '-' : item.costPrice.toFixed(4) }}
|
{{ formatMoney(item.marketValue) }}
{{ item.type === 'cash' ? formatMoney(item.amount) + ' ' + item.currency : item.shares + ' 份' }}
|
{{ item.type === 'cash' ? '-' : formatPercent(item.todayChangeRate, true) }}
{{ item.type === 'cash' ? '-' : formatMoney(item.todayPnL, true) }}
|
{{ item.type === 'cash' ? '-' : formatMoney(item.unrealizedPnL, true) }}
{{ item.type === 'cash' ? '-' : formatPercent(item.unrealizedPnLRate, true) }}
|
|
| 暂无持仓记录,请点击右上角添加或导入数据。 | ||||||
历史收益走势
历史记录明细
| 日期 | 总资产 | 总成本 | 当日盈亏 | 累计盈亏 | 上证指数 | 沪深300 | 创业板指 | 科创50 |
|---|---|---|---|---|---|---|---|---|
| {{ record.date }} | {{ formatMoney(record.totalAssets) }} | {{ formatMoney(record.totalCost) }} | {{ formatMoney(record.todayPnL, true) }} | {{ formatMoney(record.totalUnrealizedPnL, true) }} | {{ formatPercent(record.benchmarks?.['上证指数'], true) }} | {{ formatPercent(record.benchmarks?.['沪深300'], true) }} | {{ formatPercent(record.benchmarks?.['创业板指'], true) }} | {{ formatPercent(record.benchmarks?.['科创50'], true) }} |
| 暂无历史记录,每日刷新数据后将自动记录。 | ||||||||