diff --git a/freqtrade/freqai/data_drawer.py b/freqtrade/freqai/data_drawer.py index b65d8623a..321295c53 100644 --- a/freqtrade/freqai/data_drawer.py +++ b/freqtrade/freqai/data_drawer.py @@ -76,7 +76,7 @@ class FreqaiDataDrawer: :returns: exists: bool = whether or not the drawer was located """ - exists = Path(self.full_path / str("historic_predictions.json")).resolve().exists() + exists = Path(self.full_path / str("historic_predictions.pkl")).resolve().exists() if exists: with open(self.full_path / str("historic_predictions.pkl"), "rb") as fp: self.historic_predictions = pickle.load(fp)