Merge branch 'freqtrade:feat/freqai' into feat/freqai

This commit is contained in:
lolong
2022-07-16 18:27:16 +02:00
committed by GitHub
41 changed files with 13322 additions and 12209 deletions

View File

@@ -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)