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'] = [
|
2018-03-24 19:42:51 +00:00
|
|
|
'ETH/BTC',
|
|
|
|
'TKN/BTC',
|
|
|
|
'TRST/BTC',
|
|
|
|
'SWT/BTC',
|
|
|
|
'BCC/BTC'
|
2018-02-12 08:37:19 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
config['exchange']['pair_blacklist'] = [
|
2018-03-24 19:42:51 +00:00
|
|
|
'BLK/BTC'
|
2018-02-12 08:37:19 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
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():
|
2018-03-24 19:42:51 +00:00
|
|
|
return {
|
|
|
|
'TKN/BTC': {
|
|
|
|
'symbol': 'TKN/BTC',
|
|
|
|
'info': {
|
|
|
|
'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': ''
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'ETH/BTC': {
|
|
|
|
'symbol': 'ETH/BTC',
|
|
|
|
'info': {
|
|
|
|
'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': ''
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'BLK/BTC': {
|
|
|
|
'symbol': 'BLK/BTC',
|
|
|
|
'info': {
|
|
|
|
'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-03-24 19:42:51 +00:00
|
|
|
return {
|
|
|
|
'ETH/BTC': {'base': 'ETH', 'active': True},
|
|
|
|
'TKN/BTC': {'base': 'TKN', 'active': True},
|
|
|
|
'BLK/BTC': {'base': 'BLK', 'active': True}}
|
2017-12-28 19:05:33 +00:00
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
|
|
|
|
def get_health_empty():
|
2018-03-24 19:42:51 +00:00
|
|
|
return {}
|
2017-12-28 14:58:02 +00:00
|
|
|
|
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(
|
2018-03-24 19:42:51 +00:00
|
|
|
conf['exchange']['pair_whitelist'] + ['XXX/BTC']
|
2018-02-12 08:37:19 +00:00
|
|
|
)
|
2018-01-02 12:42:10 +00:00
|
|
|
# List ordered by BaseVolume
|
2018-03-24 19:42:51 +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()
|
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
|
2018-03-24 19:42:51 +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()
|
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-03-24 19:42:51 +00:00
|
|
|
whitelist = ['TKN/BTC', 'ETH/BTC']
|
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)
|