ADd test for data_interpolate

This commit is contained in:
Matthias
2018-12-31 09:18:22 +01:00
parent a021cd3ae2
commit 03389d961f
2 changed files with 19 additions and 3 deletions

View File

@@ -64,6 +64,7 @@ def ohlcv_fill_up_missing_data(dataframe: DataFrame, ticker_interval: str) -> Da
'low': df['close'],
})
df.reset_index(inplace=True)
logger.debug(f"Missing data fillup: before: {len(dataframe)} - after: {len(df)}")
return df