mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Add test for fee calculation
This commit is contained in:
parent
38af1b2a5d
commit
79ed89e487
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user