Fix wrong message if protection-space is missing

closes #5480
This commit is contained in:
Matthias 2021-08-25 19:57:10 +02:00
parent 4b36276e4f
commit 23d21d8ace
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class HyperOptAuto(IHyperOpt):
return self._get_indicator_space('sell', 'sell_indicator_space')
def protection_space(self) -> List['Dimension']:
return self._get_indicator_space('protection', 'indicator_space')
return self._get_indicator_space('protection', 'protection_space')
def generate_roi_table(self, params: Dict) -> Dict[int, float]:
return self._get_func('generate_roi_table')(params)