Default to assume stored data only contains complete candles

closes #7468
This commit is contained in:
Matthias
2022-09-28 20:20:22 +02:00
parent 80d0e66b48
commit 00965d8c06
3 changed files with 3 additions and 4 deletions

View File

@@ -47,8 +47,7 @@ def ohlcv_to_dataframe(ohlcv: list, timeframe: str, pair: str, *,
def clean_ohlcv_dataframe(data: DataFrame, timeframe: str, pair: str, *,
fill_missing: bool = True,
drop_incomplete: bool = True) -> DataFrame:
fill_missing: bool, drop_incomplete: bool) -> DataFrame:
"""
Cleanse a OHLCV dataframe by
* Grouping it by date (removes duplicate tics)