From cac6e0d7156de739f2d46180334d334d7f3f5403 Mon Sep 17 00:00:00 2001 From: xmatthias Date: Wed, 6 Jun 2018 00:10:18 +0200 Subject: [PATCH] Add docstring to TimeRange class --- freqtrade/arguments.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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