{% extends "base.html" %} {% load static %} {% block title %}我的账户 - AgomTradePro{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
管理您的投资组合和持仓
| 资产代码 | 资产名称 | 数量 | 成本价 | 现价 | 市值 | 盈亏 | 盈亏% | 操作 |
|---|---|---|---|---|---|---|---|---|
| {{ position.asset_code }} | - | {{ position.shares|floatformat:2 }} | ¥{{ position.avg_cost|floatformat:2 }} | {% if position.current_price %}¥{{ position.current_price|floatformat:2 }}{% else %}-{% endif %} | ¥{{ position.market_value|floatformat:2 }} | ¥{{ position.unrealized_pnl|floatformat:2 }} | {{ position.unrealized_pnl_pct|floatformat:2 }}% | 平仓 |
暂无投资组合
{% endif %}