Reset dataframe index after slice
This commit is contained in:
parent
bc09c812a8
commit
e337d4b78a
@ -618,7 +618,8 @@ class FreqaiDataDrawer:
|
|||||||
)
|
)
|
||||||
|
|
||||||
for tf in self.freqai_info["feature_parameters"].get("include_timeframes"):
|
for tf in self.freqai_info["feature_parameters"].get("include_timeframes"):
|
||||||
base_dataframes[tf] = dk.slice_dataframe(timerange, historic_data[pair][tf])
|
base_dataframes[tf] = dk.slice_dataframe(
|
||||||
|
timerange, historic_data[pair][tf]).reset_index(drop=True)
|
||||||
if pairs:
|
if pairs:
|
||||||
for p in pairs:
|
for p in pairs:
|
||||||
if pair in p:
|
if pair in p:
|
||||||
@ -627,7 +628,7 @@ class FreqaiDataDrawer:
|
|||||||
corr_dataframes[p] = {}
|
corr_dataframes[p] = {}
|
||||||
corr_dataframes[p][tf] = dk.slice_dataframe(
|
corr_dataframes[p][tf] = dk.slice_dataframe(
|
||||||
timerange, historic_data[p][tf]
|
timerange, historic_data[p][tf]
|
||||||
)
|
).reset_index(drop=True)
|
||||||
|
|
||||||
return corr_dataframes, base_dataframes
|
return corr_dataframes, base_dataframes
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user