From 4eba2c6a249fb5ecf7215e49fd0d1c5253a2269c Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 2 Oct 2025 07:17:19 +0200 Subject: [PATCH] fix: bitvavo is now using tick-size for pricing and amount rounding --- freqtrade/exchange/bitvavo.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/freqtrade/exchange/bitvavo.py b/freqtrade/exchange/bitvavo.py index fdbb8a7d4..a164b6e59 100644 --- a/freqtrade/exchange/bitvavo.py +++ b/freqtrade/exchange/bitvavo.py @@ -2,8 +2,6 @@ import logging -from ccxt import DECIMAL_PLACES - from freqtrade.exchange import Exchange from freqtrade.exchange.exchange_types import FtHas @@ -24,11 +22,3 @@ class Bitvavo(Exchange): _ft_has: FtHas = { "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