adding strategy config consistency function

This commit is contained in:
misagh 2018-11-24 20:12:50 +01:00
parent c8a0956e1b
commit 519b1f00e2
1 changed files with 13 additions and 0 deletions

View File

@ -54,11 +54,14 @@ class FreqtradeBot(object):
# Init objects
self.config = config
self.strategy: IStrategy = StrategyResolver(self.config).strategy
self.check_strategy_config_consistency(config, self.strategy)
self.rpc: RPCManager = RPCManager(self)
self.persistence = None
self.exchange = Exchange(self.config)
self.wallets = Wallets(self.exchange)
# Initializing Edge only if enabled
self.edge = Edge(self.config, self.exchange, self.strategy) if \
self.config.get('edge', {}).get('enabled', False) else None
@ -66,6 +69,16 @@ class FreqtradeBot(object):
self.active_pair_whitelist: List[str] = self.config['exchange']['pair_whitelist']
self._init_modules()
def check_strategy_config_consistency(self, config, strategy: IStrategy) -> None:
"""
checks if config is compatible with the given strategy
"""
# Stoploss on exchange is only implemented for binance
if strategy.stoploss_on_exchange and config.get('exchange') is not 'binance':
raise OperationalException(
'Stoploss limit orders are implemented only for binance as of now.')
def _init_modules(self) -> None:
"""
Initializes all modules and updates the config