mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
add stake currency field
This commit is contained in:
parent
e6e64f6ec8
commit
1dabe91226
|
@ -32,7 +32,12 @@
|
||||||
><i-mdi-content-copy
|
><i-mdi-content-copy
|
||||||
/></b-button>
|
/></b-button>
|
||||||
</div>
|
</div>
|
||||||
<b-input-group v-for="(item, i) in pairlistStore.config.blacklist" :key="i" class="mb-2">
|
<b-input-group
|
||||||
|
v-for="(item, i) in pairlistStore.config.blacklist"
|
||||||
|
:key="i"
|
||||||
|
class="mb-2"
|
||||||
|
size="sm"
|
||||||
|
>
|
||||||
<b-form-input v-model="pairlistStore.config.blacklist[i]" />
|
<b-form-input v-model="pairlistStore.config.blacklist[i]" />
|
||||||
<b-input-group-append>
|
<b-input-group-append>
|
||||||
<b-button size="sm" @click="pairlistStore.removeFromBlacklist(i)"
|
<b-button size="sm" @click="pairlistStore.removeFromBlacklist(i)"
|
||||||
|
@ -40,7 +45,7 @@
|
||||||
/></b-button>
|
/></b-button>
|
||||||
</b-input-group-append>
|
</b-input-group-append>
|
||||||
</b-input-group>
|
</b-input-group>
|
||||||
<b-button @click="pairlistStore.addToBlacklist()">Add</b-button>
|
<b-button size="sm" @click="pairlistStore.addToBlacklist()">Add</b-button>
|
||||||
</b-card-body>
|
</b-card-body>
|
||||||
</b-collapse>
|
</b-collapse>
|
||||||
</b-card>
|
</b-card>
|
||||||
|
|
|
@ -26,14 +26,21 @@
|
||||||
</b-list-group>
|
</b-list-group>
|
||||||
<div class="d-flex flex-column flex-fill">
|
<div class="d-flex flex-column flex-fill">
|
||||||
<PairlistConfigActions />
|
<PairlistConfigActions />
|
||||||
|
|
||||||
|
<div class="d-flex align-items-center gap-2 my-2">
|
||||||
|
<span class="col-auto">Stake currency: </span>
|
||||||
|
<b-form-input v-model="pairlistStore.stakeCurrency" size="sm" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mb-2">
|
||||||
<b-form-checkbox v-model="pairlistStore.customExchange" class="mb-2"
|
<b-form-checkbox v-model="pairlistStore.customExchange" class="mb-2"
|
||||||
>Custom Exchange</b-form-checkbox
|
>Custom Exchange</b-form-checkbox
|
||||||
>
|
>
|
||||||
<exchange-select
|
<exchange-select
|
||||||
v-if="pairlistStore.customExchange"
|
v-if="pairlistStore.customExchange"
|
||||||
v-model="pairlistStore.selectedExchange"
|
v-model="pairlistStore.selectedExchange"
|
||||||
class="mb-2"
|
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
<PairlistConfigBlacklist />
|
<PairlistConfigBlacklist />
|
||||||
<b-alert
|
<b-alert
|
||||||
:model-value="
|
:model-value="
|
||||||
|
|
Loading…
Reference in New Issue
Block a user