diff --git a/src/components/charts/CandleChartContainer.vue b/src/components/charts/CandleChartContainer.vue index 8f79cd56..5f970367 100644 --- a/src/components/charts/CandleChartContainer.vue +++ b/src/components/charts/CandleChartContainer.vue @@ -41,7 +41,9 @@ >
- Heikin Ashi + Heikin Ashi
@@ -120,7 +122,6 @@ export default defineComponent({ const pair = ref(''); const plotConfig = ref({ ...EMPTY_PLOTCONFIG }); const plotConfigName = ref(''); - const heikinAshi = ref(false); const showPlotConfig = ref(props.plotConfigModal); const dataset = computed((): PairHistory => { @@ -233,7 +234,6 @@ export default defineComponent({ isLoadingDataset, noDatasetText, hasDataset, - heikinAshi, plotConfigChanged, showPlotConfig, showConfigurator, diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 08595471..605e0edc 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -26,9 +26,9 @@ export const useSettingsStore = defineStore('uiSettings', { openTradesInTitle: OpenTradeVizOptions.showPill as string, timezone: 'UTC', backgroundSync: true, - // TODO: needs proper migration ... currentTheme: getCurrentTheme(), uiVersion: 'dev', + useHeikinAshiCandles: false, }; }, getters: { diff --git a/src/views/Settings.vue b/src/views/Settings.vue index cfc17542..f6f0fed7 100644 --- a/src/views/Settings.vue +++ b/src/views/Settings.vue @@ -32,6 +32,11 @@ Background sync + + Use Heikin Ashi candles. +