Skip to main content
// MODULE 01 · FREE

What You Are Looking At

The WagerTrend chart, the data sources, the math, and how to read every component on a real team's page.

12 MIN READ · TEXT-ONLY (PHASE 1)

// THE FOUNDATION

The WagerTrend chart visualizes one team's recent scoring.

The chart is the analytical artifact at the center of the Method. One chart shows one team. Each component on the page has a specific purpose. The course is going to teach you to read every one of them.

The fastest way to learn the chart is to open one and follow along. The reference team for this module is the Los Angeles Dodgers (LAD). Open the chart in a new tab and keep it next to this page as you read.

LIVE/mlb/dodgers/run-trendOpen the Dodgers chart
// DATA SOURCE

One feed. One source of truth.

The chart consumes one data feed. Every number on the page traces back to a single commercial pipe.

// commercial license

SportsData.io

Schedule, scores, pitcher stats, and posted line data.

No social-sentiment feeds. No insider whispers. No model imputations from external sources. One commercial feed.

// CHART ANATOMY

Six regions on the page.
Each has a job.

Pull up the Los Angeles Dodgers chart you opened above. As you read each component below, find it on the page. The labels here will match the labels on the chart itself.

// MAIN CHART AREA

Daily run totals plus five overlays

One dot per game, ordered by date. Five moving averages run over the dots. The WagerTrend envelope (a two-sigma band around the twenty-game mean) hugs them. Support and resistance channel lines extend the recent local extrema. Two background tints mark the hot and cold zones.

// SCOREBOARD STRIP

Tonight's matchup, posted lines

First pitch time. The opposing team and starting pitcher. The posted full-game team total and first-five team total as currently quoted.

// RIGHT COLUMN CARDS

Form badge, posted gap, pitcher card, envelope status

The form-classification badge that puts the team in one of five named states. The form-versus-posted callout that says where the chart sits relative to tonight's number. An opposing-pitcher card with season ERA, WHIP, K/9, BB/9, and last five starts. The current envelope status (inside, near upper, near lower).

// FORM HISTORY BAR

Run-length encoding of the season

Every game this season classified into a form state, compressed into colored runs. You can see at a glance how often the team has shifted, how long the cold drifts have lasted, how stable the season has been.

// MOMENTUM PANEL

MA(5) minus MA(20)

A small oscillator beneath the main chart showing the spread between recent and baseline scoring. Zero is the reference line. Positive readings mean recent above baseline. Negative below. This is the engine of the form classifier.

// FOOTER

Data freshness and source attribution

Last data refresh, the data feed attribution (SportsData.io, commercial license), and the date range covered by the chart. Transparency about what is in and out of scope.

// VIEW TOGGLES

Two toggles. Independent.

Two toggles sit at the top of the chart. They are independent. Signals do not transfer between views. Every moving average, every band, every form classification is recomputed when either toggle changes.

// SCOPE

Scope toggle: FG or F5

Full game versus first five innings. The two scopes have different scoring distributions, different averages, and different envelope widths. A team's full-game heat does not imply its first-five heat. The Method does not assume a transfer.

// SUBSET

Subset toggle: All Games, Home, Away

Some teams are dramatically different on the road than at home. The chart lets you isolate. If you switch to Home and the chart shows fewer than 25 games, the form classifier returns NEED_MORE_GAMES and you switch back.

All computations recompute when either toggle changes. Signals do not transfer between views.

// THE MATH

Eight objects. All from the same data.

The math is simple. No machine learning. No hidden coefficients. The same calculations a research desk built into Excel forty years ago, modernized, run nightly, surfaced on a chart.

// MOVING AVERAGES

Five windows. Simple, unweighted, trailing.

MA(3), MA(5), MA(7), MA(20), MA(30). Simple unweighted means over the last N games inclusive of the most recent. An MA is undefined until N games exist. MA(5) is the recent picture. MA(20) is the baseline. The crossover between the two is the engine of every shift signal.

// SLOPES

OLS regression on the MA series itself.

slope_5 is the ordinary least squares slope of MA(5) computed over its last five points. slope_20 is the OLS slope of MA(20) over its last ten points. Units are runs per game per game. The classifier uses slope thresholds to distinguish noise from real shift. A small positive slope_5 is not enough on its own to call a team Heating Up.

// STANDARD DEVIATION

σ(20), Bessel-corrected.

Sample standard deviation over the last 20 game run totals with divisor n minus one. σ(20) governs the WagerTrend envelope width. Wider σ means a noisier team and a wider envelope.

// WAGERTREND ENVELOPE

MA(20) plus or minus two sigma.

Upper band is MA(20) plus 2σ(20). Lower band is MA(20) minus 2σ(20), clipped to zero on display because run totals cannot go negative. The unclipped value is exposed in the envelope status card so you know whether a team is theoretically below floor. Crossings of the envelope band are not signals by themselves; they are inputs into the pattern library.

The envelope is the WagerTrend indicator. The math is two-sigma; the name is proprietary.

// CHANNEL LINES

Support and resistance from local extrema.

Local maxima and minima in the last 20 games (interior points at least as high or low as both neighbors) are identified. OLS regressions are fit separately on maxima (resistance) and minima (support) against game-index position. The lines are projected five game-days forward. Channel lines with R² below 0.15 do not render. R² between 0.15 and 0.50 render with a caveat. R² of 0.50 or higher signals a strong trend.

// HOT AND COLD ZONES

Above p75 and below p25 of the team's season.

The hot zone background tint marks runs above the team's season p75 in the active view. The cold zone marks runs below the season p25. Percentiles use linear interpolation. The zones are descriptive, not predictive. They show where the team has lived in extremes, not where it is going next.

// MOMENTUM OSCILLATOR

MA(5) minus MA(20), in runs per game.

The small panel beneath the main chart. Positive readings mean recent above baseline. Negative below. The spread magnitude (absolute value) is the variable that splits the four SHIFTING sub-states (marginal, sweet, strong, extreme) you will meet in Module 2.

// CROSSOVER DETECTION

Three filters before a crossover counts.

A crossover is analytically meaningful only when three conditions hold at once. First, the sign of MA(5) minus MA(20) changed within the last three games. Second, the post-crossover spread magnitude exceeds 0.5 runs per game. Third, the absolute slope_5 exceeds 0.15 runs per game per game. If any of the three filters fails, the crossover is noise. The Method does not chase a crossover that fails any one of these filters.

If any filter fails, the crossover is noise.

// PRACTICE

Open the chart. Find each piece.

Before the knowledge check, do one round trip on the chart. Open the Los Angeles Dodgers page below in a new tab. Identify the main chart area, the scoreboard strip, the right-column cards, the form history bar, the momentum panel, and the footer. Find the WagerTrend envelope. Find the channel lines if any are rendered (recall that R² below 0.15 suppresses them). Find the hot and cold zones.

If anything reads ambiguous on the chart, scroll back up to the relevant section and read again. The chart's labels match the labels in this module by design.

LIVE/mlb/dodgers/run-trendOpen the live chart
// KNOWLEDGE CHECK

Five questions. Immediate feedback. No score gate.

Answers save on this device. If anything reads ambiguous, scroll back up to the relevant section and try again.

Q1.What does the WagerTrend envelope visualize?

Q2.A crossover happens when MA(5) crosses MA(20). For the Method, when does a crossover actually count?

Q3.What is the relationship between the FG (full game) and F5 (first five innings) views?

Q4.How many data feeds power the chart?

4 questions waiting

// WRAP UP

What you learned in Module 1

  • The WagerTrend chart visualizes one team's recent scoring against five moving averages and a two-sigma envelope.
  • Two toggles: full game versus first five, all games versus home versus away. They are independent.
  • Six core math objects: MAs, slopes, sigma, envelope, channel lines, zones, momentum oscillator.
  • A crossover counts only when three filters pass: sign change, spread magnitude, slope magnitude.
  • Data feed: SportsData.io (commercial license). One pipe.
// COMING NEXTModule 2: The Five Form StatesThe classifier that puts every team-game into one of five named states. Heating Up, Cooling Off, Shifting Up, Shifting Down, Steady. Deterministic. Rule-based. The engine that turns the chart math into directional reads.