Clarify volume selection for dynamic whitelist

This commit is contained in:
Matthias 2018-11-10 20:14:46 +01:00
parent 02527eeea4
commit 62402351b3

View File

@ -133,7 +133,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'