changed trades_space to max_open_trades_space

This commit is contained in:
Antonio Della Fortuna
2023-01-15 11:50:40 +01:00
parent 5e64980319
commit ab12aace5f
6 changed files with 11 additions and 10 deletions

View File

@@ -74,7 +74,7 @@ class Hyperopt:
self.roi_space: List[Dimension] = []
self.stoploss_space: List[Dimension] = []
self.trailing_space: List[Dimension] = []
self.trades_space: List[Dimension] = []
self.max_open_trades_space: List[Dimension] = []
self.dimensions: List[Dimension] = []
self.config = config
@@ -288,11 +288,11 @@ class Hyperopt:
if HyperoptTools.has_space(self.config, 'trades'):
logger.debug("Hyperopt has 'trades' space")
self.trades_space = self.custom_hyperopt.trades_space()
self.max_open_trades_space = self.custom_hyperopt.max_open_trades_space()
self.dimensions = (self.buy_space + self.sell_space + self.protection_space
+ self.roi_space + self.stoploss_space + self.trailing_space
+ self.trades_space)
+ self.max_open_trades_space)
def assign_params(self, params_dict: Dict, category: str) -> None:
"""

View File

@@ -91,8 +91,8 @@ class HyperOptAuto(IHyperOpt):
def trailing_space(self) -> List['Dimension']:
return self._get_func('trailing_space')()
def trades_space(self) -> List['Dimension']:
return self._get_func('trades_space')()
def max_open_trades_space(self) -> List['Dimension']:
return self._get_func('max_open_trades_space')()
def generate_estimator(self, dimensions: List['Dimension'], **kwargs) -> EstimatorType:
return self._get_func('generate_estimator')(dimensions=dimensions, **kwargs)

View File

@@ -191,7 +191,7 @@ class IHyperOpt(ABC):
Categorical([True, False], name='trailing_only_offset_is_reached'),
]
def trades_space(self) -> List[Dimension]:
def max_open_trades_space(self) -> List[Dimension]:
"""
Create a max open trades space.