backslap removed from arguments

This commit is contained in:
misagh 2018-09-21 17:57:29 +02:00
parent 2d432bfa95
commit 74979943ba
1 changed files with 0 additions and 9 deletions

View File

@ -171,14 +171,6 @@ class Arguments(object):
dest='exportfilename',
metavar='PATH',
)
parser.add_argument(
'--backslap',
help="Utilize the Backslapping approach instead of the default Backtesting. This should provide more "
"accurate results, unless you are utilizing Min/Max function in your strategy.",
required=False,
dest='backslap',
action='store_true'
)
@staticmethod
def optimizer_shared_options(parser: argparse.ArgumentParser) -> None:
@ -262,7 +254,6 @@ class Arguments(object):
self.optimizer_shared_options(hyperopt_cmd)
self.hyperopt_options(hyperopt_cmd)
@staticmethod
def parse_timerange(text: Optional[str]) -> TimeRange:
"""