mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 18:23:50 +00:00
Show liquidation price in trade detail
This commit is contained in:
parent
43244d322e
commit
b09189f0c1
|
@ -81,6 +81,9 @@
|
||||||
<ValuePair v-if="trade.interest_rate !== undefined" description="Interest rate">
|
<ValuePair v-if="trade.interest_rate !== undefined" description="Interest rate">
|
||||||
{{ formatPrice(trade.interest_rate) }}
|
{{ formatPrice(trade.interest_rate) }}
|
||||||
</ValuePair>
|
</ValuePair>
|
||||||
|
<ValuePair v-if="trade.liquidation_price !== undefined" description="Liquidation Price">
|
||||||
|
{{ formatPrice(trade.liquidation_price) }}
|
||||||
|
</ValuePair>
|
||||||
</div>
|
</div>
|
||||||
<details v-if="trade.orders">
|
<details v-if="trade.orders">
|
||||||
<summary>Orders {{ trade.orders.length > 1 ? `[${trade.orders.length}]` : '' }}</summary>
|
<summary>Orders {{ trade.orders.length > 1 ? `[${trade.orders.length}]` : '' }}</summary>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user