Pivot Calculator: Compare Pivot Families Without Getting Lost
A practical Pivot Calculator lesson for turning family overlays on one at a time, understanding the question each family answers, and removing chart clutter before reading confluence.
Educational only
The examples teach workflow and risk framing. They do not provide trade recommendations, personalized advice, leverage guidance, or guaranteed outcomes.
Chapter 01
Start with the same inputs
Trader question
What do these pivot families share before they disagree?
The Pivot Calculator families start from completed-session price context before live price is layered on top. The first habit is to confirm the map source, then choose the family that answers today's question.
Desk checklist
- Confirm the completed-session inputs first.
- Name the chart question before adding overlays.
- Turn on one family before stacking overlays.
Interactive proof
Setup controls, mini chart overlays, and family tabs
Use the overlay lab to switch between one family, a useful overlap, and a crowded chart.
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 Family Overlay Lab
A practical overlay lab for comparing Classic, CPR, Fibonacci, and Camarilla as separate chart lenses before stacking pivot families.
A practical overlay lab for comparing Classic, CPR, Fibonacci, and Camarilla as separate chart lenses before stacking pivot families.
Pick the lens before the line
Four pivot families appear as labeled lenses, then all but Classic fade until the first chart question is clear.
Classic, CPR, Fibonacci, and Camarilla labels enter together.
The chart dims three families.
Classic remains as the base ladder.
The caption reads: question first, family second.
Remotion code
FamilyLensFirstVideo
The snippet is stored with the lesson so a future Remotion project can render the chapter video.
Show component snippet
import {AbsoluteFill, Sequence} from "remotion";
const families = ["Classic", "CPR", "Fibonacci", "Camarilla"];
export const FamilyLensFirstVideo = () => (
<AbsoluteFill style={{background: "#fff8e8", color: "#071126", padding: 72}}>
<h1>Choose the lens before trusting the line.</h1>
{families.map((family, index) => (
<Sequence key={family} from={index * 12}>
<div style={{marginTop: 24, opacity: family === "Classic" ? 1 : 0.35}}>
{family} \u00B7 asks a different question
</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.