mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-26 21:15:15 +00:00
Fix usage of wrong field
This commit is contained in:
parent
edf70e524f
commit
138a8962fd
|
@ -13,13 +13,12 @@
|
|||
<ValuePair v-if="trade.close_timestamp" description="Close date">{{
|
||||
timestampms(trade.close_timestamp)
|
||||
}}</ValuePair>
|
||||
<ValuePair v-if="trade.current_profit_pct" description="Current Profit">
|
||||
{{ formatPercent(trade.current_profit_pct) }} | {{ trade.current_profit_abs }}
|
||||
<ValuePair v-if="trade.current_profit" description="Current Profit">
|
||||
{{ formatPercent(trade.current_profit) }} | {{ trade.current_profit_abs }}
|
||||
</ValuePair>
|
||||
<ValuePair v-if="trade.close_profit" description="Close % profit">
|
||||
<ValuePair v-if="trade.close_profit" description="Close Profit">
|
||||
{{ formatPercent(trade.close_profit) }} | {{ trade.close_profit_abs }}
|
||||
</ValuePair>
|
||||
<ValuePair v-if="trade.close_profit_abs" description="Close profit"> </ValuePair>
|
||||
</div>
|
||||
<div class="col-lg-7">
|
||||
<h5 class="detail-header">Stoploss</h5>
|
||||
|
|
Loading…
Reference in New Issue
Block a user