added graphing of OSC and CMF

This commit is contained in:
Gert Wohlgemuth
2018-05-17 22:32:10 -07:00
parent 9d844696f9
commit 610029ba94
2 changed files with 185 additions and 3 deletions

View File

@@ -288,6 +288,25 @@ class Arguments(object):
default=None
)
self.parser.add_argument(
'--plot-osc',
help='Renders a osc chart of the given osc dataframe name, for example --plot-osc osc',
dest='plotosc',
nargs='+',
default=None
)
self.parser.add_argument(
'--plot-cmf',
help='Renders a cmf chart of the given cmf dataframe name, for example --plot-cmf cmf',
dest='plotcmf',
nargs='+',
default=None
)
self.parser.add_argument(
'--plot-macd',
help='Renders a macd chart of the given '