Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Indicators Description

1. Component Deconstruction

This section dissects the individual mathematical and logical components used to build the trading model.

A. Price Action & Structure

B. Volatility & Zone Definition

C. Momentum & Volume Analysis

2. Logic Layering & Confluence

The script’s engine filters market noise through a sequential, hierarchical process. A signal is only generated if price action successfully passes through each logical gate.

3. The Execution Engine

The trigger mechanism is a precise combination of boolean state flags and price-based conditions.

A. Pre-Trigger State Conditions

Before any entry pattern is evaluated, the following conditions must all be met:

  1. not levelConsumed: The active level has not already produced a signal (unless allowReEntry is enabled).

  2. bar_index > lastCHoCHBar: The current bar is not the same bar as the CHoCH event.

  3. hasLeftLevel: The price has demonstrably pulled back from the level and then returned.

  4. priceAtLevel: The current candle’s high/low is intersecting the ATR-defined retest zone.

B. Boolean Logic for Entry Triggers

If the pre-trigger state is valid, the script evaluates one of three user-selected confirmation modes.

C. Mathematical Constants & Risk Profile Influence