We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e2eca3 commit 2325e5fCopy full SHA for 2325e5f
2 files changed
freqtrade/exchange/binance.py
@@ -48,6 +48,7 @@ class Binance(Exchange):
48
"has_delisting": True,
49
}
50
_ft_has_futures: FtHas = {
51
+ "ohlcv_candle_limit": 499,
52
"funding_fee_candle_limit": 1000,
53
"stoploss_order_types": {"limit": "stop", "market": "stop_market"},
54
"stoploss_blocks_assets": False, # Stoploss orders do not block assets
tests/exchange_online/conftest.py
@@ -44,7 +44,7 @@ class TestExchangeOnlineSetup(TypedDict):
44
"candle_count": 1000,
45
"futures": True,
46
"futures_pair": "BTC/USDT:USDT",
47
- "candle_count_futures": 1500,
+ "candle_count_futures": 499,
"hasQuoteVolumeFutures": True,
"leverage_tiers_public": False,
"leverage_in_spot_market": False,
0 commit comments