博弈分析表移除多单成本和空单成本列

This commit is contained in:
2026-07-24 22:43:37 +08:00
parent 6718e5e2cc
commit 970bea5222
+1 -6
View File
@@ -27,16 +27,13 @@
<div class="section-title">机构持仓明细</div> <div class="section-title">机构持仓明细</div>
<div class="table-wrap"> <div class="table-wrap">
<table> <table>
<tr> <th>机构</th><th>多单</th><th>空单</th><th>净持仓</th><th>净盈亏</th>
<th>机构</th><th>多单</th><th>空单</th><th>多单成本</th><th>空单成本</th><th>净持仓</th><th>净盈亏</th>
</tr> </tr>
{% for r in rows %} {% for r in rows %}
<tr> <tr>
<td><strong>{{ r.institution }}</strong></td> <td><strong>{{ r.institution }}</strong></td>
<td>{{ r.long_pos }}</td> <td>{{ r.long_pos }}</td>
<td>{{ r.short_pos }}</td> <td>{{ r.short_pos }}</td>
<td>{{ r.long_cost }}</td>
<td>{{ r.short_cost }}</td>
<td>{{ r.net_pos }}</td> <td>{{ r.net_pos }}</td>
<td> <td>
{% if r.pnl_raw > 0 %} {% if r.pnl_raw > 0 %}
@@ -53,8 +50,6 @@
<td>合计</td> <td>合计</td>
<td>{{ totals.long_pos }}</td> <td>{{ totals.long_pos }}</td>
<td>{{ totals.short_pos }}</td> <td>{{ totals.short_pos }}</td>
<td></td>
<td></td>
<td>{{ totals.net_pos }}</td> <td>{{ totals.net_pos }}</td>
<td>{{ totals.pnl }}</td> <td>{{ totals.pnl }}</td>
</tr> </tr>