frequi_origin/src/components/ftbot/BacktestGraphsView.vue

35 lines
924 B
Vue
Raw Normal View History

2023-04-10 15:00:10 +00:00
<script setup lang="ts">
import { ClosedTrade } from '@/types';
import ProfitDistributionChart from '@/components/charts/ProfitDistributionChart.vue';
import CumProfitChart from '@/components/charts/CumProfitChart.vue';
import TradesLogChart from '@/components/charts/TradesLog.vue';
2023-04-10 15:00:10 +00:00
defineProps({
trades: { required: true, type: Array as () => ClosedTrade[] },
});
</script>
<template>
<div class="text-center flex-fill mt-2 d-flex flex-column">
<TradesLogChart :trades="trades" class="trades-log" />
<CumProfitChart
:trades="trades"
profit-column="profit_abs"
class="cum-profit"
:show-title="true"
/>
<hr />
<ProfitDistributionChart class="mt-3" :trades="trades" :show-title="true" />
</div>
</template>
<style lang="scss" scoped>
.trades-log {
height: 350px !important;
max-height: 350px;
}
.cum-profit {
height: 350px !important;
max-height: 350px;
}
</style>