Remove one branch - python does lazy evaluation

This commit is contained in:
Matthias 2019-04-03 20:04:04 +02:00
parent b2c2b42408
commit 0307ba7883
1 changed files with 3 additions and 4 deletions

View File

@ -337,7 +337,6 @@ class Backtesting(object):
# Loop timerange and test per pair
while tmp < end_date:
# print(f"time: {tmp}")
for i, pair in enumerate(ticker):
if pair not in indexes:
@ -358,9 +357,9 @@ class Backtesting(object):
if row.buy == 0 or row.sell == 1:
continue # skip rows where no buy signal or that would immediately sell off
if not position_stacking:
if pair in lock_pair_until and row.date <= lock_pair_until[pair]:
continue
if (not position_stacking and pair in lock_pair_until
and row.date <= lock_pair_until[pair]):
continue
if max_open_trades > 0:
# Check if max_open_trades has already been reached for the given date
if not trade_count_lock.get(row.date, 0) < max_open_trades: