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"
|
2020-10-31 08:40:40 +00:00
|
|
|
@click="setSelectedPair(comb.pair)"
|
|
|
|
>
|
|
|
|
<div>
|
|
|
|
{{ comb.pair }}
|
|
|
|
<span v-if="comb.locks" :title="comb.lockReason"> 🔒 </span>
|
|
|
|
</div>
|
|
|
|
<b-badge
|
|
|
|
:variant="
|
|
|
|
comb.trade && comb.trade.current_profit && comb.trade.current_profit > 0
|
|
|
|
? 'success'
|
|
|
|
: 'danger'
|
|
|
|
"
|
|
|
|
pill
|
|
|
|
:title="comb.profitString"
|
|
|
|
>{{
|
|
|
|
comb.trade && comb.trade.current_profit ? formatPercent(comb.trade.current_profit) : ''
|
|
|
|
}}</b-badge
|
|
|
|
>
|
|
|
|
</b-list-group-item>
|
|
|
|
</b-list-group>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { formatPercent, timestampms } from '@/shared/formatters';
|
|
|
|
import { BotStoreGetters } from '@/store/modules/ftbot';
|
|
|
|
import { Lock, Trade } from '@/types';
|
|
|
|
import { Component, Vue } from 'vue-property-decorator';
|
|
|
|
import { namespace } from 'vuex-class';
|
|
|
|
|
|
|
|
const ftbot = namespace('ftbot');
|
|
|
|
|
|
|
|
interface CombinedPairList {
|
|
|
|
pair: string;
|
|
|
|
lockReason: string;
|
|
|
|
profitString: string;
|
|
|
|
trade?: Trade;
|
|
|
|
locks?: Lock;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({})
|
|
|
|
export default class PairSummary extends Vue {
|
|
|
|
@ftbot.Getter [BotStoreGetters.currentLocks]!: Lock[];
|
|
|
|
|
|
|
|
@ftbot.Getter [BotStoreGetters.openTrades]!: Trade[];
|
|
|
|
|
|
|
|
@ftbot.State whitelist!: string[];
|
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
@ftbot.Action setSelectedPair!: (pair: string) => void;
|
|
|
|
|
|
|
|
timestampms = timestampms;
|
|
|
|
|
|
|
|
formatPercent = formatPercent;
|
|
|
|
|
|
|
|
get combinedPairList() {
|
|
|
|
const comb: CombinedPairList[] = [];
|
|
|
|
|
|
|
|
this.whitelist.forEach((pair) => {
|
|
|
|
const trade = this.openTrades.find((el) => el.pair === pair);
|
2020-10-31 08:56:03 +00:00
|
|
|
const allLocks = this.currentLocks.filter((el) => el.pair === pair);
|
|
|
|
// Sort to have longer timeframe in front
|
|
|
|
allLocks.sort((a, b) => (a.lock_end_timestamp > b.lock_end_timestamp ? -1 : 1));
|
2020-10-31 08:40:40 +00:00
|
|
|
let lockReason = '';
|
2020-10-31 08:56:03 +00:00
|
|
|
let locks;
|
|
|
|
if (allLocks.length > 0) {
|
|
|
|
[locks] = allLocks;
|
|
|
|
console.log(locks);
|
2020-10-31 08:40:40 +00:00
|
|
|
lockReason = `${timestampms(locks.lock_end_timestamp)} - ${locks.reason}`;
|
|
|
|
}
|
|
|
|
let profitString = '';
|
|
|
|
if (trade && trade.current_profit) {
|
|
|
|
profitString = `Current profit: ${formatPercent(trade.current_profit)}
|
|
|
|
Open since: ${timestampms(trade.open_timestamp)}`;
|
|
|
|
}
|
|
|
|
comb.push({ pair, trade, locks, lockReason, profitString });
|
|
|
|
});
|
|
|
|
// sort Pairs: "with open trade" -> available -> locked
|
|
|
|
comb.sort((a, b) => {
|
|
|
|
if (a.trade && !b.trade) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!a.locks && b.locks) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
});
|
|
|
|
return comb;
|
|
|
|
}
|
|
|
|
|
|
|
|
get tableFields() {
|
|
|
|
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),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.list-group {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
</style>
|