Merge pull request #7303 from wizrds/feat/externalsignals

Producer/consumer mode
This commit is contained in:
Matthias
2022-09-23 06:29:58 +02:00
committed by GitHub
36 changed files with 2240 additions and 63 deletions

View File

@@ -67,7 +67,8 @@ class RPCManager:
'status': 'stopping bot'
}
"""
logger.info('Sending rpc message: %s', msg)
if msg.get('type') is not RPCMessageType.ANALYZED_DF:
logger.info('Sending rpc message: %s', msg)
if 'pair' in msg:
msg.update({
'base_currency': self._rpc._freqtrade.exchange.get_pair_base_currency(msg['pair'])