added support for improved graphics and strategy path configuration

This commit is contained in:
Gert Wohlgemuth
2018-05-06 12:25:40 -07:00
parent 2c49231fcd
commit 05ff0e0027
2 changed files with 138 additions and 14 deletions

View File

@@ -255,3 +255,13 @@ class Arguments(object):
dest='pair',
default=None
)
"""
Parses given arguments for plot scripts.
"""
self.parser.add_argument(
'--stop-loss',
help='Renders stop/loss informations in the main chart',
dest='stoplossdisplay',
default=False,
type=bool
)