📊 基金持仓管理
👤 {{ username }}
刷新静态数据
刷新动态数据
{{ refreshHint }}
+ 添加基金
📥 导入
📤 导出
退出
总成本
¥{{ summary.total_cost?.toLocaleString() || '0' }}
总市值
¥{{ summary.total_value?.toLocaleString() || '0' }}
浮动盈亏
¥{{ Math.abs(summary.total_pnl || 0).toLocaleString() }}
盈亏比例
{{ (summary.pnl_pct >= 0 ? '+' : '') }}{{ summary.pnl_pct?.toFixed(2) || '0.00' }}%
{{ p.label }}
{{ p.profit >= 0 ? '+' : '-' }}¥{{ fmtAmount(Math.abs(p.profit)) }}
({{ p.pct >= 0 ? '+' : '' }}{{ p.pct.toFixed(2) }}%)
{{ row.fund_code }}
{{ displayFundName(row) }}
{{ holdingTime(row) }}
{{ Number(row.dynamic?.score_weighted).toFixed(1) }} 加权
{{ Number(row.dynamic?.score_4433).toFixed(1) }} 4433
-
{{ row.static?.risk_rating || '-' }}
金额 ¥{{ fmtAmount(Number(row.shares) * Number(row.buy_price)) }}
净值 {{ Number(row.buy_price).toFixed(4) }}
份数 {{ Math.round(Number(row.shares)).toLocaleString() }}
金额 {{ row.dynamic?.nav ? '¥' + fmtAmount(Number(row.shares) * Number(row.dynamic.nav)) : '-' }}
净值 {{ row.dynamic?.nav ? Number(row.dynamic.nav).toFixed(4) : '-' }}
金额 {{ getPnl(row) >= 0 ? '+' : '-' }}¥{{ fmtAmount(Math.abs(getPnl(row))) }}
比率 {{ getPnlPct(row) >= 0 ? '+' : '' }}{{ getPnlPct(row).toFixed(2) }}%
年化 {{ row.annualized_return >= 0 ? '+' : '' }}{{ Number(row.annualized_return).toFixed(2) }}%-
收益 {{fmtPeriodProfit(row, row.dynamic?.return_1w)}}{{fmtPct(row.dynamic?.return_1w)}}
排名 {{getRankPct(row, '近1周')}}
同类 ({{fmtDiff(row.dynamic?.return_1w, getPeerAvg(row, '近1周'))}}%) {{fmtPct(getPeerAvg(row, '近1周'))}}
收益 {{fmtPeriodProfit(row, row.dynamic?.return_1m)}}{{fmtPct(row.dynamic?.return_1m)}}
排名 {{getRankPct(row, '近1月')}}
同类 ({{fmtDiff(row.dynamic?.return_1m, getPeerAvg(row, '近1月'))}}%) {{fmtPct(getPeerAvg(row, '近1月'))}}
收益 {{fmtPeriodProfit(row, row.dynamic?.return_3m)}}{{fmtPct(row.dynamic?.return_3m)}}
排名 {{getRankPct(row, '近3月')}}
同类 ({{fmtDiff(row.dynamic?.return_3m, getPeerAvg(row, '近3月'))}}%) {{fmtPct(getPeerAvg(row, '近3月'))}}
收益 {{fmtPeriodProfit(row, row.dynamic?.return_1y)}}{{fmtPct(row.dynamic?.return_1y)}}
排名 {{getRankPct(row, '近1年')}}
同类 ({{fmtDiff(row.dynamic?.return_1y, getPeerAvg(row, '近1年'))}}%) {{fmtPct(getPeerAvg(row, '近1年'))}}
收益 {{fmtPeriodProfit(row, row.dynamic?.return_2y)}}{{fmtPct(row.dynamic?.return_2y)}}
排名 {{getRankPct(row, '近2年')}}
同类 ({{fmtDiff(row.dynamic?.return_2y, getPeerAvg(row, '近2年'))}}%) {{fmtPct(getPeerAvg(row, '近2年'))}}
收益 {{fmtPeriodProfit(row, row.dynamic?.return_3y)}}{{fmtPct(row.dynamic?.return_3y)}}
排名 {{getRankPct(row, '近3年')}}
同类 ({{fmtDiff(row.dynamic?.return_3y, getPeerAvg(row, '近3年'))}}%) {{fmtPct(getPeerAvg(row, '近3年'))}}
{{ displayFundName(currentFund) }}
{{ currentFund?.fund_code }}
{{ currentFund?.static?.risk_rating || '-' }}
{{ currentFund?.static?.fund_type }}
买入金额¥{{ fmtAmount(Number(currentFund.shares) * Number(currentFund.buy_price)) }}
当前市值¥{{ currentFund.dynamic?.nav ? fmtAmount(Number(currentFund.shares) * Number(currentFund.dynamic.nav)) : '-' }}
浮动盈亏{{ getPnl(currentFund) >= 0 ? '+' : '' }}¥{{ fmtAmount(Math.abs(getPnl(currentFund))) }}
盈亏比率{{ getPnlPct(currentFund) >= 0 ? '+' : '' }}{{ getPnlPct(currentFund).toFixed(2) }}%
年化回报{{ currentFund.annualized_return >= 0 ? '+' : '' }}{{ Number(currentFund.annualized_return).toFixed(2) }}%-
持有时间{{ holdingTime(currentFund) }}
⭐ 综合评分
{{ Number(detailScore).toFixed(1) }}
-
📋 交易信息
🔍 基金档案
👤 基金经理履历
{{ currentFund.static?.manager_profile }}
📈 近期收益表现
{{ r.label }}
{{ r.value }}{{ r.value !== '-' ? '%' : '' }}
{{ aiAnswer }}
单位净值走势
点击"加载净值数据"获取走势图
累计收益率走势
—
同类分组信息
4433 法则判定明细 (得分: {{ currentFund.score_detail.total_score }} / 7)
加权排名评分 (得分: {{ currentFund.score_detail.weighted_score.toFixed(1) }} / 10)
暂无评分数据,请尝试刷新动态数据。
风险评级{{ currentFund.static?.risk_rating || '-' }}
年化波动率{{ currentFund.dynamic?.annual_volatility != null ? Number(currentFund.dynamic.annual_volatility).toFixed(2)+'%' : '-' }}
最大回撤{{ currentFund.dynamic?.max_drawdown_1y != null ? Number(currentFund.dynamic.max_drawdown_1y).toFixed(2)+'%' : '-' }}
日涨跌幅{{ fmtPct(currentFund.dynamic?.daily_change) }}
夏普比率{{ currentFund.dynamic?.sharpe_ratio != null ? Number(currentFund.dynamic.sharpe_ratio).toFixed(2) : '-' }}
信息比率{{ currentFund.dynamic?.info_ratio != null ? Number(currentFund.dynamic.info_ratio).toFixed(2) : '-' }}
回撤走势
请先在"走势分析"加载净值数据
前十大重仓股
{{ idx + 1 }}
{{ s }}
暂无重仓股数据
跟踪误差
{{ Number(currentFund.dynamic.tracking_error).toFixed(2) }}%
将CSV文件拖到此处或点击上传
预览 (共 {{ csvTotal }} 条):