Tool lesson

Fair Value Tracker: Use Scanner To Prioritize Monitoring, Not Execution

A practical Fair Value Tracker lesson for reading scanner rows as a triage queue into Overview, History, or Alerts instead of an execution list.

12 minBeginner5 chapters

Educational only

The examples teach workflow and risk framing. They do not provide trade recommendations, personalized advice, leverage guidance, or guaranteed outcomes.

Chapter 01

Read scanner rank as a priority queue

Trader question

Which asset and contract pair deserves my attention first?

Scanner rank is a workflow sorter. It helps the learner decide which row to inspect first, but rank is not a recommendation and should never skip source, contract, confidence, and history checks.

Desk checklist

  • Read rank as attention priority.
  • Name the row's asset and contract pair.
  • Keep the row inside a checklist, not an execution path.

Interactive proof

Scanner tab, rank column, asset, contract pair, and row order

Use the scanner triage game to route rows into inspect now, compare history, set alert, or ignore.

1Scanner rankPriority queueRank helps decide what deserves attention first; it does not approve a trade or replace the checklist.
2ConfidenceQuality before sizeA high basis with weak confidence should move down or out of the monitoring queue.
3RegimeLive, delayed, stale, estimatedRegime explains whether the row belongs in inspect now, compare history, alert, or ignore.
4Row actionsView, compare, alertThe action should route the learner into Overview, History, or Alerts instead of execution language.
5Ignore gateLarge basis can failA tempting large row can still be ignored when source quality, confidence, or contract lane is weak.

Scanner is an attention router. A row earns the next workflow only after confidence, regime, source freshness, and contract lane pass the quality gate.

Interactive desk lab

Scanner Triage Game

A practical Fair Value Tracker scanner triage game for sorting rows into inspect now, compare history, set alert, or ignore for data quality before treating rank as monitoring priority.

Native scroll

A practical Fair Value Tracker scanner triage game for sorting rows into inspect now, compare history, set alert, or ignore for data quality before treating rank as monitoring priority.

44s Remotion sceneRankIsPriorityQueueVideo

Rank is a priority queue

A rank badge moves beside the checklist while execution language stays blocked.

Storyboard beats4 cues
1

A rank one row enters the scanner.

2

The rank badge attaches to a checklist, not an order ticket.

3

A blocked execution label fades out.

4

The final frame says inspect first.

Remotion code

RankIsPriorityQueueVideo

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 RankIsPriorityQueueVideo = () => {
  const frame = useCurrentFrame();
  const x = interpolate(frame, [22, 70], [-220, 0], {
    extrapolateRight: "clamp",
    easing: Easing.bezier(0.16, 1, 0.3, 1),
  });
  const blockedOpacity = interpolate(frame, [58, 92], [1, 0], {
    extrapolateRight: "clamp",
  });

  return (
    <AbsoluteFill style={{background: "#071126", color: "#fff8e8", padding: 72}}>
      <h1>Rank tells the desk where to look first.</h1>
      <div style={{marginTop: 68, padding: 22, border: "1px solid #d9971f", transform: "translateX(" + x + "px)"}}>Rank 1 row</div>
      <Sequence from={54} layout="none"><div style={{marginTop: 24, padding: 18, background: "#fff8e8", color: "#071126"}}>Checklist: source, contract, confidence, history</div></Sequence>
      <Sequence from={70} layout="none"><div style={{marginTop: 24, padding: 18, background: "#fbe5df", color: "#b42318", opacity: blockedOpacity}}>Blocked: automatic execution</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.

Open Fair Value Tracker