This commit is contained in:
robcaulk 2022-11-03 19:08:33 +01:00
parent cdf12cc541
commit 3ba1e221eb

View File

@ -1318,7 +1318,7 @@ class FreqaiDataKitchen:
) -> bool: ) -> bool:
""" """
Check if a backtesting prediction already exists and if the predictions Check if a backtesting prediction already exists and if the predictions
to append has the same sime of backtesting dataframe slice to append has the same size of backtesting dataframe slice
:param length_backtesting_dataframe: Length of backtesting dataframe slice :param length_backtesting_dataframe: Length of backtesting dataframe slice
:return: :return:
:boolean: whether the prediction file is valid. :boolean: whether the prediction file is valid.
@ -1337,7 +1337,7 @@ class FreqaiDataKitchen:
return True return True
else: else:
logger.info("A new backtesting prediction file is required. " logger.info("A new backtesting prediction file is required. "
"(Number of predictions is different of dataframe length).") "(Number of predictions is different from dataframe length).")
return False return False
else: else:
logger.info( logger.info(