2018-02-12 08:37:19 +00:00
|
|
|
# pragma pylint: disable=missing-docstring,C0103,protected-access
|
2018-01-28 07:38:41 +00:00
|
|
|
|
2018-02-12 08:37:19 +00:00
|
|
|
import freqtrade.tests.conftest as tt # test tools
|
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():
|
2018-02-12 08:37:19 +00:00
|
|
|
config = tt.default_conf()
|
|
|
|
|
|
|
|
config['stake_currency'] = 'BTC'
|
|
|
|
config['exchange']['pair_whitelist'] = [
|
|
|
|
'BTC_ETH',
|
|
|
|
'BTC_TKN',
|
|
|
|
'BTC_TRST',
|
|
|
|
'BTC_SWT',
|
|
|
|
'BTC_BCC'
|
|
|
|
]
|
|
|
|
|
|
|
|
config['exchange']['pair_blacklist'] = [
|
|
|
|
'BTC_BLK'
|
|
|
|
]
|
|
|
|
|
|
|
|
return config
|
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
|
|
|
|
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
def get_health():
|
2018-01-28 07:38:41 +00:00
|
|
|
return [{'Currency': 'ETH', 'IsActive': True},
|
|
|
|
{'Currency': 'TKN', 'IsActive': True},
|
|
|
|
{'Currency': 'BLK', 'IsActive': True}]
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
|
|
|
|
def get_health_empty():
|
|
|
|
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()
|
2018-02-12 08:37:19 +00:00
|
|
|
|
|
|
|
freqtradebot = tt.get_patched_freqtradebot(mocker, conf)
|
|
|
|
|
|
|
|
mocker.patch('freqtrade.freqtradebot.exchange.get_wallet_health', get_health)
|
|
|
|
refreshedwhitelist = freqtradebot._refresh_whitelist(
|
|
|
|
conf['exchange']['pair_whitelist'] + ['BTC_XXX']
|
|
|
|
)
|
2018-01-02 12:42:10 +00:00
|
|
|
# List ordered by BaseVolume
|
|
|
|
whitelist = ['BTC_ETH', 'BTC_TKN']
|
|
|
|
# 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()
|
2018-02-12 08:37:19 +00:00
|
|
|
freqtradebot = tt.get_patched_freqtradebot(mocker, conf)
|
|
|
|
|
|
|
|
mocker.patch('freqtrade.freqtradebot.exchange.get_wallet_health', get_health)
|
|
|
|
refreshedwhitelist = freqtradebot._refresh_whitelist(conf['exchange']['pair_whitelist'])
|
|
|
|
|
2018-01-02 12:42:10 +00:00
|
|
|
# List ordered by BaseVolume
|
2017-12-28 14:58:02 +00:00
|
|
|
whitelist = ['BTC_ETH', 'BTC_TKN']
|
|
|
|
# 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()
|
2018-02-12 08:37:19 +00:00
|
|
|
freqtradebot = tt.get_patched_freqtradebot(mocker, conf)
|
|
|
|
mocker.patch.multiple(
|
|
|
|
'freqtrade.freqtradebot.exchange',
|
|
|
|
get_wallet_health=get_health,
|
|
|
|
get_market_summaries=get_market_summaries
|
|
|
|
)
|
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
# argument: use the whitelist dynamically by exchange-volume
|
2018-01-02 11:04:47 +00:00
|
|
|
whitelist = ['BTC_TKN', 'BTC_ETH']
|
2018-02-12 08:37:19 +00:00
|
|
|
|
|
|
|
refreshedwhitelist = freqtradebot._refresh_whitelist(
|
|
|
|
freqtradebot._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()
|
2018-02-12 08:37:19 +00:00
|
|
|
freqtradebot = tt.get_patched_freqtradebot(mocker, conf)
|
|
|
|
mocker.patch('freqtrade.freqtradebot.exchange.get_wallet_health', get_health_empty)
|
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
# argument: use the whitelist dynamically by exchange-volume
|
|
|
|
whitelist = []
|
|
|
|
conf['exchange']['pair_whitelist'] = []
|
2018-02-12 08:37:19 +00:00
|
|
|
freqtradebot._refresh_whitelist(whitelist)
|
2017-12-28 14:58:02 +00:00
|
|
|
pairslist = conf['exchange']['pair_whitelist']
|
2018-02-12 08:37:19 +00:00
|
|
|
|
2017-12-30 10:55:23 +00:00
|
|
|
assert set(whitelist) == set(pairslist)
|