mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Changed max_open_trades default range for optimization
This commit is contained in:
parent
f77dffc951
commit
10d8b016e4
|
@ -127,7 +127,7 @@ class MyAwesomeStrategy(IStrategy):
|
||||||
# Define a custom max_open_trades space
|
# Define a custom max_open_trades space
|
||||||
def trades_space(self) -> List[Dimension]:
|
def trades_space(self) -> List[Dimension]:
|
||||||
return [
|
return [
|
||||||
Integer(1, 10, name='max_open_trades'),
|
Integer(-1, 10, name='max_open_trades'),
|
||||||
]
|
]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -198,7 +198,7 @@ class IHyperOpt(ABC):
|
||||||
You may override it in your custom Hyperopt class.
|
You may override it in your custom Hyperopt class.
|
||||||
"""
|
"""
|
||||||
return [
|
return [
|
||||||
Integer(1, 10, name='max_open_trades'),
|
Integer(-1, 10, name='max_open_trades'),
|
||||||
]
|
]
|
||||||
|
|
||||||
# This is needed for proper unpickling the class attribute timeframe
|
# This is needed for proper unpickling the class attribute timeframe
|
||||||
|
|
Loading…
Reference in New Issue
Block a user