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 {
|
2017-12-28 19:05:33 +00:00
|
|
|
"stake_currency": "BTC",
|
2017-12-28 14:58:02 +00:00
|
|
|
"exchange": {
|
|
|
|
"pair_whitelist": [
|
|
|
|
"BTC_ETH",
|
|
|
|
"BTC_TKN",
|
|
|
|
"BTC_TRST",
|
|
|
|
"BTC_SWT",
|
|
|
|
"BTC_BCC"
|
|
|
|
],
|
2018-01-02 12:46:16 +00:00
|
|
|
"pair_blacklist": [
|
2018-01-02 12:42:10 +00:00
|
|
|
"BTC_BLK"
|
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 [{
|
|
|
|
"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": ""
|
|
|
|
}, {
|
|
|
|
"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": ""
|
|
|
|
}, {
|
|
|
|
"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": ""
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2017-12-28 14:58:02 +00:00
|
|
|
def get_health():
|
|
|
|
return [{'Currency': 'ETH',
|
2018-01-02 22:00:03 +00:00
|
|
|
'IsActive': True
|
2017-12-28 19:05:33 +00:00
|
|
|
},
|
2017-12-28 14:58:02 +00:00
|
|
|
{'Currency': 'TKN',
|
2018-01-02 22:00:03 +00:00
|
|
|
'IsActive': True
|
2018-01-02 12:42:10 +00:00
|
|
|
},
|
|
|
|
{'Currency': 'BLK',
|
2018-01-02 22:00:03 +00:00
|
|
|
'IsActive': True
|
2018-01-02 12:42:10 +00:00
|
|
|
}
|
2018-01-02 12:46:16 +00:00
|
|
|
]
|
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()
|
|
|
|
mocker.patch.dict('freqtrade.main._CONF', conf)
|
|
|
|
mocker.patch.multiple('freqtrade.main.exchange',
|
|
|
|
get_wallet_health=get_health)
|
2018-01-02 12:46:16 +00:00
|
|
|
refreshedwhitelist = 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()
|
|
|
|
mocker.patch.dict('freqtrade.main._CONF', conf)
|
|
|
|
mocker.patch.multiple('freqtrade.main.exchange',
|
|
|
|
get_wallet_health=get_health)
|
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
|
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()
|
|
|
|
mocker.patch.dict('freqtrade.main._CONF', conf)
|
|
|
|
mocker.patch.multiple('freqtrade.main.exchange',
|
|
|
|
get_wallet_health=get_health)
|
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-01-02 11:04:47 +00:00
|
|
|
whitelist = ['BTC_TKN', 'BTC_ETH']
|
2018-01-02 22:00:03 +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',
|
|
|
|
get_wallet_health=get_health_empty)
|
|
|
|
# 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)
|