Track timedout orders

This commit is contained in:
Matthias
2022-02-06 13:37:31 +01:00
parent 17d748dd4c
commit 644442e2f9
3 changed files with 9 additions and 2 deletions

View File

@@ -233,6 +233,7 @@ class Backtesting:
PairLocks.reset_locks()
Trade.reset_trades()
self.rejected_trades = 0
self.timedout_orders = 0
self.dataprovider.clear_cache()
if enable_protections:
self._load_protections(self.strategy)
@@ -646,6 +647,7 @@ class Backtesting:
timedout = self.strategy.ft_check_timed_out(order.side, trade, order, current_time)
if timedout:
self.timedout_orders += 1
if order.side == 'buy':
if trade.nr_of_successful_buys == 0:
# Remove trade due to buy timeout expiration.
@@ -796,6 +798,8 @@ class Backtesting:
'config': self.strategy.config,
'locks': PairLocks.get_all_locks(),
'rejected_signals': self.rejected_trades,
# TODO: timedout_orders should be shown as part of results.
# 'timedout_orders': self.timedout_orders,
'final_balance': self.wallets.get_total(self.strategy.config['stake_currency']),
}