mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Fix small issues
This commit is contained in:
parent
e0cee7e731
commit
fcb25822c8
|
@ -18,12 +18,12 @@
|
|||
<ValuePair description="Close Rate" v-if="!trade.is_open">{{ trade.close_rate }}</ValuePair>
|
||||
<ValuePair description="Min Rate">{{ trade.min_rate }}</ValuePair>
|
||||
<ValuePair description="Max Rate">{{ trade.max_rate }}</ValuePair>
|
||||
<ValuePair description="Open date">{{ trade.open_timestamp }}</ValuePair>
|
||||
<ValuePair description="Open date">{{ timestampms(trade.open_timestamp) }}</ValuePair>
|
||||
<ValuePair description="Close date" v-if="trade.close_timestamp">
|
||||
{{ trade.close_timestamp }}
|
||||
{{ timestampms(trade.close_timestamp) }}
|
||||
</ValuePair>
|
||||
<ValuePair description="Stoploss last updated">
|
||||
{{ trade.stoploss_last_update_timestamp }}
|
||||
{{ timestampms(trade.stoploss_last_update_timestamp) }}
|
||||
</ValuePair>
|
||||
<ValuePair description="Current profit" v-if="trade.current_profit_abs">
|
||||
{{ trade.current_profit_abs }}
|
||||
|
|
Loading…
Reference in New Issue
Block a user