2020-01-26 12:43:30 +00:00
|
|
|
import logging
|
|
|
|
from typing import Any, Dict
|
|
|
|
|
|
|
|
import rapidjson
|
|
|
|
|
2020-01-26 12:55:48 +00:00
|
|
|
from freqtrade.configuration import setup_utils_configuration
|
2020-01-26 12:43:30 +00:00
|
|
|
from freqtrade.resolvers import ExchangeResolver
|
|
|
|
from freqtrade.state import RunMode
|
|
|
|
|
2020-09-28 17:39:41 +00:00
|
|
|
|
2020-01-26 12:43:30 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
def start_test_pairlist(args: Dict[str, Any]) -> None:
|
|
|
|
"""
|
|
|
|
Test Pairlist configuration
|
|
|
|
"""
|
|
|
|
from freqtrade.pairlist.pairlistmanager import PairListManager
|
|
|
|
config = setup_utils_configuration(args, RunMode.UTIL_EXCHANGE)
|
|
|
|
|
|
|
|
exchange = ExchangeResolver.load_exchange(config['exchange']['name'], config, validate=False)
|
|
|
|
|
|
|
|
quote_currencies = args.get('quote_currencies')
|
|
|
|
if not quote_currencies:
|
|
|
|
quote_currencies = [config.get('stake_currency')]
|
|
|
|
results = {}
|
|
|
|
for curr in quote_currencies:
|
|
|
|
config['stake_currency'] = curr
|
|
|
|
pairlists = PairListManager(exchange, config)
|
|
|
|
pairlists.refresh_pairlist()
|
|
|
|
results[curr] = pairlists.whitelist
|
|
|
|
|
|
|
|
for curr, pairlist in results.items():
|
|
|
|
if not args.get('print_one_column', False):
|
|
|
|
print(f"Pairs for {curr}: ")
|
|
|
|
|
|
|
|
if args.get('print_one_column', False):
|
|
|
|
print('\n'.join(pairlist))
|
|
|
|
elif args.get('list_pairs_print_json', False):
|
|
|
|
print(rapidjson.dumps(list(pairlist), default=str))
|
|
|
|
else:
|
|
|
|
print(pairlist)
|