From e60b997fd0e7d7cefb34a5630e741710703942fe Mon Sep 17 00:00:00 2001 From: Joe Schr <8218910+TheJoeSchr@users.noreply.github.com> Date: Mon, 12 Feb 2024 09:38:49 +0100 Subject: [PATCH] Pass on missed argument `stop_on_from_id` --- freqtrade/exchange/exchange.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/freqtrade/exchange/exchange.py b/freqtrade/exchange/exchange.py index 90b34c984..9f6582665 100644 --- a/freqtrade/exchange/exchange.py +++ b/freqtrade/exchange/exchange.py @@ -2592,7 +2592,11 @@ class Exchange: with self._loop_lock: task = asyncio.ensure_future(self._async_get_trade_history( - pair=pair, since=since, until=until, from_id=from_id)) + pair=pair, + since=since, + until=until, + from_id=from_id, + stop_on_from_id=stop_on_from_id)) for sig in [signal.SIGINT, signal.SIGTERM]: try: