Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions platform-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,12 @@
"dry_run"
],
"blocked_live_reason": "missing_current_promotion_evidence_and_preauthorized_autonomy_policy",
"live_continuity": {
"eligible": true,
"allowed_platforms": [
"ibkr"
]
},
"features": {
"income_layer": true,
"option_overlay": true,
Expand Down Expand Up @@ -529,6 +535,12 @@
"dry_run"
],
"blocked_live_reason": "research_backtest_only_requires_evidence_package",
"live_continuity": {
"eligible": true,
"allowed_platforms": [
"ibkr"
]
},
"runtime_artifacts": {
"feature_snapshot": {
"required": true,
Expand Down Expand Up @@ -576,6 +588,12 @@
"dry_run"
],
"blocked_live_reason": "missing_current_promotion_evidence_and_preauthorized_autonomy_policy",
"live_continuity": {
"eligible": true,
"allowed_platforms": [
"ibkr"
]
},
"runtime_artifacts": {
"feature_snapshot": {
"required": true,
Expand Down
36 changes: 36 additions & 0 deletions python/tests/test_runtime_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,42 @@ def test_live_continuity_keeps_an_existing_baseline_separate_from_candidate_gate

self.assertEqual(runtime_settings.validate_target(target), [])

def test_confirmed_legacy_ibkr_profiles_are_continuity_eligible(self):
"""Candidate policy must not strand an explicitly frozen IBKR incumbent."""

parser = build_runtime_switch.build_parser()
for profile in (
"tqqq_growth_income",
"global_etf_rotation",
"russell_top50_leader_rotation",
):
with self.subTest(profile=profile):
target = build_runtime_switch.build_switch_target(
parser.parse_args(
[
"--platform",
"ibkr",
"--target-name",
f"legacy-{profile}",
"--strategy-profile",
profile,
"--execution-mode",
"live",
"--live-continuity-state",
"RECONCILE_ONLY",
"--live-continuity-baseline-id",
f"ibkr-{profile}-legacy-20260830",
"--live-continuity-captured-at",
"2026-08-30",
]
)
)

strategy = build_config.load_config()["strategies"][profile]
self.assertFalse(strategy["runtime_enabled"])
self.assertFalse(strategy["can_switch_live"])
self.assertEqual(runtime_settings.validate_target(target), [])

def test_live_continuity_rejects_baseline_drift(self):
_, target = self.load_target("examples/targets/schwab/live.example.json")
runtime_target = target["runtime_target"]
Expand Down
2 changes: 1 addition & 1 deletion web/strategy-switch-console/config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web/strategy-switch-console/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web/strategy-switch-console/page_asset.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"schema_version": "qsl.runtime_catalog_projection.v1",
"source": {
"catalog_as_of": "2026-08-19",
"content_sha256": "sha256:018753899fdbd7c9ce58628598bc0b3544a6bd18eb5179ec057a1460a7b74cbe",
"content_sha256": "sha256:90261c8eaf9676c6d9b69c85222c5cb8f54305ca2fc8c0d51c96cf546f2286b0",
"path": "platform-config.json"
},
"strategies": [
Expand Down
2 changes: 1 addition & 1 deletion web/strategy-switch-console/strategy-profiles.example.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web/strategy-switch-console/strategy_profiles_asset.js

Large diffs are not rendered by default.