add fix_live_predictions function to backtesting

This commit is contained in:
Wagner Costa Santos
2022-11-08 18:20:39 -03:00
parent 8d9988a942
commit 3e57c18ac6
2 changed files with 53 additions and 1 deletions

View File

@@ -1014,7 +1014,7 @@ class FreqaiDataKitchen:
if self.full_df.empty:
self.full_df = append_df
else:
self.full_df = pd.concat([self.full_df, append_df], axis=0)
self.full_df = pd.concat([self.full_df, append_df], axis=0, ignore_index=True)
def fill_predictions(self, dataframe):
"""