Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/advanced-hyperopt.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class MyAwesomeStrategy(IStrategy):
]

# Define a custom max_open_trades space
def max_open_trades_space(self) -> List[Dimension]:
def max_open_trades_space() -> List[Dimension]:
return [
Integer(-1, 10, name='max_open_trades'),
]
Expand Down Expand Up @@ -208,7 +208,6 @@ Some research will be necessary to find additional Samplers (from optunahub) for

Obviously the same approach will work for all other Samplers optuna supports.


## Space options

For the additional spaces, scikit-optimize (in combination with Freqtrade) provides the following space types:
Expand Down
Loading
Loading