fix self-imposed bug

This commit is contained in:
robcaulk 2022-11-04 16:41:38 +01:00
parent 19d90b813a
commit 8bdc99a3d6

View File

@ -784,8 +784,8 @@ class IFreqaiModel(ABC):
logger.info(f"No data found for pair {pair} from {tr_backtest_startts_str} " logger.info(f"No data found for pair {pair} from {tr_backtest_startts_str} "
f" from {tr_backtest_startts_str} to {tr_backtest_stopts_str}. " f" from {tr_backtest_startts_str} to {tr_backtest_stopts_str}. "
"Probably more than one training within the same candle period.") "Probably more than one training within the same candle period.")
return True return False
return False return True
def log_backtesting_progress(self, tr_train: TimeRange, pair: str, def log_backtesting_progress(self, tr_train: TimeRange, pair: str,
train_it: int, total_trains: int): train_it: int, total_trains: int):