2020-05-17 21:41:38 +00:00
|
|
|
<template>
|
2020-08-17 05:10:33 +00:00
|
|
|
<GridLayout class="h-100 w-100" :row-height="50" :layout="gridLayout">
|
|
|
|
<GridItem
|
|
|
|
:i="gridLayout[0].i"
|
|
|
|
:x="gridLayout[0].x"
|
|
|
|
:y="gridLayout[0].y"
|
|
|
|
:w="gridLayout[0].w"
|
|
|
|
:h="gridLayout[0].h"
|
|
|
|
>
|
|
|
|
<ReloadControl />
|
|
|
|
</GridItem>
|
|
|
|
<GridItem
|
|
|
|
:i="gridLayout[1].i"
|
|
|
|
:x="gridLayout[1].x"
|
|
|
|
:y="gridLayout[1].y"
|
|
|
|
:w="gridLayout[1].w"
|
|
|
|
:h="gridLayout[1].h"
|
|
|
|
>
|
|
|
|
<BotControls class="mt-3" />
|
|
|
|
</GridItem>
|
|
|
|
<GridItem
|
|
|
|
:i="gridLayout[2].i"
|
|
|
|
:x="gridLayout[2].x"
|
|
|
|
:y="gridLayout[2].y"
|
|
|
|
:w="gridLayout[2].w"
|
|
|
|
:h="gridLayout[2].h"
|
|
|
|
>
|
|
|
|
<b-tabs content-class="mt-3" class="mt-3">
|
|
|
|
<b-tab title="Status" active>
|
|
|
|
<BotStatus />
|
|
|
|
</b-tab>
|
|
|
|
<b-tab title="Performance">
|
|
|
|
<Performance class="performance-view" />
|
|
|
|
</b-tab>
|
|
|
|
<b-tab title="Balance" lazy>
|
|
|
|
<Balance />
|
|
|
|
</b-tab>
|
|
|
|
<b-tab title="Daily Stats" lazy>
|
|
|
|
<DailyStats />
|
|
|
|
</b-tab>
|
2020-05-18 15:41:58 +00:00
|
|
|
|
2020-08-17 05:10:33 +00:00
|
|
|
<b-tab title="Pairlist" lazy>
|
|
|
|
<FTBotAPIPairList />
|
|
|
|
</b-tab>
|
|
|
|
</b-tabs>
|
|
|
|
</GridItem>
|
|
|
|
<GridItem
|
|
|
|
:i="gridLayout[3].i"
|
|
|
|
:x="gridLayout[3].x"
|
|
|
|
:y="gridLayout[3].y"
|
|
|
|
:w="gridLayout[3].w"
|
|
|
|
:h="gridLayout[3].h"
|
|
|
|
drag-allow-from=".card-header"
|
|
|
|
>
|
|
|
|
<TradeList
|
|
|
|
class="open-trades"
|
|
|
|
:trades="openTrades"
|
|
|
|
title="Open trades"
|
|
|
|
:active-trades="true"
|
|
|
|
empty-text="Currently no open trades."
|
|
|
|
/>
|
|
|
|
</GridItem>
|
|
|
|
<GridItem
|
|
|
|
:i="gridLayout[4].i"
|
|
|
|
:x="gridLayout[4].x"
|
|
|
|
:y="gridLayout[4].y"
|
|
|
|
:w="gridLayout[4].w"
|
|
|
|
:h="gridLayout[4].h"
|
|
|
|
drag-allow-from=".card-header"
|
|
|
|
>
|
|
|
|
<TradeList
|
|
|
|
v-if="!detailTradeId"
|
|
|
|
class="trade-history"
|
|
|
|
:trades="closedTrades"
|
|
|
|
title="Trade history"
|
|
|
|
empty-text="No closed trades so far."
|
|
|
|
/>
|
|
|
|
<TradeDetail v-if="detailTradeId" :trade="tradeDetail"> </TradeDetail>
|
|
|
|
</GridItem>
|
|
|
|
<GridItem
|
|
|
|
:i="gridLayout[5].i"
|
|
|
|
:x="gridLayout[5].x"
|
|
|
|
:y="gridLayout[5].y"
|
|
|
|
:w="gridLayout[5].w"
|
|
|
|
:h="gridLayout[5].h"
|
|
|
|
>
|
2020-08-15 15:31:56 +00:00
|
|
|
<LogViewer />
|
2020-08-17 05:10:33 +00:00
|
|
|
</GridItem>
|
|
|
|
</GridLayout>
|
2020-05-17 21:41:38 +00:00
|
|
|
</template>
|
|
|
|
|
2020-06-20 15:46:08 +00:00
|
|
|
<script lang="ts">
|
|
|
|
import { Component, Vue } from 'vue-property-decorator';
|
2020-06-29 19:14:16 +00:00
|
|
|
import { namespace } from 'vuex-class';
|
2020-08-29 09:38:43 +00:00
|
|
|
import { GridLayout, GridItem, GridItemData } from 'vue-grid-layout';
|
2020-05-17 21:41:38 +00:00
|
|
|
|
2020-05-18 15:41:58 +00:00
|
|
|
import TradeList from '@/components/ftbot/TradeList.vue';
|
|
|
|
import Performance from '@/components/ftbot/Performance.vue';
|
|
|
|
import BotControls from '@/components/ftbot/BotControls.vue';
|
|
|
|
import BotStatus from '@/components/ftbot/BotStatus.vue';
|
|
|
|
import Balance from '@/components/ftbot/Balance.vue';
|
|
|
|
import DailyStats from '@/components/ftbot/DailyStats.vue';
|
2020-05-22 12:43:32 +00:00
|
|
|
import FTBotAPIPairList from '@/components/ftbot/FTBotAPIPairList.vue';
|
2020-06-04 17:56:19 +00:00
|
|
|
import TradeDetail from '@/components/ftbot/TradeDetail.vue';
|
2020-06-12 17:40:18 +00:00
|
|
|
import ReloadControl from '@/components/ftbot/ReloadControl.vue';
|
2020-08-15 15:31:56 +00:00
|
|
|
import LogViewer from '@/components/ftbot/LogViewer.vue';
|
2020-06-29 18:43:54 +00:00
|
|
|
|
2020-08-29 09:23:39 +00:00
|
|
|
import { Trade } from '@/types';
|
2020-08-29 09:13:26 +00:00
|
|
|
import { UserStoreGetters } from '@/store/modules/ftbot';
|
2020-06-29 18:43:54 +00:00
|
|
|
|
|
|
|
const ftbot = namespace('ftbot');
|
2020-05-17 21:41:38 +00:00
|
|
|
|
2020-06-20 15:46:08 +00:00
|
|
|
@Component({
|
2020-05-18 18:49:30 +00:00
|
|
|
components: {
|
2020-08-29 09:38:43 +00:00
|
|
|
GridLayout,
|
|
|
|
GridItem,
|
2020-05-18 18:49:30 +00:00
|
|
|
TradeList,
|
|
|
|
Performance,
|
|
|
|
BotControls,
|
|
|
|
BotStatus,
|
|
|
|
Balance,
|
|
|
|
DailyStats,
|
2020-05-22 12:43:32 +00:00
|
|
|
FTBotAPIPairList,
|
2020-06-04 17:56:19 +00:00
|
|
|
TradeDetail,
|
2020-06-12 17:40:18 +00:00
|
|
|
ReloadControl,
|
2020-08-15 15:31:56 +00:00
|
|
|
LogViewer,
|
2020-05-18 18:49:30 +00:00
|
|
|
},
|
2020-06-20 15:46:08 +00:00
|
|
|
})
|
2020-06-29 18:43:54 +00:00
|
|
|
export default class Trading extends Vue {
|
|
|
|
@ftbot.State detailTradeId!: string;
|
|
|
|
|
2020-08-29 15:47:05 +00:00
|
|
|
@ftbot.Getter openTrades!: Trade[];
|
2020-06-29 18:43:54 +00:00
|
|
|
|
2020-08-29 15:47:05 +00:00
|
|
|
@ftbot.Getter closedTrades!: Trade[];
|
2020-06-29 18:43:54 +00:00
|
|
|
|
2020-08-29 09:15:49 +00:00
|
|
|
@ftbot.Getter [UserStoreGetters.tradeDetail]!: Trade;
|
2020-08-17 05:10:33 +00:00
|
|
|
|
2020-08-29 09:38:43 +00:00
|
|
|
public gridLayout: GridItemData[] = [
|
2020-08-17 05:10:33 +00:00
|
|
|
{ i: 'g-reloadControl', x: 0, y: 0, w: 4, h: 1 },
|
|
|
|
{ i: 'g-botControls', x: 0, y: 0, w: 4, h: 3 },
|
|
|
|
{ i: 'g-MultiPane', x: 0, y: 0, w: 4, h: 7 },
|
|
|
|
{ i: 'g-openTrades', x: 4, y: 0, w: 8, h: 5 },
|
|
|
|
{ i: 'g-tradeHistory', x: 4, y: 4, w: 8, h: 6 },
|
|
|
|
{ i: 'g-logView', x: 0, y: 9, w: 12, h: 3 },
|
|
|
|
];
|
2020-06-29 18:43:54 +00:00
|
|
|
}
|
2020-05-17 21:41:38 +00:00
|
|
|
</script>
|
|
|
|
|
2020-08-17 05:10:33 +00:00
|
|
|
<style scoped></style>
|