Improve handling of left_open_trades
This commit is contained in:
parent
22173851d6
commit
17d748dd4c
@ -609,7 +609,8 @@ class Backtesting:
|
|||||||
for pair in open_trades.keys():
|
for pair in open_trades.keys():
|
||||||
if len(open_trades[pair]) > 0:
|
if len(open_trades[pair]) > 0:
|
||||||
for trade in open_trades[pair]:
|
for trade in open_trades[pair]:
|
||||||
if trade.open_order_id:
|
if trade.open_order_id and trade.nr_of_successful_buys == 0:
|
||||||
|
# Ignore trade if buy-order did not fill yet
|
||||||
continue
|
continue
|
||||||
sell_row = data[pair][-1]
|
sell_row = data[pair][-1]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user