Ship the session-breakout demo as a World-consumable Composite blueprint #94
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Surfaced by the GER40 research deep-dive fieldtest (
docs/specs/fieldtest-research-breakout-deepdive.md).The flagship real-data demo (commit
5b5f034,crates/aura-ingest/examples/ger40_breakout_real.rs+examples/shared/breakout_real.rs) ships the session-breakout as ahand-wired raw
FlatGraphbuilt byHarness::bootstrap. But every Worldorchestration family —
sweep,walk_forward,optimize— consumes aCompositeblueprint (it needsparam_space()+bootstrap_with_cells). AFlatGraphhas no param space.So to take this exact strategy into the World, a researcher must first
re-author all 13 nodes + 14 edges + 4 roles as a
Compositeby hand. Thefieldtest did exactly this and the re-authored Composite reproduced the shipped
FlatGraph's numbers EXACTLY (
entry=3,exit=5→ −45.0; 2024 → +203.4 / 62sessions) — strong evidence the only gap is the form, not the behaviour
(C23 behaviour-preserving holds).
C20/C21 promise a strategy blueprint is "reused across backtest, sweep, visual
workspaces", and the milestone fixtures demonstrate this for SMA-cross — but the
just-shipped real-data flagship ships in a form the World cannot consume, and
the ledger does not say which form a shippable strategy should take. A
consumer cannot tell from the public surface whether the FlatGraph form is
intentional or a gap.
Recommend: ship the breakout as a reusable
Compositeblueprint (theauthoring form; FlatGraph is its compiled target per C11/C23), so the demo's
strategy is World-ready — single backtest, sweep, walk-forward and
multi-instrument compare all bootstrap from the one blueprint. This is the
highest-value follow-up: it converts the deep-dive's #1 friction into
capability and dogfoods the blueprint path on real data. Couples with the
period-coupling fix (sibling issue) — the blueprint is where the period becomes
a single coupled knob.