mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-16 04:41:15 +00:00
fix: bitvavo is now using tick-size for pricing and amount rounding
This commit is contained in:
@@ -2,8 +2,6 @@
|
|||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from ccxt import DECIMAL_PLACES
|
|
||||||
|
|
||||||
from freqtrade.exchange import Exchange
|
from freqtrade.exchange import Exchange
|
||||||
from freqtrade.exchange.exchange_types import FtHas
|
from freqtrade.exchange.exchange_types import FtHas
|
||||||
|
|
||||||
@@ -24,11 +22,3 @@ class Bitvavo(Exchange):
|
|||||||
_ft_has: FtHas = {
|
_ft_has: FtHas = {
|
||||||
"ohlcv_candle_limit": 1440,
|
"ohlcv_candle_limit": 1440,
|
||||||
}
|
}
|
||||||
|
|
||||||
@property
|
|
||||||
def precisionMode(self) -> int:
|
|
||||||
"""
|
|
||||||
Exchange ccxt precisionMode
|
|
||||||
Override due to https://github.com/ccxt/ccxt/issues/20408
|
|
||||||
"""
|
|
||||||
return DECIMAL_PLACES
|
|
||||||
|
|||||||
Reference in New Issue
Block a user