fixed some minor bugs

This commit is contained in:
Gert Wohlgemuth 2018-05-07 13:24:50 -07:00
parent 429fa1aee4
commit c403ef3b20

View File

@ -260,7 +260,9 @@ class Arguments(object):
'--stop-loss', '--stop-loss',
help='Renders stop/loss information in the main chart', help='Renders stop/loss information in the main chart',
dest='stoplossdisplay', dest='stoplossdisplay',
action='store_true' action='store_true',
default=False
) )
self.parser.add_argument( self.parser.add_argument(
@ -276,6 +278,8 @@ class Arguments(object):
'--plot-cci', '--plot-cci',
help='Renders a cci chart of the given CCI dataframe name, for example --plot-cci cci', help='Renders a cci chart of the given CCI dataframe name, for example --plot-cci cci',
dest='plotcci', dest='plotcci',
nargs='+',
default=None default=None
) )