frequi_origin/src/components/ftbot/CandleChart.vue

202 lines
4.6 KiB
Vue
Raw Normal View History

2020-06-17 18:38:25 +00:00
<template>
<div class="container-fluid d-flex flex-column align-items-stretch d-flex">
<div class="row flex-grow-1">
<v-chart v-if="hasData" theme="dark" autoresize :options="chartOptions" />
</div>
</div>
</template>
<script>
import ECharts from 'vue-echarts';
import 'echarts';
import { mapState } from 'vuex';
export default {
name: 'CandleChart',
components: { 'v-chart': ECharts },
data() {
return {
pair: 'XRP/USDT',
timeframe: '5m',
};
},
computed: {
...mapState('ftbot', ['history']),
hasData() {
return this.dataset !== null;
},
dataset() {
return this.history[`${this.pair}__${this.timeframe}`];
},
chartOptions() {
if (!this.hasData) {
return {};
}
2020-06-19 05:55:34 +00:00
const upColor = '#00da3c';
const upBorderColor = '#008F28';
const downColor = '#ec0000';
const downBorderColor = '#8A0000';
2020-06-17 18:38:25 +00:00
console.log(this.dataset.data);
return {
title: {
text: `${this.pair} - ${this.timeframe}`,
show: true,
},
backgroundColor: '231202D',
dataset: {
source: this.dataset.data,
},
animation: false,
legend: {
data: ['Candles', 'Volume'],
},
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'cross',
lineStyle: {
2020-06-19 05:55:34 +00:00
color: '#cccccc',
width: 1,
2020-06-17 18:38:25 +00:00
opacity: 1,
},
},
},
axisPointer: {
link: { xAxisIndex: 'all' },
label: {
backgroundColor: '#777',
},
},
xAxis: [
{
type: 'category',
scale: true,
boundaryGap: false,
axisLine: { onZero: false },
splitLine: { show: false },
splitNumber: 20,
min: 'dataMin',
max: 'dataMax',
},
{
type: 'category',
gridIndex: 1,
scale: true,
boundaryGap: false,
axisLine: { onZero: false },
axisTick: { show: false },
splitLine: { show: false },
axisLabel: { show: false },
splitNumber: 20,
min: 'dataMin',
max: 'dataMax',
},
],
yAxis: [
{
scale: true,
},
{
scale: true,
gridIndex: 1,
splitNumber: 2,
axisLabel: { show: false },
axisLine: { show: false },
axisTick: { show: false },
splitLine: { show: false },
},
],
grid: [
{
left: '5%',
right: '5%',
height: '50%',
},
{
left: '5%',
right: '5%',
top: '63%',
height: '16%',
},
],
dataZoom: [
{
type: 'inside',
xAxisIndex: [0, 1],
2020-06-19 05:55:34 +00:00
start: 50,
2020-06-17 18:38:25 +00:00
end: 100,
},
{
show: true,
xAxisIndex: [0, 1],
type: 'slider',
bottom: 10,
start: 10,
end: 100,
},
],
// visualMap: {
2020-06-19 05:55:34 +00:00
// // TODO: this would allow to colorize volume bars (if we'd want this)
// // Needs green / red indicator column in data.
2020-06-17 18:38:25 +00:00
// show: true,
2020-06-19 05:55:34 +00:00
// seriesIndex: 1,
// dimension: 5,
2020-06-17 18:38:25 +00:00
// pieces: [
// {
2020-06-19 05:55:34 +00:00
// max: 500000.0,
2020-06-17 18:38:25 +00:00
// color: downColor,
// },
// {
2020-06-19 05:55:34 +00:00
// min: 500000.0,
2020-06-17 18:38:25 +00:00
// color: upColor,
// },
// ],
// },
series: [
{
name: 'Candles',
type: 'candlestick',
itemStyle: {
color: upColor,
color0: downColor,
borderColor: upBorderColor,
borderColor0: downBorderColor,
},
encode: {
x: 0,
// open, close, low, high
y: [1, 4, 3, 2],
},
},
{
name: 'Volume',
type: 'bar',
xAxisIndex: 1,
yAxisIndex: 1,
2020-06-19 05:55:34 +00:00
itemStyle: {
color: '#777777',
},
2020-06-17 18:38:25 +00:00
large: true,
encode: {
x: 0,
y: 5,
},
},
],
};
},
},
};
</script>
<style scoped>
.echarts {
width: 100%;
min-height: 640px;
/* TODO: height calculation is not working correctly - uses min-height for now */
/* height: 600px; */
height: 100%;
}
</style>