mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Merge pull request #887 from daniila/vis_results_modifications
Vis results modifications
This commit is contained in:
commit
7cbfa8d8ba
|
@ -20,6 +20,7 @@
|
|||
<ProfitPill
|
||||
v-if="backtestMode && comb.tradeCount > 0"
|
||||
:profit-ratio="comb.profit"
|
||||
:profit-abs="comb.profitAbs"
|
||||
:stake-currency="botStore.activeBot.stakeCurrency"
|
||||
/>
|
||||
</b-list-group-item>
|
||||
|
|
|
@ -12,9 +12,11 @@
|
|||
@click="onTradeSelect(trade)"
|
||||
>
|
||||
<div>
|
||||
<span v-if="botStore.activeBot.botState.trading_mode !== 'spot'">{{
|
||||
trade.is_short ? 'S-' : 'L-'
|
||||
}}</span>
|
||||
<DateTimeTZ :date="trade.open_timestamp" />
|
||||
</div>
|
||||
|
||||
<TradeProfit :trade="trade" />
|
||||
<ProfitPill
|
||||
v-if="backtestMode"
|
||||
|
|
Loading…
Reference in New Issue
Block a user