2020-10-31 08:40:40 +00:00
|
|
|
<template>
|
|
|
|
<!-- <b-table class="table-sm" :items="combinedPairList" :fields="tableFields"> </b-table> -->
|
|
|
|
|
|
|
|
<b-list-group>
|
|
|
|
<b-list-group-item
|
|
|
|
v-for="comb in combinedPairList"
|
|
|
|
:key="comb.pair"
|
|
|
|
button
|
2020-10-31 08:56:03 +00:00
|
|
|
class="d-flex justify-content-between align-items-center py-1"
|
2022-04-18 18:00:36 +00:00
|
|
|
:active="comb.pair === botStore.activeBot.selectedPair"
|
2021-10-13 17:26:37 +00:00
|
|
|
:title="`${comb.pair} - ${comb.tradeCount} trades`"
|
2022-04-18 18:00:36 +00:00
|
|
|
@click="botStore.activeBot.setSelectedPair(comb.pair)"
|
2020-10-31 08:40:40 +00:00
|
|
|
>
|
|
|
|
<div>
|
|
|
|
{{ comb.pair }}
|
|
|
|
<span v-if="comb.locks" :title="comb.lockReason"> 🔒 </span>
|
|
|
|
</div>
|
2021-10-11 18:58:13 +00:00
|
|
|
|
2021-10-13 17:26:37 +00:00
|
|
|
<TradeProfit v-if="comb.trade && !backtestMode" :trade="comb.trade" />
|
2022-01-01 16:11:55 +00:00
|
|
|
<ProfitPill
|
|
|
|
v-if="backtestMode && comb.tradeCount > 0"
|
|
|
|
:profit-ratio="comb.profit"
|
2022-04-18 18:00:36 +00:00
|
|
|
:stake-currency="botStore.activeBot.stakeCurrency"
|
2022-01-01 16:11:55 +00:00
|
|
|
/>
|
2020-10-31 08:40:40 +00:00
|
|
|
</b-list-group-item>
|
|
|
|
</b-list-group>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { formatPercent, timestampms } from '@/shared/formatters';
|
|
|
|
import { Lock, Trade } from '@/types';
|
2021-09-04 08:35:44 +00:00
|
|
|
import TradeProfit from '@/components/ftbot/TradeProfit.vue';
|
2021-10-11 18:58:13 +00:00
|
|
|
import ProfitPill from '@/components/general/ProfitPill.vue';
|
2022-04-16 05:03:57 +00:00
|
|
|
import { defineComponent, computed } from '@vue/composition-api';
|
2022-04-18 18:00:36 +00:00
|
|
|
import { useBotStore } from '@/stores/ftbotwrapper';
|
2020-10-31 08:40:40 +00:00
|
|
|
|
|
|
|
interface CombinedPairList {
|
|
|
|
pair: string;
|
|
|
|
lockReason: string;
|
|
|
|
profitString: string;
|
|
|
|
trade?: Trade;
|
|
|
|
locks?: Lock;
|
2020-12-05 16:44:18 +00:00
|
|
|
profit: number;
|
2021-10-11 18:58:13 +00:00
|
|
|
profitAbs: number;
|
2021-10-13 17:26:37 +00:00
|
|
|
tradeCount: number;
|
2020-10-31 08:40:40 +00:00
|
|
|
}
|
|
|
|
|
2022-04-16 05:03:57 +00:00
|
|
|
export default defineComponent({
|
|
|
|
name: 'PairSummary',
|
|
|
|
components: { TradeProfit, ProfitPill },
|
|
|
|
props: {
|
|
|
|
// TOOD: Should be string list
|
|
|
|
pairlist: { required: true, type: Array as () => string[] },
|
|
|
|
currentLocks: { required: false, type: Array as () => Lock[], default: () => [] },
|
|
|
|
trades: { required: true, type: Array as () => Trade[] },
|
|
|
|
sortMethod: { default: 'normal', type: String },
|
|
|
|
backtestMode: { required: false, default: false, type: Boolean },
|
|
|
|
},
|
|
|
|
setup(props) {
|
2022-04-18 18:00:36 +00:00
|
|
|
const botStore = useBotStore();
|
2022-04-16 05:03:57 +00:00
|
|
|
const combinedPairList = computed(() => {
|
|
|
|
const comb: CombinedPairList[] = [];
|
|
|
|
|
|
|
|
props.pairlist.forEach((pair) => {
|
|
|
|
const trades: Trade[] = props.trades.filter((el) => el.pair === pair);
|
|
|
|
const allLocks = props.currentLocks.filter((el) => el.pair === pair);
|
|
|
|
let lockReason = '';
|
|
|
|
let locks;
|
|
|
|
|
|
|
|
// Sort to have longer timeframe in front
|
|
|
|
allLocks.sort((a, b) => (a.lock_end_timestamp > b.lock_end_timestamp ? -1 : 1));
|
|
|
|
if (allLocks.length > 0) {
|
|
|
|
[locks] = allLocks;
|
|
|
|
lockReason = `${timestampms(locks.lock_end_timestamp)} - ${locks.reason}`;
|
2020-12-05 18:39:07 +00:00
|
|
|
}
|
2022-04-16 05:03:57 +00:00
|
|
|
let profitString = '';
|
|
|
|
let profit = 0;
|
|
|
|
let profitAbs = 0;
|
|
|
|
trades.forEach((trade) => {
|
|
|
|
profit += trade.profit_ratio;
|
|
|
|
profitAbs += trade.profit_abs;
|
|
|
|
});
|
|
|
|
const tradeCount = trades.length;
|
|
|
|
const trade = tradeCount ? trades[0] : undefined;
|
|
|
|
if (trades.length > 0) {
|
|
|
|
profitString = `Current profit: ${formatPercent(profit)}`;
|
2021-05-08 07:57:15 +00:00
|
|
|
}
|
2022-04-16 05:03:57 +00:00
|
|
|
if (trade) {
|
|
|
|
profitString += `\nOpen since: ${timestampms(trade.open_timestamp)}`;
|
2020-12-05 18:39:07 +00:00
|
|
|
}
|
2022-04-16 05:03:57 +00:00
|
|
|
comb.push({ pair, trade, locks, lockReason, profitString, profit, profitAbs, tradeCount });
|
2020-12-05 18:39:07 +00:00
|
|
|
});
|
2022-04-16 05:03:57 +00:00
|
|
|
if (props.sortMethod === 'profit') {
|
|
|
|
comb.sort((a, b) => {
|
|
|
|
if (a.profit > b.profit) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// sort Pairs: "with open trade" -> available -> locked
|
|
|
|
comb.sort((a, b) => {
|
|
|
|
if (a.trade && !b.trade) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (a.trade && b.trade) {
|
|
|
|
// 2 open trade pairs
|
|
|
|
return a.trade.trade_id > b.trade.trade_id ? 1 : -1;
|
|
|
|
}
|
|
|
|
if (!a.locks && b.locks) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (a.locks && b.locks) {
|
|
|
|
// Both have locks
|
|
|
|
return a.locks.lock_end_timestamp > b.locks.lock_end_timestamp ? 1 : -1;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return comb;
|
|
|
|
});
|
|
|
|
const tableFields = computed(() => {
|
|
|
|
return [
|
|
|
|
{ key: 'pair', label: 'Pair' },
|
|
|
|
{
|
|
|
|
key: 'locks.lock_end_timestamp',
|
|
|
|
label: 'Lock',
|
|
|
|
formatter: (value) => (value ? `${timestampms(value)}` : ''),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: 'trade.current_profit',
|
|
|
|
label: 'Position',
|
|
|
|
formatter: (value) => formatPercent(value, 3),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
});
|
|
|
|
return {
|
|
|
|
combinedPairList,
|
|
|
|
tableFields,
|
2022-04-18 18:00:36 +00:00
|
|
|
botStore,
|
2022-04-16 05:03:57 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
2020-10-31 08:40:40 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.list-group {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
</style>
|