mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-14 04:03:51 +00:00
45 lines
969 B
Vue
45 lines
969 B
Vue
<template>
|
|
<div>
|
|
<DailyChart v-if="dailyStats.data" :daily-stats="dailyStats" />
|
|
<CumProfitChart :trades="closedTrades" />
|
|
<HourlyChart :trades="closedTrades" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Vue } from 'vue-property-decorator';
|
|
import { namespace } from 'vuex-class';
|
|
|
|
import DailyChart from '@/components/charts/DailyChart.vue';
|
|
import HourlyChart from '@/components/charts/HourlyChart.vue';
|
|
import CumProfitChart from '@/components/charts/CumProfitChart.vue';
|
|
|
|
import { Trade, DailyReturnValue } from '@/types';
|
|
|
|
const ftbot = namespace('ftbot');
|
|
|
|
@Component({
|
|
components: {
|
|
DailyChart,
|
|
HourlyChart,
|
|
CumProfitChart,
|
|
},
|
|
})
|
|
export default class Trading extends Vue {
|
|
@ftbot.Getter closedTrades!: Trade[];
|
|
|
|
@ftbot.State dailyStats!: DailyReturnValue;
|
|
|
|
@ftbot.Action getDaily;
|
|
|
|
@ftbot.Action getTrades;
|
|
|
|
mounted() {
|
|
this.getDaily();
|
|
this.getTrades();
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style>
|