Merge branch 'develop' into backtest_live_models

This commit is contained in:
Wagner Costa Santos
2022-09-26 17:23:44 -03:00
27 changed files with 866 additions and 774 deletions

View File

@@ -114,7 +114,7 @@ class Backtesting:
self.pairlists = PairListManager(self.exchange, self.config)
if 'VolumePairList' in self.pairlists.name_list:
raise OperationalException("VolumePairList not allowed for backtesting. "
"Please use StaticPairlist instead.")
"Please use StaticPairList instead.")
if 'PerformanceFilter' in self.pairlists.name_list:
raise OperationalException("PerformanceFilter not allowed for backtesting.")
@@ -161,9 +161,6 @@ class Backtesting:
self.init_backtest()
def __del__(self):
self.cleanup()
@staticmethod
def cleanup():
LoggingMixin.show_output = True

View File

@@ -61,7 +61,7 @@ class Hyperopt:
"""
Hyperopt class, this class contains all the logic to run a hyperopt simulation
To run a backtest:
To start a hyperopt run:
hyperopt = Hyperopt(config)
hyperopt.start()
"""