2020-05-06 04:38:57 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
2020-05-06 19:20:33 +00:00
|
|
|
<p v-if="profit.profit_all_coin">
|
2020-05-06 04:38:57 +00:00
|
|
|
Avg Profit {{ profit.profit_all_coin.toFixed(2) }}% in {{ profit.trade_count }} Trades, with
|
|
|
|
an average duration of {{ profit.avg_duration }}. Best pair: {{ profit.best_pair }}.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Running with
|
2020-05-06 17:38:52 +00:00
|
|
|
<strong>
|
|
|
|
{{ botState.max_open_trades }}x{{ botState.stake_amount }} {{ botState.stake_currency }}
|
|
|
|
</strong>
|
2020-05-06 04:38:57 +00:00
|
|
|
on
|
2020-05-06 17:38:52 +00:00
|
|
|
<strong>{{ botState.exchange }}</strong>
|
|
|
|
, with Strategy<strong>{{ botState.strategy }}</strong>
|
2020-05-06 04:38:57 +00:00
|
|
|
</p>
|
|
|
|
<p>
|
2020-05-14 16:12:20 +00:00
|
|
|
Currently <strong>{{ botState.state }}</strong
|
|
|
|
>, <strong>forcebuy: {{ botState.forcebuy_enabled }}</strong>
|
2020-05-06 17:38:52 +00:00
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<strong>{{ botState.dry_run ? 'Dry-Run' : 'Live' }}</strong>
|
2020-05-06 04:38:57 +00:00
|
|
|
</p>
|
2020-05-12 05:12:33 +00:00
|
|
|
<p>Whitelist: {{ whitelist }}</p>
|
|
|
|
<p>Blacklist: {{ blacklist }}</p>
|
2020-05-06 04:38:57 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { mapState } from 'vuex';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'BotStatus',
|
|
|
|
computed: {
|
2020-05-12 05:12:33 +00:00
|
|
|
...mapState('ftbot', ['profit', 'botState', 'whitelist', 'blacklist']),
|
2020-05-06 04:38:57 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|