From bddddfffee92c6f57d696c4b8431a34fdc3b5064 Mon Sep 17 00:00:00 2001 From: Melchior Reimers Date: Fri, 23 Jan 2026 17:56:47 +0100 Subject: [PATCH] feat: enable unlimited historical data fetching for EIX --- daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index 6426d27..e0940c2 100644 --- a/daemon.py +++ b/daemon.py @@ -46,7 +46,7 @@ def run_task(historical=False): ls = LSExchange() exchanges_to_process = [ - (eix, {'limit': 100 if historical else 1}), + (eix, {'limit': None if historical else 1}), (ls, {'include_yesterday': historical}) ]