Skip to content

Commit a45be31

Browse files
committed
Exclude archived IBKR profiles from rollout
1 parent ad2706f commit a45be31

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

strategy_registry.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,15 @@
2222

2323
IBKR_PLATFORM = "ibkr"
2424

25-
IBKR_ROLLOUT_ALLOWLIST = get_runtime_enabled_profiles()
25+
RESEARCH_ONLY_ARCHIVED_PROFILES = frozenset(
26+
{
27+
"dynamic_mega_leveraged_pullback",
28+
"mega_cap_leader_rotation_aggressive",
29+
"mega_cap_leader_rotation_dynamic_top20",
30+
}
31+
)
32+
33+
IBKR_ROLLOUT_ALLOWLIST = get_runtime_enabled_profiles() - RESEARCH_ONLY_ARCHIVED_PROFILES
2634

2735
PLATFORM_SUPPORTED_DOMAINS: dict[str, frozenset[str]] = {
2836
IBKR_PLATFORM: frozenset({US_EQUITY_DOMAIN}),

0 commit comments

Comments
 (0)