the optimizer expects values in the order of smaller is better
This commit is contained in:
parent
4feb038d0a
commit
ff100bdac4
@ -75,8 +75,8 @@ def backtest(conf, pairs, mocker, buy_strategy):
|
|||||||
|
|
||||||
print_results(results)
|
print_results(results)
|
||||||
if len(results.index) < 800:
|
if len(results.index) < 800:
|
||||||
return 0
|
return 100000 # return large number to "ignore" this result
|
||||||
return results.profit.sum() / results.duration.mean()
|
return results.duration.mean() / results.profit.sum() # the smaller the better
|
||||||
|
|
||||||
def buy_strategy_generator(params):
|
def buy_strategy_generator(params):
|
||||||
print(params)
|
print(params)
|
||||||
@ -121,4 +121,4 @@ def test_hyperopt(conf, pairs, mocker):
|
|||||||
}
|
}
|
||||||
|
|
||||||
# print(hyperopt.pyll.stochastic.sample(space))
|
# print(hyperopt.pyll.stochastic.sample(space))
|
||||||
print(fmin(fn=optimizer, space=space, algo=tpe.suggest, max_evals=2))
|
print('Best parameters {}'.format(fmin(fn=optimizer, space=space, algo=tpe.suggest, max_evals=10)))
|
||||||
|
Loading…
Reference in New Issue
Block a user