2018-01-28 07:38:41 +00:00
|
|
|
# pragma pylint: disable=missing-docstring,C0103
|
|
|
|
|
2018-01-02 22:00:03 +00:00
|
|
|
from freqtrade.main import refresh_whitelist, gen_pair_whitelist
|
2017-12-28 14:58:02 +00:00
|
|
|
|
|
|
|
# whitelist, blacklist, filtering, all of that will
|
|
|
|
# eventually become some rules to run on a generic ACL engine
|
|
|
|
# perhaps try to anticipate that by using some python package
|
|
|
|
|
|
|
|
|
|
|
|
def whitelist_conf():
|
|
|
|
return {
|
2018-01-10 09:17:16 +00:00
|
|
|
'stake_currency': 'BTC',
|
|
|
|
'exchange': {
|
|
|
|
'pair_whitelist': [
|
2018-02-03 16:15:40 +00:00
|
|
|
'ETH/BTC',
|
|
|
|
'TKN/BTC',
|
|
|
|
'TRST/BTC',
|
|
|
|
'SWT/BTC',
|
|
|
|
'BCC/BTC'
|
2017-12-28 14:58:02 +00:00
|
|
|
],
|
2018-01-10 09:17:16 +00:00
|
|
|
'pair_blacklist': [
|
2018-02-03 16:15:40 +00:00
|
|
|
'BLK/BTC'
|
2018-01-02 12:46:16 +00:00
|
|
|
],
|
2017-12-28 14:58:02 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2018-01-02 22:00:03 +00:00
|
|
|
def get_market_summaries():
|
|
|
|
return [{
|
2018-01-10 09:17:16 +00:00
|
|
|
'MarketName': 'BTC-TKN',
|
|
|
|
'High': 0.00000919,
|
|
|
|
'Low': 0.00000820,
|
|
|
|
'Volume': 74339.61396015,
|
|
|
|
'Last': 0.00000820,
|
|
|
|
'BaseVolume': 1664,
|
|
|
|
'TimeStamp': '2014-07-09T07:19:30.15',
|
|
|
|
'Bid': 0.00000820,
|
|
|
|
'Ask': 0.00000831,
|
|
|
|
'OpenBuyOrders': 15,
|
|
|
|
'OpenSellOrders': 15,
|
|
|
|
'PrevDay': 0.00000821,
|
|
|
|
'Created': '2014-03-20T06:00:00',
|
|
|
|
'DisplayMarketName': ''
|
2018-01-09 10:59:06 +00:00
|
|
|
}, {
|
2018-01-10 09:17:16 +00:00
|
|
|
'MarketName': 'BTC-ETH',
|
|
|
|
'High': 0.00000072,
|
|
|
|
'Low': 0.00000001,
|
|
|
|
'Volume': 166340678.42280999,
|
|
|
|
'Last': 0.00000005,
|
|
|
|
'BaseVolume': 42,
|
|
|
|
'TimeStamp': '2014-07-09T07:21:40.51',
|
|
|
|
'Bid': 0.00000004,
|
|
|
|
'Ask': 0.00000005,
|
|
|
|
'OpenBuyOrders': 18,
|
|
|
|
'OpenSellOrders': 18,
|
|
|
|
'PrevDay': 0.00000002,
|
|
|
|
'Created': '2014-05-30T07:57:49.637',
|
|
|
|
'DisplayMarketName': ''
|
2018-01-09 10:59:06 +00:00
|
|
|
}, {
|
2018-01-10 09:17:16 +00:00
|
|
|
'MarketName': 'BTC-BLK',
|
|
|
|
'High': 0.00000072,
|
|
|
|
'Low': 0.00000001,
|
|
|
|
'Volume': 166340678.42280999,
|
|
|
|
'Last': 0.00000005,
|
|
|
|
'BaseVolume': 3,
|
|
|
|
'TimeStamp': '2014-07-09T07:21:40.51',
|
|
|
|
'Bid': 0.00000004,
|
|
|
|
'Ask': 0.00000005,
|
|
|
|
'OpenBuyOrders': 18,
|
|
|
|
'OpenSellOrders': 18,
|
|
|
|
'PrevDay': 0.00000002,
|
|
|
|
'Created': '2014-05-30T07:57:49.637',
|
|
|
|
'DisplayMarketName': ''
|
|
|
|
}]
|
2018-01-02 22:00:03 +00:00
|
|
|
|
|
|
|
|
2018-02-03 21:44:13 +00:00
|
|
|
def get_markets():
|
|
|
|
return [{'symbol': 'ETH/BTC', 'base': 'ETH', 'quote':'BTC', 'active': True},
|
|
|
|
{'symbol': 'TKN/BTC', 'base': 'TKN', 'quote':'BTC', 'active': True},
|
|
|
|
{'symbol': 'BLK/BTC', 'base': 'BLK', 'quote':'BTC', 'active': True}]
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
|
2018-02-03 21:44:13 +00:00
|
|
|
def get_markets_empty():
|
2017-12-28 14:58:02 +00:00
|
|
|
return []
|
|
|
|
|
2018-01-02 12:46:16 +00:00
|
|
|
|
2018-01-02 12:42:10 +00:00
|
|
|
def test_refresh_market_pair_not_in_whitelist(mocker):
|
|
|
|
conf = whitelist_conf()
|
|
|
|
mocker.patch.dict('freqtrade.main._CONF', conf)
|
|
|
|
mocker.patch.multiple('freqtrade.main.exchange',
|
2018-02-03 21:44:13 +00:00
|
|
|
get_markets=get_markets)
|
2018-01-10 09:17:16 +00:00
|
|
|
refreshedwhitelist = refresh_whitelist(
|
2018-02-03 16:15:40 +00:00
|
|
|
conf['exchange']['pair_whitelist'] + ['XXX/BTC'])
|
2018-01-02 12:42:10 +00:00
|
|
|
# List ordered by BaseVolume
|
2018-02-03 16:15:40 +00:00
|
|
|
whitelist = ['ETH/BTC', 'TKN/BTC']
|
2018-01-02 12:42:10 +00:00
|
|
|
# Ensure all except those in whitelist are removed
|
|
|
|
assert whitelist == refreshedwhitelist
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2018-01-02 12:46:16 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
def test_refresh_whitelist(mocker):
|
|
|
|
conf = whitelist_conf()
|
|
|
|
mocker.patch.dict('freqtrade.main._CONF', conf)
|
|
|
|
mocker.patch.multiple('freqtrade.main.exchange',
|
2018-02-03 21:44:13 +00:00
|
|
|
get_markets=get_markets)
|
2017-12-30 13:15:07 +00:00
|
|
|
refreshedwhitelist = refresh_whitelist(conf['exchange']['pair_whitelist'])
|
2018-01-02 12:42:10 +00:00
|
|
|
# List ordered by BaseVolume
|
2018-02-03 16:15:40 +00:00
|
|
|
whitelist = ['ETH/BTC', 'TKN/BTC']
|
2017-12-28 14:58:02 +00:00
|
|
|
# Ensure all except those in whitelist are removed
|
2018-01-02 11:04:47 +00:00
|
|
|
assert whitelist == refreshedwhitelist
|
2017-12-28 14:58:02 +00:00
|
|
|
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
def test_refresh_whitelist_dynamic(mocker):
|
|
|
|
conf = whitelist_conf()
|
|
|
|
mocker.patch.dict('freqtrade.main._CONF', conf)
|
|
|
|
mocker.patch.multiple('freqtrade.main.exchange',
|
2018-02-03 21:44:13 +00:00
|
|
|
get_markets=get_markets)
|
2018-01-02 22:00:03 +00:00
|
|
|
mocker.patch.multiple('freqtrade.main.exchange',
|
|
|
|
get_market_summaries=get_market_summaries)
|
2017-12-28 14:58:02 +00:00
|
|
|
# argument: use the whitelist dynamically by exchange-volume
|
2018-02-03 16:15:40 +00:00
|
|
|
whitelist = ['TKN/BTC', 'ETH/BTC']
|
2018-01-10 09:17:16 +00:00
|
|
|
refreshedwhitelist = refresh_whitelist(
|
|
|
|
gen_pair_whitelist(conf['stake_currency']))
|
2018-01-02 11:04:47 +00:00
|
|
|
assert whitelist == refreshedwhitelist
|
2017-12-28 14:58:02 +00:00
|
|
|
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
def test_refresh_whitelist_dynamic_empty(mocker):
|
|
|
|
conf = whitelist_conf()
|
|
|
|
mocker.patch.dict('freqtrade.main._CONF', conf)
|
|
|
|
mocker.patch.multiple('freqtrade.main.exchange',
|
2018-02-03 21:44:13 +00:00
|
|
|
get_markets=get_markets_empty)
|
2017-12-28 14:58:02 +00:00
|
|
|
# argument: use the whitelist dynamically by exchange-volume
|
|
|
|
whitelist = []
|
|
|
|
conf['exchange']['pair_whitelist'] = []
|
|
|
|
refresh_whitelist(whitelist)
|
|
|
|
pairslist = conf['exchange']['pair_whitelist']
|
2017-12-30 10:55:23 +00:00
|
|
|
assert set(whitelist) == set(pairslist)
|