mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
Improve output of "botstatus"
This commit is contained in:
parent
8f03909119
commit
ae920f6445
|
@ -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) }} (∑
|
||||
{{ 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>
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user