mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-25 12:35:15 +00:00
57 lines
1.1 KiB
Vue
57 lines
1.1 KiB
Vue
<template>
|
|
<b-form-select
|
|
v-model="selectedTimeframe"
|
|
placeholder="Use strategy default"
|
|
:options="availableTimeframes"
|
|
@change="emitSelectedTimeframe"
|
|
></b-form-select>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed, ref } from 'vue';
|
|
|
|
const props = defineProps({
|
|
value: { default: '', type: String },
|
|
belowTimeframe: { required: false, default: '', type: String },
|
|
});
|
|
const emit = defineEmits(['input']);
|
|
const selectedTimeframe = ref('');
|
|
// The below list must always remain sorted correctly!
|
|
const availableTimeframesBase = [
|
|
// Placeholder value
|
|
{ value: '', text: 'Use strategy default' },
|
|
'1m',
|
|
'3m',
|
|
'5m',
|
|
'15m',
|
|
'30m',
|
|
'1h',
|
|
'2h',
|
|
'4h',
|
|
'6h',
|
|
'8h',
|
|
'12h',
|
|
'1d',
|
|
'3d',
|
|
'1w',
|
|
'2w',
|
|
'1M',
|
|
'1y',
|
|
];
|
|
|
|
const availableTimeframes = computed(() => {
|
|
if (!props.belowTimeframe) {
|
|
return availableTimeframesBase;
|
|
}
|
|
const idx = availableTimeframesBase.findIndex((v) => v === props.belowTimeframe);
|
|
|
|
return [...availableTimeframesBase].splice(0, idx);
|
|
});
|
|
|
|
const emitSelectedTimeframe = () => {
|
|
emit('input', selectedTimeframe.value);
|
|
};
|
|
</script>
|
|
|
|
<style scoped></style>
|