mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-11 10:43:56 +00:00
parent
6bd9e1ec84
commit
1ffc53b3b5
|
@ -251,9 +251,9 @@ We continue to define hyperoptable parameters:
|
||||||
class MyAwesomeStrategy(IStrategy):
|
class MyAwesomeStrategy(IStrategy):
|
||||||
buy_adx = IntParameter(20, 40, default=30)
|
buy_adx = IntParameter(20, 40, default=30)
|
||||||
buy_rsi = IntParameter(20, 40, default=30)
|
buy_rsi = IntParameter(20, 40, default=30)
|
||||||
buy_adx_enabled = CategoricalParameter([True, False]),
|
buy_adx_enabled = CategoricalParameter([True, False])
|
||||||
buy_rsi_enabled = CategoricalParameter([True, False]),
|
buy_rsi_enabled = CategoricalParameter([True, False])
|
||||||
buy_trigger = CategoricalParameter(['bb_lower', 'macd_cross_signal']),
|
buy_trigger = CategoricalParameter(['bb_lower', 'macd_cross_signal'])
|
||||||
```
|
```
|
||||||
|
|
||||||
Above definition says: I have five parameters I want to randomly combine to find the best combination.
|
Above definition says: I have five parameters I want to randomly combine to find the best combination.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user