We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 068caf1 commit 6cfd31cCopy full SHA for 6cfd31c
freqtrade/exchange/exchange.py
@@ -2799,7 +2799,7 @@ async def _async_get_candle_history(
2799
timeframe, candle_type=candle_type, since_ms=since_ms
2800
)
2801
2802
- if candle_type and candle_type != CandleType.SPOT:
+ if candle_type and candle_type not in (CandleType.SPOT, CandleType.FUTURES):
2803
params.update({"price": candle_type.value})
2804
if candle_type != CandleType.FUNDING_RATE:
2805
data = await self._api_async.fetch_ohlcv(
0 commit comments