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}`' f'*Strategy:* `{strategy_name}`'
}) })
if self.config.get('dynamic_whitelist', False): 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 = '' specific_pairs = ''
else: else:
top_pairs = 'whitelisted' top_pairs = 'whitelisted'