mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 11:35:14 +00:00
Add Left / right chart pane option
This commit is contained in:
parent
7dfabba2cc
commit
742edecb64
|
@ -32,6 +32,7 @@ export const useSettingsStore = defineStore('uiSettings', {
|
||||||
notifications: notificationDefaults,
|
notifications: notificationDefaults,
|
||||||
profitDistributionBins: 20,
|
profitDistributionBins: 20,
|
||||||
confirmDialog: true,
|
confirmDialog: true,
|
||||||
|
chartLabelSide: 'right' as 'left' | 'right',
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
getters: {
|
getters: {
|
||||||
|
|
|
@ -44,7 +44,17 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="d-flex flex-column border rounded p-2 mb-2 gap-2">
|
<div class="d-flex flex-column border rounded p-2 mb-2 gap-2">
|
||||||
<h4>Candle settings</h4>
|
<h4>Chart settings</h4>
|
||||||
|
<b-form-group description="Chart Scale side">
|
||||||
|
<b-form-radio-group
|
||||||
|
v-model="settingsStore.chartLabelSide"
|
||||||
|
name="chart-preference-options"
|
||||||
|
:options="[
|
||||||
|
{ value: 'left', text: 'Left' },
|
||||||
|
{ value: 'right', text: 'Right' },
|
||||||
|
]"
|
||||||
|
></b-form-radio-group>
|
||||||
|
</b-form-group>
|
||||||
<b-form-group description="Use Heikin Ashi candles in your charts">
|
<b-form-group description="Use Heikin Ashi candles in your charts">
|
||||||
<b-form-checkbox v-model="settingsStore.useHeikinAshiCandles"
|
<b-form-checkbox v-model="settingsStore.useHeikinAshiCandles"
|
||||||
>Use Heikin Ashi candles.</b-form-checkbox
|
>Use Heikin Ashi candles.</b-form-checkbox
|
||||||
|
|
Loading…
Reference in New Issue
Block a user