diff --git a/freqtrade/arguments.py b/freqtrade/arguments.py index bf5abb8ee..8f36af150 100644 --- a/freqtrade/arguments.py +++ b/freqtrade/arguments.py @@ -13,7 +13,11 @@ from freqtrade import __version__, constants class TimeRange(NamedTuple): - + """ + NamedTuple Defining timerange inputs. + [start/stop]type defines if [start/stop]ts shall be used. + if *type is none, don't use corresponding startvalue. + """ starttype: Optional[str] = None stoptype: Optional[str] = None startts: int = 0