frequi_origin/src/views/Graphs.vue

82 lines
2.7 KiB
Vue
Raw Normal View History

2020-06-17 18:38:25 +00:00
<template>
2021-03-19 07:43:32 +00:00
<div class="d-flex flex-column h-100">
<!-- <div v-if="isWebserverMode" class="me-auto ms-3"> -->
2021-06-24 05:18:06 +00:00
<!-- Currently only available in Webserver mode -->
2022-10-30 10:15:40 +00:00
<!-- <b-form-checkbox v-model="historicView">HistoricData</b-form-checkbox> -->
2021-06-24 05:18:06 +00:00
<!-- </div> -->
2022-04-18 11:43:55 +00:00
<div v-if="botStore.activeBot.isWebserverMode" class="mx-md-3 mt-2">
2021-05-24 12:37:39 +00:00
<div class="d-flex flex-wrap">
2022-10-30 13:26:23 +00:00
<div class="col-md-3 text-start">
2021-05-24 12:37:39 +00:00
<span>Strategy</span>
<StrategySelect v-model="strategy" class="mt-1"></StrategySelect>
</div>
2022-10-30 13:26:23 +00:00
<div class="col-md-3 text-start">
2021-05-24 12:37:39 +00:00
<span>Timeframe</span>
<TimeframeSelect v-model="selectedTimeframe" class="mt-1" />
</div>
<TimeRangeSelect v-model="timerange" class="col-12 col-md-5 mr-md-2"></TimeRangeSelect>
</div>
</div>
2020-07-02 05:01:24 +00:00
2021-06-22 19:08:03 +00:00
<div class="mx-2 mt-2 pb-1 h-100">
<CandleChartContainer
2022-04-18 11:43:55 +00:00
:available-pairs="
botStore.activeBot.isWebserverMode
? botStore.activeBot.pairlist
: botStore.activeBot.whitelist
"
:historic-view="botStore.activeBot.isWebserverMode"
:timeframe="
botStore.activeBot.isWebserverMode ? selectedTimeframe : botStore.activeBot.timeframe
"
:trades="botStore.activeBot.trades"
:timerange="botStore.activeBot.isWebserverMode ? timerange : ''"
:strategy="botStore.activeBot.isWebserverMode ? strategy : ''"
2021-06-22 19:08:03 +00:00
:plot-config-modal="false"
>
2020-08-08 13:37:18 +00:00
</CandleChartContainer>
2020-06-20 06:52:43 +00:00
</div>
2020-06-17 18:38:25 +00:00
</div>
</template>
2020-06-22 06:05:03 +00:00
<script lang="ts">
import CandleChartContainer from '@/components/charts/CandleChartContainer.vue';
2020-07-11 17:55:47 +00:00
import TimeRangeSelect from '@/components/ftbot/TimeRangeSelect.vue';
2021-05-23 14:57:39 +00:00
import TimeframeSelect from '@/components/ftbot/TimeframeSelect.vue';
2021-05-24 09:13:11 +00:00
import StrategySelect from '@/components/ftbot/StrategySelect.vue';
2022-07-07 18:44:19 +00:00
import { defineComponent, onMounted, ref } from 'vue';
2022-04-18 11:43:55 +00:00
import { useBotStore } from '@/stores/ftbotwrapper';
2020-06-17 18:38:25 +00:00
2022-04-15 18:40:03 +00:00
export default defineComponent({
name: 'Graphs',
2021-05-24 09:13:11 +00:00
components: { CandleChartContainer, StrategySelect, TimeRangeSelect, TimeframeSelect },
2022-04-15 18:40:03 +00:00
setup() {
2022-04-18 11:43:55 +00:00
const botStore = useBotStore();
2022-04-15 18:40:03 +00:00
const strategy = ref('');
const timerange = ref('');
const selectedTimeframe = ref('');
onMounted(() => {
2022-04-18 11:43:55 +00:00
if (botStore.activeBot.isWebserverMode) {
2022-04-15 18:40:03 +00:00
// this.refresh();
2022-04-18 11:43:55 +00:00
botStore.activeBot.getAvailablePairs({ timeframe: botStore.activeBot.timeframe });
2022-04-15 18:40:03 +00:00
// .then((val) => {
// console.log(val);
// });
2022-04-18 11:43:55 +00:00
} else if (!botStore.activeBot.whitelist || botStore.activeBot.whitelist.length === 0) {
botStore.activeBot.getWhitelist();
2022-04-15 18:40:03 +00:00
}
});
return {
2022-04-18 11:43:55 +00:00
botStore,
2022-04-15 18:40:03 +00:00
strategy,
timerange,
selectedTimeframe,
};
},
});
2020-06-17 18:38:25 +00:00
</script>
2021-03-19 07:43:32 +00:00
<style scoped></style>