fix get dataframe data to include startup_candle

This commit is contained in:
Wagner Costa 2023-01-03 14:02:42 -03:00
parent 52dfb0452c
commit 314c0925bf
1 changed files with 4 additions and 1 deletions

View File

@ -313,7 +313,10 @@ class IFreqaiModel(ABC):
dk.append_predictions(append_df)
else:
if populate_indicators:
timerange = TimeRange.parse_timerange(self.dk.full_timerange)
timerange_str_from_main_df = (
dataframe["date"].min().strftime("%Y%m%d") + "-" +
dataframe["date"].max().strftime("%Y%m%d"))
timerange = TimeRange.parse_timerange(timerange_str_from_main_df)
self.dd.load_all_pair_histories(timerange, self.dk)
corr_df, base_df = self.dd.get_base_and_corr_dataframes(timerange, pair, dk)
dataframe = self.dk.use_strategy_to_populate_indicators(