Hyperopt Mongodb Patch

This commit is contained in:
MoonGem 2018-03-21 23:31:54 -05:00
parent 62a3366fbf
commit 5f8c3c2423
2 changed files with 4 additions and 5 deletions

View File

@ -200,7 +200,7 @@ class Arguments(object):
# Add hyperopt subcommand
hyperopt_cmd = subparsers.add_parser('hyperopt', help='hyperopt module')
hyperopt_cmd.set_defaults(func=hyperopt.start)
hyperopt_cmd.set_defaults(func=hyperopt.sta)
self.optimizer_shared_options(hyperopt_cmd)
self.hyperopt_options(hyperopt_cmd)

View File

@ -497,7 +497,7 @@ class Hyperopt(Backtesting):
results.duration.mean(),
)
def start(self) -> None:
def sta(self) -> None:
timerange = Arguments.parse_timerange(self.config.get('timerange'))
data = load_data(
datadir=self.config.get('datadir'),
@ -586,7 +586,7 @@ class Hyperopt(Backtesting):
sys.exit(0)
def start(args: Namespace) -> None:
def sta(args: Namespace) -> None:
"""
Start Backtesting script
:param args: Cli args from Arguments()
@ -612,5 +612,4 @@ def start(args: Namespace) -> None:
config['exchange']['secret'] = ''
# Initialize backtesting object
hyperopt = Hyperopt(config)
hyperopt.start()
Hyperopt(config).start()