From 76c946ceeb7b5ad80ea8d091d9ccdec40000cbaf Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Tue, 29 Oct 2024 11:52:38 -0400 Subject: [PATCH] Only start gateway --- thetagang/thetagang.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thetagang/thetagang.py b/thetagang/thetagang.py index d8021e652..4cde1c861 100755 --- a/thetagang/thetagang.py +++ b/thetagang/thetagang.py @@ -436,7 +436,7 @@ def onConnected() -> None: ibc_keywords = { k: ibc_config[k] for k in ibc_config if k not in ["RaiseRequestErrors"] } - ibc = IBC(1030, **ibc_keywords) + ibc = IBC(1030, gateway=True, **ibc_keywords) ib.RaiseRequestErrors = ibc_config.get("RaiseRequestErrors", False)