mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-14 12:13:52 +00:00
layout improvements
This commit is contained in:
parent
6f1567c32e
commit
5fae07c1f4
|
@ -12,32 +12,36 @@
|
||||||
v-for="(trade, i) in sortedTrades"
|
v-for="(trade, i) in sortedTrades"
|
||||||
:key="trade.open_timestamp"
|
:key="trade.open_timestamp"
|
||||||
button
|
button
|
||||||
class="d-flex flex-wrap justify-content-between align-items-center py-1"
|
class="d-flex flex-column py-1"
|
||||||
:title="`${trade.pair}`"
|
:title="`${trade.pair}`"
|
||||||
:active="trade.open_timestamp === selectedTrade.open_timestamp"
|
:active="trade.open_timestamp === selectedTrade.open_timestamp"
|
||||||
@click="onTradeSelect(trade)"
|
@click="onTradeSelect(trade)"
|
||||||
>
|
>
|
||||||
<div class="d-flex flex-column">
|
<div class="d-flex">
|
||||||
<div>
|
<div class="d-flex flex-column">
|
||||||
<span v-if="botStore.activeBot.botState.trading_mode !== 'spot'">{{
|
<div>
|
||||||
trade.is_short ? 'S-' : 'L-'
|
<span v-if="botStore.activeBot.botState.trading_mode !== 'spot'">{{
|
||||||
}}</span>
|
trade.is_short ? 'S-' : 'L-'
|
||||||
<DateTimeTZ :date="trade.open_timestamp" />
|
}}</span>
|
||||||
|
<DateTimeTZ :date="trade.open_timestamp" />
|
||||||
|
</div>
|
||||||
|
<TradeProfit :trade="trade" class="my-1" />
|
||||||
|
<ProfitPill
|
||||||
|
v-if="backtestMode"
|
||||||
|
:profit-ratio="trade.profit_ratio"
|
||||||
|
:stake-currency="botStore.activeBot.stakeCurrency"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-fill justify-content-end">
|
||||||
|
<b-button
|
||||||
|
size="sm"
|
||||||
|
variant="secondary-outline"
|
||||||
|
@click="ordersVisible[i] = !ordersVisible[i]"
|
||||||
|
><i-mdi-chevron-right v-if="!ordersVisible[i]" width="24" height="24" />
|
||||||
|
<i-mdi-chevron-down v-if="ordersVisible[i]" width="24" height="24" />
|
||||||
|
</b-button>
|
||||||
</div>
|
</div>
|
||||||
<TradeProfit :trade="trade" class="my-1" />
|
|
||||||
<ProfitPill
|
|
||||||
v-if="backtestMode"
|
|
||||||
:profit-ratio="trade.profit_ratio"
|
|
||||||
:stake-currency="botStore.activeBot.stakeCurrency"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
<b-button
|
|
||||||
size="sm"
|
|
||||||
variant="secondary-outline"
|
|
||||||
@click="ordersVisible[i] = !ordersVisible[i]"
|
|
||||||
><i-mdi-chevron-right v-if="!ordersVisible[i]" width="24" height="24" />
|
|
||||||
<i-mdi-chevron-down v-if="ordersVisible[i]" width="24" height="24" />
|
|
||||||
</b-button>
|
|
||||||
<b-collapse v-model="ordersVisible[i]">
|
<b-collapse v-model="ordersVisible[i]">
|
||||||
<ul class="px-3 m-0">
|
<ul class="px-3 m-0">
|
||||||
<li
|
<li
|
||||||
|
|
Loading…
Reference in New Issue
Block a user