{{ data.holdings.date }} | {{ data.account || '东莞证券' }} | 数据来源:{{ data.source || '导入' }}
| # | 股票 | 代码 | 持仓 | 成本 | 现价 | 市值 | 盈亏 | 占比 | 备注 |
|---|---|---|---|---|---|---|---|---|---|
| {{ i+1 }} | {{ p.name }} | {{ p.ts_code }} | {{ p.shares.toLocaleString() }}股 | {{ p.cost.toFixed(3) }} | {{ p.current_price.toFixed(2) }} | {{ fmtMoney(p.market_value) }} | {{ p.pnl >= 0 ? '+' : '' }}{{ fmtMoney(p.pnl) }} ({{ p.pnl_pct >= 0 ? '+' : '' }}{{ p.pnl_pct.toFixed(1) }}%) |
{{ (p.market_value / totalMV * 100).toFixed(1) }}%
|
| 日期 | 股票 | 操作 | 价格 | 数量 | 金额 | 备注 |
|---|---|---|---|---|---|---|
| {{ t.date }} | {{ t.name }} {{ t.ts_code }} | {{ t.action }} | {{ t.price.toFixed(2) }} | {{ t.shares.toLocaleString() }} | {{ fmtMoney(t.amount) }} |
暂无交易记录