mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
Improve fee display in trade detail
This commit is contained in:
parent
409f6fb453
commit
46ee4131f4
|
@ -36,9 +36,11 @@
|
|||
formatPrice(trade.max_rate)
|
||||
}}</ValuePair>
|
||||
<ValuePair description="Open-Fees">
|
||||
{{ trade.fee_open_cost }} {{ trade.fee_open_currency }} ({{
|
||||
formatPercent(trade.fee_open)
|
||||
}})
|
||||
{{ trade.fee_open_cost }} {{ trade.quote_currency }}
|
||||
<span v-if="trade.quote_currency !== trade.fee_open_currency">
|
||||
(in {{ trade.fee_open_currency }})
|
||||
</span>
|
||||
({{ formatPercent(trade.fee_open) }})
|
||||
</ValuePair>
|
||||
<ValuePair v-if="trade.fee_close_cost && trade.fee_close" description="Fees close">
|
||||
{{ trade.fee_close_cost }} {{ trade.fee_close_currency }} ({{
|
||||
|
|
Loading…
Reference in New Issue
Block a user