From c403ef3b204abebe354432b5c3c9d25808ab667d Mon Sep 17 00:00:00 2001 From: Gert Wohlgemuth Date: Mon, 7 May 2018 13:24:50 -0700 Subject: [PATCH] fixed some minor bugs --- freqtrade/arguments.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/freqtrade/arguments.py b/freqtrade/arguments.py index b2559e696..a2468abfa 100644 --- a/freqtrade/arguments.py +++ b/freqtrade/arguments.py @@ -260,7 +260,9 @@ class Arguments(object): '--stop-loss', help='Renders stop/loss information in the main chart', dest='stoplossdisplay', - action='store_true' + action='store_true', + default=False + ) self.parser.add_argument( @@ -276,6 +278,8 @@ class Arguments(object): '--plot-cci', help='Renders a cci chart of the given CCI dataframe name, for example --plot-cci cci', dest='plotcci', + nargs='+', + default=None )