mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-14 12:13:52 +00:00
171 lines
3.7 KiB
Vue
171 lines
3.7 KiB
Vue
<template>
|
|
<v-chart v-if="dailyStats.data" :option="dailyChartOptions" :theme="getChartTheme" autoresize />
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { useGetters } from 'vuex-composition-helpers';
|
|
import { ref, defineComponent, computed, ComputedRef } from '@vue/composition-api';
|
|
import ECharts from 'vue-echarts';
|
|
// import { EChartsOption } from 'echarts';
|
|
|
|
import { use } from 'echarts/core';
|
|
import { CanvasRenderer } from 'echarts/renderers';
|
|
import { LineChart, BarChart } from 'echarts/charts';
|
|
import {
|
|
DatasetComponent,
|
|
GridComponent,
|
|
LegendComponent,
|
|
TitleComponent,
|
|
TooltipComponent,
|
|
VisualMapComponent,
|
|
} from 'echarts/components';
|
|
|
|
import { DailyReturnValue } from '@/types';
|
|
|
|
use([
|
|
BarChart,
|
|
LineChart,
|
|
CanvasRenderer,
|
|
GridComponent,
|
|
DatasetComponent,
|
|
LegendComponent,
|
|
TitleComponent,
|
|
TooltipComponent,
|
|
VisualMapComponent,
|
|
]);
|
|
|
|
// Define Column labels here to avoid typos
|
|
const CHART_ABS_PROFIT = 'Absolute profit';
|
|
const CHART_TRADE_COUNT = 'Trade Count';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
'v-chart': ECharts,
|
|
},
|
|
props: {
|
|
dailyStats: {
|
|
type: Object as () => DailyReturnValue,
|
|
required: true,
|
|
},
|
|
showTitle: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
},
|
|
|
|
setup(props) {
|
|
const { getChartTheme } = useGetters(['getChartTheme']);
|
|
const absoluteMin: ComputedRef<number> = computed(() =>
|
|
props.dailyStats.data.reduce(
|
|
(min, p) => (p.abs_profit < min ? p.abs_profit : min),
|
|
props.dailyStats.data[0]?.abs_profit,
|
|
),
|
|
);
|
|
|
|
const absoluteMax: ComputedRef<number> = computed(() =>
|
|
props.dailyStats.data.reduce(
|
|
(max, p) => (p.abs_profit > max ? p.abs_profit : max),
|
|
props.dailyStats.data[0]?.abs_profit,
|
|
),
|
|
);
|
|
// : Ref<EChartsOption>
|
|
const dailyChartOptions = ref({
|
|
title: {
|
|
text: 'Daily profit',
|
|
show: props.showTitle,
|
|
},
|
|
backgroundColor: 'rgba(0, 0, 0, 0)',
|
|
dataset: {
|
|
dimensions: ['date', 'abs_profit', 'trade_count'],
|
|
source: props.dailyStats.data,
|
|
},
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
axisPointer: {
|
|
type: 'line',
|
|
label: {
|
|
backgroundColor: '#6a7985',
|
|
},
|
|
},
|
|
},
|
|
legend: {
|
|
data: [CHART_ABS_PROFIT, CHART_TRADE_COUNT],
|
|
right: '5%',
|
|
},
|
|
xAxis: [
|
|
{
|
|
type: 'category',
|
|
inverse: true,
|
|
},
|
|
],
|
|
visualMap: [
|
|
{
|
|
dimension: 1,
|
|
seriesIndex: 0,
|
|
show: false,
|
|
pieces: [
|
|
{
|
|
max: 0.0,
|
|
min: absoluteMin.value,
|
|
color: 'red',
|
|
},
|
|
{
|
|
min: 0.0,
|
|
max: absoluteMax.value,
|
|
color: 'green',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
yAxis: [
|
|
{
|
|
type: 'value',
|
|
name: CHART_ABS_PROFIT,
|
|
splitLine: {
|
|
show: false,
|
|
},
|
|
nameRotate: 90,
|
|
nameLocation: 'middle',
|
|
nameGap: 40,
|
|
},
|
|
{
|
|
type: 'value',
|
|
name: CHART_TRADE_COUNT,
|
|
nameRotate: 90,
|
|
nameLocation: 'middle',
|
|
nameGap: 30,
|
|
},
|
|
],
|
|
series: [
|
|
{
|
|
type: 'line',
|
|
name: CHART_ABS_PROFIT,
|
|
// Color is induced by visualMap
|
|
},
|
|
{
|
|
type: 'bar',
|
|
name: CHART_TRADE_COUNT,
|
|
itemStyle: {
|
|
color: 'rgba(150,150,150,0.3)',
|
|
},
|
|
yAxisIndex: 1,
|
|
},
|
|
],
|
|
});
|
|
|
|
return {
|
|
dailyChartOptions,
|
|
getChartTheme,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.echarts {
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 240px;
|
|
}
|
|
</style>
|