mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-13 03:33:50 +00:00
Improve wording, add order count
This commit is contained in:
parent
d3b50390de
commit
b6459c25db
|
@ -4,28 +4,28 @@
|
||||||
v-if="botApiVersion <= 1.1"
|
v-if="botApiVersion <= 1.1"
|
||||||
class="btn-xs text-left"
|
class="btn-xs text-left"
|
||||||
size="sm"
|
size="sm"
|
||||||
title="Forcesell"
|
title="Forceexit"
|
||||||
@click="$emit('forceSell', trade)"
|
@click="$emit('forceSell', trade)"
|
||||||
>
|
>
|
||||||
<ForceSellIcon :size="16" title="Forcesell" class="mr-1" />Forcesell
|
<ForceSellIcon :size="16" title="Forceexit" class="mr-1" />Forceexit
|
||||||
</b-button>
|
</b-button>
|
||||||
<b-button
|
<b-button
|
||||||
v-if="botApiVersion > 1.1"
|
v-if="botApiVersion > 1.1"
|
||||||
class="btn-xs text-left"
|
class="btn-xs text-left"
|
||||||
size="sm"
|
size="sm"
|
||||||
title="Forcesell limit"
|
title="Forceexit limit"
|
||||||
@click="$emit('forceSell', trade, 'limit')"
|
@click="$emit('forceSell', trade, 'limit')"
|
||||||
>
|
>
|
||||||
<ForceSellIcon :size="16" title="Forcesell" class="mr-1" />Forcesell limit
|
<ForceSellIcon :size="16" title="Forceexit limit" class="mr-1" />Forceexit limit
|
||||||
</b-button>
|
</b-button>
|
||||||
<b-button
|
<b-button
|
||||||
v-if="botApiVersion > 1.1"
|
v-if="botApiVersion > 1.1"
|
||||||
class="btn-xs text-left mt-1"
|
class="btn-xs text-left mt-1"
|
||||||
size="sm"
|
size="sm"
|
||||||
title="Forcesell market"
|
title="Forceexit market"
|
||||||
@click="$emit('forceSell', trade, 'market')"
|
@click="$emit('forceSell', trade, 'market')"
|
||||||
>
|
>
|
||||||
<ForceSellIcon :size="16" title="Forcesell" class="mr-1" />Forcesell market
|
<ForceSellIcon :size="16" title="Forceexit market" class="mr-1" />Forceexit market
|
||||||
</b-button>
|
</b-button>
|
||||||
|
|
||||||
<b-button
|
<b-button
|
||||||
|
|
|
@ -83,7 +83,7 @@
|
||||||
</ValuePair>
|
</ValuePair>
|
||||||
</div>
|
</div>
|
||||||
<details v-if="trade.orders">
|
<details v-if="trade.orders">
|
||||||
<summary>Orders</summary>
|
<summary>Orders {{ trade.orders.length > 1 ? `[${trade.orders.length}]` : '' }}</summary>
|
||||||
<div v-for="(order, key) in trade.orders" :key="key">
|
<div v-for="(order, key) in trade.orders" :key="key">
|
||||||
<span>
|
<span>
|
||||||
(#{{ key + 1 }})
|
(#{{ key + 1 }})
|
||||||
|
|
Loading…
Reference in New Issue
Block a user