Tool lesson

Backtest: Set The Test Context Before Rules

A practical Backtest lesson for setting the test ticket first: instrument, enabled market lane, sample window, and capital assumption before any strategy logic is allowed to matter.

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

Build the context ticket first

Trader question

Which market, venue, candle, date window, and capital assumption am I testing?

The test context decides what the result can mean. Before the Strategy Builder opens, the learner should be able to name the metal, active venue, candle set, sample range, and capital frame.

Desk checklist

  • Choose the instrument intentionally.
  • Confirm the enabled venue and candle lane.
  • Write down the date window and capital assumption.

Interactive proof

Backtest header controls

Use the Test Context Console to change metal, range, and capital before any rules are written.

1MetalGold, silver, platinum, and palladium can each tell a different story.Choose the instrument before choosing indicators. A rule that survives gold still needs a separate check elsewhere.
2Venue and candleThe current visual path is COMEX/USD on daily OHLC.local market/local currency and weekly/monthly visual candles should be treated as unavailable until the tool enables them.
3Date window1M, 6M, 1Y, 3Y, MAX, and custom windows change the evidence quality.Short windows can be useful for stress, but they are not enough to trust a rule alone.
4CapitalInitial capital changes the simulated account frame.It is an assumption for the backtest display, not a promise about live account outcomes.

The context ticket is the first risk control. If market, candle, date range, or capital changes, the backtest is a different case.

Interactive desk lab

Backtest Test Context Console

A practical Backtest setup console for selecting metal, venue, candle, date window, and capital before building strategy rules.

Native scroll

A practical Backtest setup console for selecting metal, venue, candle, date window, and capital before building strategy rules.

46s Remotion sceneContextTicketVideo

The context ticket locks first

Metal, venue, candle, range, and capital stamp onto a ticket before the Strategy Builder opens.

Storyboard beats4 cues
1

A blank Backtest screen appears.

2

Metal, venue, candle, range, and capital stamp in order.

3

Disabled local market and weekly/monthly lanes dim out.

4

The strategy rule area unlocks only after the ticket is visible.

Remotion code

ContextTicketVideo

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 fields = ["Metal", "Venue", "Candle", "Range", "Capital"];

export const ContextTicketVideo = () => (
  <AbsoluteFill style={{background: "#fff8e8", color: "#071126", padding: 72}}>
    <h1>Context first. Rules second.</h1>
    {fields.map((field, index) => (
      <Sequence key={field} from={index * 16}>
        <div style={{marginTop: 22, border: "1px solid #b69a5b", padding: 16}}>
          {field} locked
        </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 Strategy Backtester