fix wrong range in stoploss search space

This commit is contained in:
Janne Sinivirta 2018-01-08 21:59:46 +02:00
parent 3d13eb2dc2
commit dd2ccea6e5
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ SPACE = {
{'type': 'stochf_cross'},
{'type': 'ht_sine'},
]),
'stoploss': hp.quniform('stoploss', -30, -2, 1),
'stoploss': hp.uniform('stoploss', -0.5, -0.02),
}