Correlation Matrix: Treat Divergence And Lead-Lag As Watchlist Context
A practical Correlation Matrix lesson for translating generated outputs into relationship alerts, classifying stretched relationships, and requiring confirmation before strategy research.
Educational only
The examples teach workflow and risk framing. They do not provide trade recommendations, personalized advice, leverage guidance, or guaranteed outcomes.
Chapter 01
Reframe generated outputs as relationship alerts
Trader question
What should I do when the tool shows a generated output?
Generated outputs are review cues. In Learn, the signals tab becomes a relationship-alert queue so the learner knows to inspect, classify, and confirm before any stronger research claim.
Desk checklist
- Call the output a relationship alert.
- Name the pair and period.
- Move the output into a watchlist queue.
Interactive proof
Signals tab, overall signal strip, active signal tape, and pair controls
Open the divergence watchlist lab and classify the output without using instruction language.
Divergence, lead-lag, and relationship alerts are watchlist diagnostics. They deserve independent confirmation before they become any stronger research claim.
Interactive desk lab
Divergence Watchlist Lab
A practical Correlation Matrix diagnostics lab for changing lookback and sensitivity, reading expected versus actual move, z-score, and lead-lag, then classifying the output as ignore, monitor, or needs confirmation.
A practical Correlation Matrix diagnostics lab for changing lookback and sensitivity, reading expected versus actual move, z-score, and lead-lag, then classifying the output as ignore, monitor, or needs confirmation.
Signals become relationship alerts
The signal strip is relabeled as a review queue before any output is interpreted.
A bright signal strip appears.
The word signal is covered by relationship alert.
The output moves into a watchlist queue.
The queue asks for confirmation before research continues.
Remotion code
CorrelationAlertOutputReframeVideo
The snippet is stored with the lesson so a future Remotion project can render the chapter video.
Show component snippet
import {AbsoluteFill, Easing, Sequence, interpolate, useCurrentFrame} from "remotion";
export const CorrelationAlertOutputReframeVideo = () => {
const frame = useCurrentFrame();
const cover = interpolate(frame, [34, 72], [0, 1], {extrapolateLeft: "clamp", extrapolateRight: "clamp", easing: Easing.bezier(0.16, 1, 0.3, 1)});
return (
<AbsoluteFill style={{background: "#fff8e8", color: "#071126", padding: 72}}>
<h1 style={{fontSize: 54, lineHeight: 1}}>Model output goes into a review queue.</h1>
<div style={{marginTop: 54, border: "1px solid #d9c69a", background: "#fffdf7", padding: 28}}>
<div style={{position: "relative", minHeight: 92, overflow: "hidden"}}>
<strong style={{display: "block", fontSize: 46, color: "#b42318"}}>Signal: divergence stretched</strong>
<div style={{position: "absolute", inset: 0, transform: "translateX(" + (-100 + cover * 100) + "%)", background: "#071126", color: "#fff8e8", display: "grid", placeItems: "center", fontSize: 38, fontWeight: 900}}>Relationship alert: review needed</div>
</div>
</div>
<Sequence from={92} layout="none">
<div style={{marginTop: 24, padding: 20, background: "#e8eefb", color: "#2454a6", fontSize: 28, fontWeight: 900}}>Alert first. Confirmation next. No instruction to trade.</div>
</Sequence>
</AbsoluteFill>
);
};Sources used for this tutorial
Next step
Open the tool with the checklist beside you.
Move from the lesson into the matching Bullion Brains tool, keep the checklist visible, and treat the output as evidence until the caveats are clear.