Gold Desk Workflow: From Fair Value to Trade Plan
A guided desk session for newer commodity traders who need a practical path from market data to a disciplined daily plan.
Educational only
The examples teach workflow and risk framing. They do not provide trade recommendations, personalized advice, leverage guidance, or guaranteed outcomes.
Chapter 01
From COMEX to local market fair value
Trader question
Is local market gold rich or cheap versus global gold?
Start with the global gold reference, convert through FX, add visible local assumptions, then compare the active local market contract against a fair-value band.
Desk checklist
- Check timestamp freshness before trusting the spread.
- Keep the contract month and local quotation basis visible.
- Treat parity as a band, not a magic target.
Interactive proof
Fair Value Tracker
Walk the quote through each layer and notice where assumptions enter the number.
Global gold reference translated into local currency/10g
FX layer lifts or compresses the local read
Duty, carry, and local assumptions form parity
Live futures can trade rich or cheap to parity
Interactive desk lab
COMEX to local market Fair Value Bridge
A source-backed Gold Desk workbench for converting a COMEX gold reference into an estimated local market local currency per 10g fair value.
A source-backed Gold Desk workbench for converting a COMEX gold reference into an estimated local market local currency per 10g fair value.
COMEX to local market fair-value bridge
A global gold quote passes through FX, landed costs, and carry before becoming a local parity band.
COMEX quote enters as the global reference.
FX layer translates the quote into local currency.
Duty and carry layers stack into an local market parity band.
Live local market print lands above, inside, or below that band.
Remotion code
FairValueBridgeVideo
The snippet is stored with the lesson so a future Remotion project can render the chapter video.
Show component snippet
import {AbsoluteFill, Sequence, interpolate, useCurrentFrame} from "remotion";
export const FairValueBridgeVideo = () => {
const frame = useCurrentFrame();
const bridge = interpolate(frame, [0, 42], [0, 1], {
extrapolateLeft: "clamp",
extrapolateRight: "clamp",
});
return (
<AbsoluteFill style={{background: "#f4f1e8", color: "#071126", padding: 72}}>
<Sequence durationInFrames={42}>
<h1 style={{fontSize: 58}}>COMEX is the reference, not the local trade.</h1>
</Sequence>
<Sequence from={36} durationInFrames={62}>
<div style={{transform: "translateX(" + bridge * 420 + "px)"}}>COMEX -> USDINR -> costs -> MCX band</div>
</Sequence>
<Sequence from={96}>
<p>Only then compare the live MCX print against parity.</p>
</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.