FIx bug with dmmp
This commit is contained in:
parent
a262618809
commit
e73203acb8
@ -340,7 +340,7 @@ class Backtesting:
|
|||||||
# max_open_trades must be respected
|
# max_open_trades must be respected
|
||||||
# don't open on the last row
|
# don't open on the last row
|
||||||
if ((position_stacking or len(open_trades[pair]) == 0)
|
if ((position_stacking or len(open_trades[pair]) == 0)
|
||||||
and max_open_trades > 0 and open_trade_count_start < max_open_trades
|
and (max_open_trades <= 0 or open_trade_count_start < max_open_trades)
|
||||||
and tmp != end_date
|
and tmp != end_date
|
||||||
and row[BUY_IDX] == 1 and row[SELL_IDX] != 1):
|
and row[BUY_IDX] == 1 and row[SELL_IDX] != 1):
|
||||||
# Enter trade
|
# Enter trade
|
||||||
|
Loading…
Reference in New Issue
Block a user