You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
datetime.timedelta doesn't support 'months', 'years'
These should be handled and converted to weeks before passing
config candle_period: 1M
Error: File "\app\exchange.py", line 110, in get_historical_data start_date_delta = timedelta(**timedelta_args) TypeError: 'months' is an invalid keyword argument for __new__()
datetime.timedelta doesn't support 'months', 'years'
These should be handled and converted to weeks before passing
config
candle_period: 1M
Error:
File "\app\exchange.py", line 110, in get_historical_data start_date_delta = timedelta(**timedelta_args) TypeError: 'months' is an invalid keyword argument for __new__()
https://github.com/CryptoSignal/crypto-signal/blob/1ce480ec11a0b34acdadc5b04234ab6e824daeb1/app/exchange.py#L110
Python docs source:
https://docs.python.org/2/library/datetime.html#timedelta-objects
The text was updated successfully, but these errors were encountered: