From ae920f6445973f418c2f65757d58738c0159981c Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 9 Apr 2022 08:48:43 +0200 Subject: [PATCH] Improve output of "botstatus" --- src/components/ftbot/BotStatus.vue | 37 +++++++++++++++--------------- 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/src/components/ftbot/BotStatus.vue b/src/components/ftbot/BotStatus.vue index 0894a4c1..ac119ff9 100644 --- a/src/components/ftbot/BotStatus.vue +++ b/src/components/ftbot/BotStatus.vue @@ -3,6 +3,25 @@

Running Freqtrade {{ version }}

+

+ Running with + + {{ botState.max_open_trades }}x{{ botState.stake_amount }} {{ botState.stake_currency }} + + on + {{ botState.exchange }} in + {{ botState.trading_mode || 'spot' }} markets, with Strategy + {{ botState.strategy }} +

+

+ Currently {{ botState.state }}, + force entry: {{ botState.force_entry_enable || botState.forcebuy_enabled }} +

+

+ {{ botState.dry_run ? 'Dry-Run' : 'Live' }} +

+

Avg Profit {{ formatPercent(profit.profit_all_ratio_mean) }} (∑ {{ formatPercent(profit.profit_all_ratio_sum) }}) in {{ profit.trade_count }} Trades, with an @@ -16,24 +35,6 @@ Last trade opened:

- -

- Running with - - {{ botState.max_open_trades }}x{{ botState.stake_amount }} {{ botState.stake_currency }} - - on - {{ botState.exchange }}, with Strategy {{ botState.strategy }} -

-

- Currently {{ botState.state }}, - force entry: {{ botState.force_entry_enable || botState.forcebuy_enabled }} -

-

- {{ botState.dry_run ? 'Dry-Run' : 'Live' }} -