Improve output of "botstatus"

This commit is contained in:
Matthias 2022-04-09 08:48:43 +02:00
parent 8f03909119
commit ae920f6445

View File

@ -3,6 +3,25 @@
<p>
Running Freqtrade <strong>{{ version }}</strong>
</p>
<p>
Running with
<strong>
{{ botState.max_open_trades }}x{{ botState.stake_amount }} {{ botState.stake_currency }}
</strong>
on
<strong>{{ botState.exchange }}</strong> in
<strong>{{ botState.trading_mode || 'spot' }}</strong> markets, with Strategy
<strong>{{ botState.strategy }}</strong>
</p>
<p>
Currently <strong>{{ botState.state }}</strong
>,
<strong>force entry: {{ botState.force_entry_enable || botState.forcebuy_enabled }}</strong>
</p>
<p>
<strong>{{ botState.dry_run ? 'Dry-Run' : 'Live' }}</strong>
</p>
<hr />
<p>
Avg Profit {{ formatPercent(profit.profit_all_ratio_mean) }} (&sum;
{{ formatPercent(profit.profit_all_ratio_sum) }}) in {{ profit.trade_count }} Trades, with an
@ -16,24 +35,6 @@
Last trade opened:
<strong><DateTimeTZ :date="profit.latest_trade_timestamp" show-timezone /></strong>
</p>
<p>
Running with
<strong>
{{ botState.max_open_trades }}x{{ botState.stake_amount }} {{ botState.stake_currency }}
</strong>
on
<strong>{{ botState.exchange }}</strong
>, with Strategy <strong>{{ botState.strategy }}</strong>
</p>
<p>
Currently <strong>{{ botState.state }}</strong
>,
<strong>force entry: {{ botState.force_entry_enable || botState.forcebuy_enabled }}</strong>
</p>
<p>
<strong>{{ botState.dry_run ? 'Dry-Run' : 'Live' }}</strong>
</p>
</div>
</template>