Pivot Calculator: Set Up The Session Map
A beginner-safe Pivot Calculator lesson for setting up the market context first, so CPR, support, resistance, and live distance labels become easier to trust and harder to misuse.
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 before the map
Trader question
Which market and timeframe am I actually framing right now?
The Pivot Calculator starts with a contract decision: symbol, exchange, and timeframe. Reading CPR or R1 before those are correct is how beginners turn a useful map into noise.
Desk checklist
- Choose the symbol you are actually watching.
- Pick COMEX or local market intentionally, not interchangeably.
- Match daily, weekly, or monthly to the decision horizon.
Interactive proof
Pivot Calculator setup controls
Use the setup lab to switch scenarios and notice how the same word, such as gold, changes meaning by exchange and timeframe.
Current example price: local currency 70,410. The lesson asks whether price is accepting inside CPR or rejecting near R1/S1 before acting.
Interactive desk lab
Pivot Session Map Setup Lab
A practical setup lab for choosing symbol, exchange, and timeframe before separating completed-session OHLC from the live price overlay.
A practical setup lab for choosing symbol, exchange, and timeframe before separating completed-session OHLC from the live price overlay.
Choose the market before the map
The symbol, exchange, and timeframe lock into place before any pivot level appears.
A blank Pivot Calculator panel shows three empty controls.
GOLD, COMEX, and Daily snap into the session setup row.
The pivot ladder stays dim until the completed session label is visible.
The closing caption reads: context first, levels second.
Remotion code
PivotContextPickerVideo
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";
const controls = ["GOLD", "COMEX", "Daily"];
export const PivotContextPickerVideo = () => {
const frame = useCurrentFrame();
const glow = interpolate(frame, [28, 72], [0, 1], {extrapolateLeft: "clamp", extrapolateRight: "clamp"});
return (
<AbsoluteFill style={{background: "#fff8e8", color: "#071126", padding: 72}}>
<h1 style={{fontSize: 54}}>Pick the market before reading the map.</h1>
<div style={{display: "flex", gap: 18, marginTop: 68}}>
{controls.map((control, index) => (
<Sequence key={control} from={index * 16}>
<div style={{border: "1px solid #b89b58", padding: "18px 24px", background: "#fffdf7"}}>
{control}
</div>
</Sequence>
))}
</div>
<p style={{marginTop: 62, opacity: glow}}>Only now should the pivot levels become readable.</p>
</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.