mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
fix get dataframe data to include startup_candle
This commit is contained in:
parent
314c0925bf
commit
801ab39a24
|
@ -313,10 +313,9 @@ class IFreqaiModel(ABC):
|
|||
dk.append_predictions(append_df)
|
||||
else:
|
||||
if populate_indicators:
|
||||
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)
|
||||
tr_from_main_df = (f'{dataframe["date"].min().strftime("%Y%m%d")}'
|
||||
f'-{dataframe["date"].max().strftime("%Y%m%d")}')
|
||||
timerange = TimeRange.parse_timerange(tr_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(
|
||||
|
|
Loading…
Reference in New Issue
Block a user