2022-10-17 06:20:30 +00:00
|
|
|
{% include 'partials/notify.html' %}
|
2022-10-21 23:15:27 +00:00
|
|
|
<table class="table is-fullwidth is-hoverable" id="positions-table">
|
2022-10-17 06:20:30 +00:00
|
|
|
<thead>
|
2022-10-21 23:15:27 +00:00
|
|
|
<th>account</th>
|
|
|
|
<th>asset</th>
|
|
|
|
<th>price</th>
|
2022-11-29 07:20:39 +00:00
|
|
|
<th>units</th>
|
|
|
|
<th>quote</th>
|
2022-10-21 23:15:27 +00:00
|
|
|
<th>P/L</th>
|
|
|
|
<th>side</th>
|
2022-11-29 07:20:39 +00:00
|
|
|
<th>trades</th>
|
2022-10-17 06:20:30 +00:00
|
|
|
<th>actions</th>
|
|
|
|
</thead>
|
|
|
|
{% for item in items %}
|
2022-10-21 23:15:27 +00:00
|
|
|
<tr class="
|
|
|
|
{% if item.unrealized_pl > 0 %}has-background-success-light
|
|
|
|
{% elif item.unrealized_pl < 0 %}has-background-danger-light
|
|
|
|
{% endif %}">
|
2022-11-02 18:24:56 +00:00
|
|
|
<td>{{ item.account }}</td>
|
2022-10-21 23:15:27 +00:00
|
|
|
<td>{{ item.symbol }}</td>
|
2022-11-02 18:24:56 +00:00
|
|
|
<td>{{ item.price }}</td>
|
2022-11-02 19:09:50 +00:00
|
|
|
<td>{{ item.units }}</td>
|
|
|
|
<td>{{ item.value }}</td>
|
2022-10-21 23:15:27 +00:00
|
|
|
<td>{{ item.unrealized_pl }}</td>
|
2022-11-29 07:20:39 +00:00
|
|
|
<td>
|
|
|
|
{% if item.side == 'long' %}
|
|
|
|
<span class="icon has-text-success" data-tooltip="long">
|
|
|
|
<i class="fa-solid fa-up"></i>
|
|
|
|
</span>
|
|
|
|
{% elif item.side == 'short' %}
|
|
|
|
<span class="icon has-text-danger" data-tooltip="short">
|
|
|
|
<i class="fa-solid fa-down"></i>
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
2022-11-29 07:20:39 +00:00
|
|
|
<td>{{ item.trade_ids|length }}</td>
|
2022-10-17 06:20:30 +00:00
|
|
|
<td>
|
|
|
|
<div class="buttons">
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
2022-10-27 17:08:40 +00:00
|
|
|
hx-get="#"
|
2022-10-17 06:20:30 +00:00
|
|
|
hx-trigger="click"
|
|
|
|
hx-target="#{{ type }}s-here"
|
|
|
|
class="button is-info">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-pencil"></i>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
2022-10-21 23:15:27 +00:00
|
|
|
hx-delete="#trade-close-confirm"
|
2022-10-17 06:20:30 +00:00
|
|
|
hx-trigger="click"
|
2022-10-29 11:43:13 +00:00
|
|
|
hx-target="#positions-table"
|
|
|
|
hx-confirm="Are you sure you wish to close {{ item.symbol }}?"
|
2022-10-17 06:20:30 +00:00
|
|
|
class="button is-danger">
|
|
|
|
<span class="icon-text">
|
2022-10-21 23:15:27 +00:00
|
|
|
<span class="icon">
|
2022-10-17 06:20:30 +00:00
|
|
|
<i class="fa-solid fa-trash"></i>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
{% if type == 'page' %}
|
2022-11-02 18:24:56 +00:00
|
|
|
<a href="{% url 'position_action' type=type account_id=item.account_id symbol=item.symbol %}">
|
2022-10-21 23:15:27 +00:00
|
|
|
<button
|
|
|
|
class="button is-success">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-eye"></i>
|
|
|
|
</span>
|
2022-10-17 06:20:30 +00:00
|
|
|
</span>
|
2022-10-21 23:15:27 +00:00
|
|
|
</button>
|
2022-10-17 06:20:30 +00:00
|
|
|
</a>
|
|
|
|
{% else %}
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
2022-11-02 18:24:56 +00:00
|
|
|
hx-get="{% url 'position_action' type=type account_id=item.account_id symbol=item.symbol %}"
|
2022-10-17 06:20:30 +00:00
|
|
|
hx-trigger="click"
|
|
|
|
hx-target="#{{ type }}s-here"
|
2022-10-29 13:24:09 +00:00
|
|
|
hx-swap="innerHTML"
|
2022-10-17 06:20:30 +00:00
|
|
|
class="button is-success">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-eye"></i>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</table>
|