Merge pull request #1322 from freqtrade/feat/add_whitelist_rpc

Feat/add whitelist rpc
This commit is contained in:
Matthias
2018-11-14 19:13:00 +01:00
committed by GitHub
5 changed files with 93 additions and 2 deletions

View File

@@ -140,7 +140,7 @@ class FreqtradeBot(object):
f'*Strategy:* `{strategy_name}`'
})
if self.config.get('dynamic_whitelist', False):
top_pairs = 'top ' + str(self.config.get('dynamic_whitelist', 20))
top_pairs = 'top volume ' + str(self.config.get('dynamic_whitelist', 20))
specific_pairs = ''
else:
top_pairs = 'whitelisted'