Merge pull request #10199 from freqtrade/fix/classifier-bug

fix: allow classifiers to work
This commit is contained in:
Matthias
2024-05-12 08:29:01 +02:00
committed by GitHub

View File

@@ -286,8 +286,7 @@ class FreqaiDataDrawer:
new_pred["date_pred"] = dataframe["date"]
# set everything to nan except date_pred
columns_to_nan = new_pred.columns.difference(['date_pred', 'date'])
new_pred[columns_to_nan] = new_pred[columns_to_nan].astype(
float).values * np.nan
new_pred[columns_to_nan] = None
hist_preds = self.historic_predictions[pair].copy()