added support to plot any given dataframe column

This commit is contained in:
Gert Wohlgemuth
2018-05-06 16:36:04 -07:00
parent 31e5d4d095
commit d2aca6fab2
2 changed files with 31 additions and 4 deletions

View File

@@ -260,8 +260,7 @@ class Arguments(object):
'--stop-loss',
help='Renders stop/loss informations in the main chart',
dest='stoplossdisplay',
default=False,
type=bool
action='store_true'
)
self.parser.add_argument(
@@ -285,13 +284,23 @@ class Arguments(object):
default=None
)
self.parser.add_argument(
'--plot-dataframe',
help='Renders the specified dataframes',
dest='plotdataframe',
default=None,
nargs='+',
type=str
)
self.parser.add_argument(
'--plot-volume',
help='plots the volume as a subchart',
dest='plotvolume',
default=False,
type=bool
action='store_true'
)