mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
Add help hint over orders showing order type
This commit is contained in:
parent
abc1277e4f
commit
ad5ececb5e
|
@ -99,7 +99,15 @@
|
|||
<details v-if="trade.orders">
|
||||
<summary>Orders {{ trade.orders.length > 1 ? `[${trade.orders.length}]` : '' }}</summary>
|
||||
<div v-for="(order, key) in trade.orders" :key="key">
|
||||
<span>
|
||||
<span
|
||||
:title="`${order.ft_order_side} ${order.order_type} order for ${formatPriceCurrency(
|
||||
order.amount,
|
||||
trade.base_currency ?? '',
|
||||
)} at ${formatPriceCurrency(
|
||||
order.safe_price,
|
||||
trade.quote_currency ?? '',
|
||||
)}, filled ${formatPrice(order.filled)}`"
|
||||
>
|
||||
(#{{ key + 1 }})
|
||||
<DateTimeTZ
|
||||
v-if="order.order_timestamp"
|
||||
|
|
Loading…
Reference in New Issue
Block a user