From 80d70216f7c039aa3a0991e5809119db937cafe7 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 8 Apr 2022 13:53:38 -0400 Subject: [PATCH] Drop back down ohlc bars request count to not trigger feed hack --- piker/brokers/ib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piker/brokers/ib.py b/piker/brokers/ib.py index b05e77a3..4a24203b 100644 --- a/piker/brokers/ib.py +++ b/piker/brokers/ib.py @@ -1592,7 +1592,7 @@ async def backfill_bars( # on that until we have the `marketstore` daemon in place in which # case the shm size will be driven by user config and available sys # memory. - count: int = 59, + count: int = 16, task_status: TaskStatus[trio.CancelScope] = trio.TASK_STATUS_IGNORED,