fix: ensure full hist-preds is kept

This commit is contained in:
robcaulk
2024-04-09 17:17:11 +02:00
parent d8aaaa34d3
commit 081e50ec48
-4
View File
@@ -306,10 +306,6 @@ class FreqaiDataDrawer:
"predictions. You likely left your FreqAI instance offline " "predictions. You likely left your FreqAI instance offline "
f"for more than {len(dataframe.index)} candles.") f"for more than {len(dataframe.index)} candles.")
if len(new_pred.index) == 0:
df_concat = hist_preds.tail(
len(dataframe.index)).reset_index(drop=True)
else:
# Pandas warns that its keeping dtypes of non NaN columns... # Pandas warns that its keeping dtypes of non NaN columns...
# yea we know and we already want that behavior. Ignoring. # yea we know and we already want that behavior. Ignoring.
with warnings.catch_warnings(): with warnings.catch_warnings():