Fix default argument handling for timeframe_to_nextdate

This commit is contained in:
Matthias
2019-08-12 20:37:11 +02:00
parent 23a70932d2
commit ca739f71fb
2 changed files with 7 additions and 1 deletions

View File

@@ -801,7 +801,7 @@ def timeframe_to_prev_date(timeframe: str, date: datetime = None) -> datetime:
:returns: date of previous candle (with utc timezone)
"""
if not date:
date = datetime.utcnow()
date = datetime.now(timezone.utc)
timeframe_secs = timeframe_to_seconds(timeframe)
# Get offset based on timerame_secs
offset = date.timestamp() % timeframe_secs