diff --git a/freqtrade/configuration/timerange.py b/freqtrade/configuration/timerange.py index 9a2b47504..2b18a2c65 100644 --- a/freqtrade/configuration/timerange.py +++ b/freqtrade/configuration/timerange.py @@ -80,6 +80,9 @@ class TimeRange: val = stopdt.strftime(DATETIME_PRINT_FORMAT) return val + def __repr__(self) -> str: + return f"TimeRange({self.timerange_str})" + def __eq__(self, other): """Override the default Equals behavior""" return (