frequi_origin/src/components/ftbot/BotComarisonList.vue

80 lines
2.4 KiB
Vue
Raw Normal View History

2021-09-03 14:55:39 +00:00
<template>
<b-table
ref="tradesTable"
small
hover
stacked="md"
show-empty
primary-key="botId"
:items="tableItems"
:fields="tableFields"
>
</b-table>
</template>
<script lang="ts">
2021-09-03 15:27:20 +00:00
import { formatPrice } from '@/shared/formatters';
2021-09-03 14:55:39 +00:00
import { MultiBotStoreGetters } from '@/store/modules/botStoreWrapper';
2021-09-03 15:27:20 +00:00
import { BotDescriptors, BotState, ProfitInterface } from '@/types';
2021-09-03 14:55:39 +00:00
import { Component, Vue } from 'vue-property-decorator';
import { namespace } from 'vuex-class';
const ftbot = namespace('ftbot');
@Component({})
export default class BotComparisonList extends Vue {
@ftbot.Getter [MultiBotStoreGetters.allProfit]!: Record<string, ProfitInterface>;
2021-09-03 15:27:20 +00:00
@ftbot.Getter [MultiBotStoreGetters.allOpenTradeCount]!: Record<string, number>;
@ftbot.Getter [MultiBotStoreGetters.allBotState]!: Record<string, BotState>;
2021-09-03 14:55:39 +00:00
@ftbot.Getter [MultiBotStoreGetters.allAvailableBots]!: BotDescriptors;
get tableItems() {
const val: any[] = [];
2021-09-03 15:27:20 +00:00
let closedSum = 0;
let openProfitSum = 0;
let decimals = 3;
2021-09-03 14:55:39 +00:00
Object.entries(this.allProfit).forEach(([k, v]) => {
// TODO: handle one inactive bot ...
val.push({
botId: this.allAvailableBots[k].botName,
2021-09-03 15:27:20 +00:00
trades: `${this.allOpenTradeCount[k]} / ${this.allBotState[k]?.max_open_trades}`,
profitClosed: `${
formatPrice(v.profit_closed_coin, this.allBotState[k]?.stake_currency_decimals) || 'N/A'
} `,
profitClosedPercent: `${v.profit_closed_percent_sum || 'N/A'}`,
2021-09-03 14:55:39 +00:00
profitOpenPercent: v.profit_all_percent_sum,
profitOpen: v.profit_all_coin,
winVsLoss: `${v.winning_trades || 'N/A'} / ${v.losing_trades || 'N/A'}`,
});
2021-09-03 15:27:20 +00:00
if (v.profit_closed_coin !== undefined) {
closedSum += v.profit_closed_coin;
openProfitSum += v.profit_all_coin;
decimals = this.allBotState[k]?.stake_currency_decimals || decimals;
}
});
val.push({
botId: 'Summary',
profitClosed: formatPrice(closedSum, decimals),
profitClosedPercent: '',
profitOpenPercent: '',
profitOpen: '',
winVsLoss: '',
2021-09-03 14:55:39 +00:00
});
return val;
}
tableFields: Record<string, string | Function>[] = [
2021-09-03 15:27:20 +00:00
{ key: 'botId', label: 'Bot' },
{ key: 'trades', label: 'Trades' },
2021-09-03 14:55:39 +00:00
{ key: 'profitClosed', label: 'Closed Profit' },
{ key: 'profitClosedPercent', label: 'Closed Profit %' },
{ key: 'winVsLoss', label: 'W/L' },
];
}
</script>
<style scoped></style>