Add test for fee calculation

This commit is contained in:
Matthias 2020-10-23 20:49:46 +02:00
parent 38af1b2a5d
commit 79ed89e487
1 changed files with 9 additions and 0 deletions

View File

@ -98,3 +98,12 @@ class TestCCXTExchange():
next_limit = exchange.get_next_limit_in_list(val, exchange._ft_has['l2_limit_range'])
assert len(l2['asks']) == next_limit
assert len(l2['asks']) == next_limit
def test_ccxt_get_fee(self, exchange):
exchange, exchangename = exchange
pair = EXCHANGES[exchangename]['pair']
assert exchange.get_fee(pair, 'limit', 'buy') > 0 < 1
assert exchange.get_fee(pair, 'limit', 'sell') > 0 < 1
assert exchange.get_fee(pair, 'market', 'buy') > 0 < 1
assert exchange.get_fee(pair, 'market', 'sell') > 0 < 1