Fair Value Tracker: Start With The Parity Question
A beginner-safe Fair Value Tracker lesson for checking the market lane, three price legs, data freshness, confidence, and basis before writing any parity note.
Educational only
The examples teach workflow and risk framing. They do not provide trade recommendations, personalized advice, leverage guidance, or guaranteed outcomes.
Chapter 01
Choose the market lane before the gap
Trader question
Which asset and contract pair am I actually comparing?
A fair-value read is only meaningful after the learner can name the asset, unit scale, and contract pair. Gold and silver use different local units, and front, next, matched DTE, or continuous selectors answer different desk questions.
Desk checklist
- Choose GOLD or SILVER before reading the value.
- Confirm the local unit scale.
- Read the contract pair before reading the basis.
Interactive proof
Asset and contract selectors
Use the first-read desk to check asset, contract pair, freshness, confidence, and basis in order.
The basis number comes last. It becomes a parity note only after the market lane, source state, and confidence score are visible.
Interactive desk lab
Fair Value First Read Desk
A practical Fair Value Tracker first-read lab for checking asset, contract pair, source freshness, confidence, and basis before writing a parity note.
A practical Fair Value Tracker first-read lab for checking asset, contract pair, source freshness, confidence, and basis before writing a parity note.
Choose the lane before the gap
Asset, unit, and contract pair lock onto the desk before the basis number is allowed to appear.
A blank Fair Value Tracker desk appears.
Gold and silver unit lanes separate.
The contract pair locks as front versus front.
Only then does the basis number fade in as a question.
Remotion code
FairValueLaneBeforeGapVideo
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 FairValueLaneBeforeGapVideo = () => {
const frame = useCurrentFrame();
const basisOpacity = interpolate(frame, [72, 108], [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>Choose the market lane first.</h1>
<Sequence from={14}><div style={{marginTop: 34, padding: 18, border: "1px solid #b69a5b"}}>Asset: Gold | Unit: INR per 10g</div></Sequence>
<Sequence from={38}><div style={{marginTop: 18, padding: 18, border: "1px solid #b69a5b"}}>Contract pair: Front MCX versus front COMEX</div></Sequence>
<div style={{opacity: basisOpacity, marginTop: 34, fontSize: 48, color: "#8a5a0a"}}>Basis appears as a question.</div>
</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.