fixed flake

This commit is contained in:
Gert Wohlgemuth 2018-05-06 23:16:37 -07:00
parent 08ca4f10ba
commit 429fa1aee4

View File

@ -258,7 +258,7 @@ class Arguments(object):
self.parser.add_argument( self.parser.add_argument(
'--stop-loss', '--stop-loss',
help='Renders stop/loss informations in the main chart', help='Renders stop/loss information in the main chart',
dest='stoplossdisplay', dest='stoplossdisplay',
action='store_true' action='store_true'
) )
@ -274,14 +274,15 @@ class Arguments(object):
self.parser.add_argument( self.parser.add_argument(
'--plot-cci', '--plot-cci',
help='Renders a cci chart of the given RSI 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',
default=None default=None
) )
self.parser.add_argument( self.parser.add_argument(
'--plot-macd', '--plot-macd',
help='Renders a macd chart of the given RSI dataframe name, for example --plot-macd macd', help='Renders a macd chart of the given '
'dataframe name, for example --plot-macd macd',
dest='plotmacd', dest='plotmacd',
default=None default=None
) )
@ -295,10 +296,10 @@ class Arguments(object):
type=str type=str
) )
self.parser.add_argument( self.parser.add_argument(
'--plot-dataframe-marker', '--plot-dataframe-marker',
help='Renders the specified dataframes as markers. Accepted values for a marker are either 100 or -100', help='Renders the specified dataframes as markers. '
'Accepted values for a marker are either 100 or -100',
dest='plotdataframemarker', dest='plotdataframemarker',
default=None, default=None,
nargs='+', nargs='+',
@ -307,12 +308,11 @@ class Arguments(object):
self.parser.add_argument( self.parser.add_argument(
'--plot-volume', '--plot-volume',
help='plots the volume as a subchart', help='plots the volume as a sub plot',
dest='plotvolume', dest='plotvolume',
action='store_true' action='store_true'
) )
self.parser.add_argument( self.parser.add_argument(
'--plot-max-ticks', '--plot-max-ticks',
help='specify an upper limit of how many ticks we can display', help='specify an upper limit of how many ticks we can display',
@ -320,5 +320,3 @@ class Arguments(object):
default=750, default=750,
type=int type=int
) )