fix htx: Reduce amount of data downloaded on higher timeframes

closes #10247
This commit is contained in:
Matthias 2024-05-26 15:49:48 +02:00
parent 32ff3ebb99
commit 46e97e5806

View File

@ -24,6 +24,10 @@ class Htx(Exchange):
"ohlcv_candle_limit": 1000,
"l2_limit_range": [5, 10, 20],
"l2_limit_range_required": False,
"ohlcv_candle_limit_per_timeframe": {
"1w": 500,
"1M": 500,
},
}
def _get_stop_params(self, side: BuySell, ordertype: str, stop_price: float) -> Dict: