Wire --trace (per-member stream tracing) for the stage1-r sweep #135
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?
Cycle 0066 (#133) added
aura sweep --strategy stage1-r, but per-member streamtracing is not wired for it:
aura sweep --strategy stage1-r --trace <n>is refusedexplicitly (exit 2) rather than writing per-member trace dirs, because a stage1-r
member has four taps (equity / exposure / R-record / r_equity) and would need
persist_traces_rpermember_key— unlike the sma/momentum sweeps, whose--tracewrites two-tap member dirs (tested at cli_run.rs
*_trace_persists_*).Scope: have
stage1_r_sweep_familyhonour--traceby persisting each member'sequity / exposure / r_equity under
runs/traces/<n>/<member_key>/(viapersist_traces_r+member_key, mirroringmomentum_sweep_family), then drop the--trace-refusal guard inrun_sweepand update the refusal test to assert themember dirs instead. This makes
--tracesymmetric across all three sweep strategiesand lets a swept stage1-r member be charted (
aura chart <n>/<member_key> --tap r_equity).Deferred from 0066 by design (the cycle's deliverable was the rankable family store +
rank-by-SQN, not per-member chart persistence); the refusal is the honest interim
(no silent no-op). Reference: the
_traceslot + guard inrun_sweep,stage1_r_sweep_familydoc in crates/aura-cli/src/main.rs.Design reconciliation (specify) — cycle 0067
Spec:
0067-r-sweep-followups. Approach resolved below (derived autonomouslyunder
/boss; reply to veto).momentum_sweep_family's persist pattern, reusing the existingpersist_traces_r(3 taps: equity / exposure / r_equity), keyed by thegeneric
member_keyover the varying fast/slow axes; drop the--trace-refusal guard inrun_sweep.Basis: derived — this is the issue's prescribed approach and the established
sibling template; it makes
--tracesymmetric across all three sweepstrategies (sma / momentum / stage1-r). The fixed R-params
(
stop_length/stop_k/bias_scale) stay in the manifest but areexcluded from
member_key(they are not varying), exactly as the 0066manifest-completeness fix arranged. A swept member is then chartable via
aura chart <n>/<member_key> --tap r_equity.