仪表盘
持仓标的
{{ stats.holdingCount }}
已卖出
{{ stats.soldCount }}
今日提醒
{{ stats.todayAlerts }}
我的持仓
| 代码 | 名称 | 类型 | 现价 | 涨跌幅 | 成本 | 状态 |
|---|---|---|---|---|---|---|
| {{ t.code }} | {{ t.name }} | {{ t.type === 'fund' ? '基金' : '股票' }} | {{ t.current_price ? t.current_price.toFixed(4) : '-' }} | {{ t.change_pct !== null && t.change_pct !== undefined ? t.change_pct.toFixed(2) + '%' : '-' }} | {{ t.avg_cost ? t.avg_cost.toFixed(4) : '-' }} | 持仓中 |
暂无持仓
标的管理
| 代码 | 名称 | 类型 | 策略 | 最大仓位 | 当前仓位 | 收益率 | 状态 | 操作 |
|---|---|---|---|---|---|---|---|---|
| {{ t.code }} | {{ t.name }} | {{ t.type === 'fund' ? '基金' : '股票' }} | {{ getStrategyName(t.strategy_id) }} | {{ t.max_position }}% | {{ t.holding_position != null ? t.holding_position + '%' : '-' }} | {{ formatProfitRate(t) }} | {{ t.status === 'holding' ? '持仓中' : '已卖出' }} |
暂无标的
策略管理
系统模板
{{ tpl.name }}
买入 {{ tpl.buy_ranges.length }} 档 / 卖出 {{ tpl.sell_ranges.length }} 档
我的策略
| 名称 | 模板 | 最大补仓次数 | 买入比例 | 卖出比例 |
|---|---|---|---|---|
| {{ s.name }} | {{ s.template_type }} | {{ s.max_buy_count }} | {{ (s.buy_ratios || []).join(' / ') }} | {{ (s.sell_ratios || []).join(' / ') }} |
暂无策略
持仓记录
| 标的 | 操作 | 价格 | 数量 | 金额 | 时间 | 操作 |
|---|---|---|---|---|---|---|
| {{ p.target_name || p.target_code }} | {{ p.action === 'buy' ? '买入' : '卖出' }} | {{ p.price.toFixed(4) }} | {{ p.quantity }} | {{ p.total.toFixed(2) }} | {{ formatDate(p.traded_at) }} |
暂无记录
提醒历史
| 类型 | 标的 | 内容 | 发送状态 | 时间 | 操作 | |
|---|---|---|---|---|---|---|
| {{ a.type === 'threshold' ? '阈值提醒' : '估值提醒' }} | {{ a.target_name || a.target_code || '-' }} | {{ a.message }} | {{ a.is_sent ? '已发送' : '未发送' }} | {{ formatDate(a.created_at) }} |
暂无提醒
信号历史
| 类型 | 标的 | 原因 | 动作 | 状态 | 时间 | 操作 | |
|---|---|---|---|---|---|---|---|
| {{ s.signal_type }} | {{ s.target_name || s.target_code }} | {{ s.reason }} | {{ s.action_text }} | {{ s.status }} | {{ formatDate(s.created_at) }} |
暂无信号
用户管理
| ID | 用户名 | 角色 | 创建时间 | 操作 |
|---|---|---|---|---|
| {{ u.id }} | {{ u.username }} | {{ u.is_admin ? '管理员' : '普通用户' }} | {{ formatDate(u.created_at) }} |
暂无用户