From 32aae7a64177002e7c74f51d2bec6b71c7152296 Mon Sep 17 00:00:00 2001 From: Yakir Date: Sat, 27 Jul 2024 22:20:41 +0300 Subject: [PATCH] fix: update-active-orders wasn't get called --- jesse/modes/import_candles_mode/__init__.py | 2 +- jesse/research/import_candles.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/jesse/modes/import_candles_mode/__init__.py b/jesse/modes/import_candles_mode/__init__.py index 99f87178f..22912afea 100644 --- a/jesse/modes/import_candles_mode/__init__.py +++ b/jesse/modes/import_candles_mode/__init__.py @@ -138,7 +138,7 @@ def handle_time(): }) else: print(msg) - run(exchange, symbol, jh.timestamp_to_time(first_existing_timestamp)[:10], mode, + run(client_id, exchange, symbol, jh.timestamp_to_time(first_existing_timestamp)[:10], mode, running_via_dashboard, show_progressbar) return diff --git a/jesse/research/import_candles.py b/jesse/research/import_candles.py index 67c9848a2..ab33356ca 100644 --- a/jesse/research/import_candles.py +++ b/jesse/research/import_candles.py @@ -7,6 +7,7 @@ def import_candles( from jesse.modes.import_candles_mode import run return run( + client_id='', exchange=exchange, symbol=symbol, start_date_str=start_date,