Merge pull request #9521 from freqtrade/robcaulk-patch-1

Ensure the documentation gets read
This commit is contained in:
Matthias
2023-12-10 14:21:59 +01:00
committed by GitHub
+1 -1
View File
@@ -244,7 +244,7 @@ class FreqaiDataKitchen:
f"{self.pair}: dropped {len(unfiltered_df) - len(filtered_df)} training points" f"{self.pair}: dropped {len(unfiltered_df) - len(filtered_df)} training points"
f" due to NaNs in populated dataset {len(unfiltered_df)}." f" due to NaNs in populated dataset {len(unfiltered_df)}."
) )
if len(unfiltered_df) == 0 and not self.live: if len(filtered_df) == 0 and not self.live:
raise OperationalException( raise OperationalException(
f"{self.pair}: all training data dropped due to NaNs. " f"{self.pair}: all training data dropped due to NaNs. "
"You likely did not download enough training data prior " "You likely did not download enough training data prior "