{% extends "base.html" %} {% load static %} {% block title %}账户持仓 - {{ account.account_name }} - AgomTradePro{% endblock %} {% block content %}
| 资产代码 | 资产名称 | 数量 | 可用数量 | 成本价 | 现价 | 市值 | 盈亏 | 盈亏% | 首次买入日 |
|---|---|---|---|---|---|---|---|---|---|
| {{ position.asset_code }} | {{ position.asset_name|default:"-" }} | {{ position.quantity|floatformat:2 }} | {{ position.available_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 }}% | {{ position.first_buy_date|date:"Y-m-d" }} |
暂无持仓