{% extends "base.html" %} {% load static %} {% block title %}账户详情 - {{ account.account_name }} - AgomTradePro{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ account.account_name }}

账户详情 · 类型:{{ account_type }}

返回账户列表 {% if manual_trade_portfolio_id %} 导入成交流水 {% endif %} 创建分享链接 巡检邮件配置

账户概览

持仓概览

{% if positions %} {% for position in positions %} {% endfor %}
资产代码 资产名称 数量 成本价 现价 市值 盈亏 盈亏%
{{ position.asset_code }} {{ position.asset_name|default:"-" }} {{ position.quantity|floatformat:2 }} ¥{{ position.avg_cost|floatformat:2 }} ¥{{ position.current_price|floatformat:2 }} ¥{{ position.market_value|floatformat:2 }} ¥{{ position.unrealized_pnl|floatformat:2 }} {{ position.unrealized_pnl_pct|floatformat:2 }}%
{% else %}

暂无持仓

{% endif %}

最近交易

{% if trades %} {% for trade in trades %} {% endfor %}
日期 资产代码 方向 数量 价格 金额 盈亏
{{ trade.execution_date|date:"Y-m-d" }} {{ trade.asset_code }} {% if trade.action == 'buy' %}买入{% else %}卖出{% endif %} {{ trade.quantity }} ¥{{ trade.price|floatformat:2 }} ¥{{ trade.amount|floatformat:2 }} {% if trade.realized_pnl %}¥{{ trade.realized_pnl|floatformat:2 }}{% else %}-{% endif %}
{% else %}

暂无交易记录

{% endif %}

分享链接

新建分享链接
{% if share_links %} {% for link in share_links %} {% endfor %}
标题 短码 级别 状态 访问次数 最近快照 操作
{{ link.title }} {% if link.subtitle %}
{{ link.subtitle }}
{% endif %}
{{ link.short_code }} {{ link.share_level }} {{ link.status }} {{ link.access_count }} {% if link.last_snapshot_at %}{{ link.last_snapshot_at|date:"Y-m-d H:i" }}{% else %}-{% endif %} 打开 编辑
{% else %}

该账户还没有分享链接

{% endif %}
{% endblock %}