mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 03:25:15 +00:00
Show bot start date in general overview
This commit is contained in:
parent
e2c8050574
commit
d68f8c69c6
|
@ -47,24 +47,31 @@
|
||||||
{{ botStore.activeBot.profit.best_pair }}.
|
{{ botStore.activeBot.profit.best_pair }}.
|
||||||
</p>
|
</p>
|
||||||
<p v-if="botStore.activeBot.profit.first_trade_timestamp">
|
<p v-if="botStore.activeBot.profit.first_trade_timestamp">
|
||||||
First trade opened:
|
<span v-if="botStore.activeBot.profit.bot_start_timestamp" class="d-block">
|
||||||
|
Bot start date:
|
||||||
<strong>
|
<strong>
|
||||||
<DateTimeTZ :date="botStore.activeBot.profit.first_trade_timestamp" show-timezone />
|
<DateTimeTZ :date="botStore.activeBot.profit.bot_start_timestamp" show-timezone />
|
||||||
</strong>
|
</strong>
|
||||||
<br />
|
</span>
|
||||||
Last trade opened:
|
<span class="d-block">
|
||||||
<strong>
|
First trade opened:
|
||||||
<DateTimeTZ :date="botStore.activeBot.profit.latest_trade_timestamp" show-timezone />
|
<strong>
|
||||||
</strong>
|
<DateTimeTZ :date="botStore.activeBot.profit.first_trade_timestamp" show-timezone />
|
||||||
|
</strong>
|
||||||
|
</span>
|
||||||
|
<span class="d-block">
|
||||||
|
Last trade opened:
|
||||||
|
<strong>
|
||||||
|
<DateTimeTZ :date="botStore.activeBot.profit.latest_trade_timestamp" show-timezone />
|
||||||
|
</strong>
|
||||||
|
</span>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<span v-if="botStore.activeBot.profit.profit_factor">
|
<span v-if="botStore.activeBot.profit.profit_factor" class="d-block">
|
||||||
Profit factor:
|
Profit factor:
|
||||||
{{ botStore.activeBot.profit.profit_factor.toFixed(2) }}
|
{{ botStore.activeBot.profit.profit_factor.toFixed(2) }}
|
||||||
</span>
|
</span>
|
||||||
<br />
|
<span v-if="botStore.activeBot.profit.trading_volume" class="d-block">
|
||||||
<span v-if="botStore.activeBot.profit.trading_volume">
|
|
||||||
Trading volume:
|
Trading volume:
|
||||||
{{
|
{{
|
||||||
formatPriceCurrency(
|
formatPriceCurrency(
|
||||||
|
|
|
@ -40,4 +40,7 @@ export interface ProfitInterface {
|
||||||
max_drawdown?: number;
|
max_drawdown?: number;
|
||||||
max_drawdown_abs?: number;
|
max_drawdown_abs?: number;
|
||||||
trading_volume?: number;
|
trading_volume?: number;
|
||||||
|
/** Initial bot start date*/
|
||||||
|
bot_start_timestamp?: number;
|
||||||
|
bot_start_date?: string;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user