mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-13 03:33:50 +00:00
Improve Settings panel
This commit is contained in:
parent
4cae748289
commit
62f62c0442
1
src/auto-imports.d.ts
vendored
1
src/auto-imports.d.ts
vendored
|
@ -302,6 +302,7 @@ declare global {
|
|||
declare global {
|
||||
// @ts-ignore
|
||||
export type { Component, ComponentPublicInstance, ComputedRef, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue'
|
||||
import('vue')
|
||||
}
|
||||
// for vue template auto import
|
||||
import { UnwrapRef } from 'vue'
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
<b-card header="FreqUI Settings">
|
||||
<div class="text-start d-flex flex-column gap-2">
|
||||
<p>UI Version: {{ settingsStore.uiVersion }}</p>
|
||||
<div class="d-flex flex-column border rounded p-2 mb-2 gap-2">
|
||||
<h4>UI settings</h4>
|
||||
<b-form-group
|
||||
description="Lock dynamic layouts, so they cannot move anymore. Can also be set from the navbar at the top."
|
||||
>
|
||||
|
@ -11,7 +13,6 @@
|
|||
<b-form-group description="Reset dynamic layouts to how they were.">
|
||||
<b-button size="sm" class="me-1" @click="resetDynamicLayout">Reset layout</b-button>
|
||||
</b-form-group>
|
||||
|
||||
<b-form-group
|
||||
label="Show open trades in header"
|
||||
description="Decide if open trades should be visualized"
|
||||
|
@ -31,8 +32,14 @@
|
|||
></b-form-select>
|
||||
</b-form-group>
|
||||
<b-form-group description="Keep background sync running while other bots are selected.">
|
||||
<b-form-checkbox v-model="settingsStore.backgroundSync">Background sync</b-form-checkbox>
|
||||
<b-form-checkbox v-model="settingsStore.backgroundSync"
|
||||
>Background sync</b-form-checkbox
|
||||
>
|
||||
</b-form-group>
|
||||
</div>
|
||||
|
||||
<div class="d-flex flex-column border rounded p-2 mb-2 gap-2">
|
||||
<h4>Candle settings</h4>
|
||||
<b-form-group description="Use Heikin Ashi candles in your charts">
|
||||
<b-form-checkbox v-model="settingsStore.useHeikinAshiCandles"
|
||||
>Use Heikin Ashi candles.</b-form-checkbox
|
||||
|
@ -72,7 +79,10 @@
|
|||
</b-form-radio>
|
||||
</b-form-radio-group>
|
||||
</b-form-group>
|
||||
</div>
|
||||
<div class="d-flex flex-column border rounded p-2 mb-2 gap-2">
|
||||
<b-form-group description="Notifications">
|
||||
<h4>Notification Settings</h4>
|
||||
<b-form-checkbox v-model="settingsStore.notifications[FtWsMessageTypes.entryFill]"
|
||||
>Entry notifications</b-form-checkbox
|
||||
>
|
||||
|
@ -87,6 +97,7 @@
|
|||
>
|
||||
</b-form-group>
|
||||
</div>
|
||||
</div>
|
||||
</b-card>
|
||||
</div>
|
||||
</template>
|
||||
|
|
Loading…
Reference in New Issue
Block a user