Skip to content
StatePath
Tool Atlasinterpretor.elliott_wave

Tool

Elliott Wave Interpretor

interpretor.elliott_wave

InterpretorPattern

Inputs

infoBundle (untagged)

The Elliott Wave bundle from a market.elliott_wave node: the current wave count, its labelled position (1-5 / A-B-C), validity, and a confidence score.

Outputs

Boolean

A boolean gate: true on each bar the chosen wave position is reached (wave_position mode) or the count's confidence meets your threshold (confidence_filter mode).

Reads an Elliott Wave count and gives you a simple yes/no gate based on where the count currently sits. Elliott Wave theory labels price moves as a 5-wave trend followed by a 3-wave correction; this interpretor lets you fire only when the count reaches a position you want to trade.

Elliott Wave Interpretor overview diagram012345AB

How it works

Wire `info` from a market.elliott_wave node, then choose a mode: wave_position fires when the live count is in a position you pick (such as in_wave_3 or corrective_abc_finished), while confidence_filter fires when the count's confidence is at least your threshold. The output is a per-bar true/false gate for a filter or signal.

Modes

Mode options

Wave positionwave_position

Fires when the live count is in the position you pick (such as in_wave_3 or corrective_abc_finished).

Wave position diagram1234

When to use: Use when you want to time entries around a specific point in the wave count.

Confidence filterconfidence_filter

Fires when the count's confidence is at least your min_confidence threshold (and the count is valid).

Confidence filter diagram

When to use: Use to act only on high-quality wave counts and skip shaky ones.

Position options

In wave 3in_wave_3

Fires while the count is inside wave 3 — typically the strongest, longest impulse leg.

In wave 3 diagram123

When to use: Use to ride the powerful third wave, a favourite trend-entry spot.

In wave 5in_wave_5

Fires while the count is inside wave 5 — the final impulse leg before a correction.

In wave 5 diagram345

When to use: Use to trade the last push, but expect a turn soon after it completes.

Wave 2 completewave_2_complete

Fires when wave 2 has just finished — the pullback that sets up the wave 3 entry.

Wave 2 complete diagram112

When to use: Use to position right before wave 3 begins, anticipating the strong leg.

Wave 4 completewave_4_complete

Fires when wave 4 has just finished — the pullback that sets up the final wave 5 push.

Wave 4 complete diagram334

When to use: Use to position for the last impulse leg as wave 4 ends.

ABC correction finishedcorrective_abc_finished

Fires when the 3-wave A-B-C correction has completed — a fresh impulse may begin.

ABC correction finished diagram5ABC

When to use: Use to catch the end of a pullback and the start of a new trend.

Configuration

modeenum

Picks the test: wave_position checks where the count sits, confidence_filter checks how confident the count is.

Choices:wave_positionconfidence_filter
positionenum

In wave_position mode, which count position fires the gate (in_wave_3, in_wave_5, wave_2_complete, wave_4_complete, or corrective_abc_finished).

Choices:in_wave_3in_wave_5wave_2_completewave_4_completecorrective_abc_finished
min_confidencescalar

In confidence_filter mode, the minimum count confidence required (and the count must be valid) for the gate to fire.

min_confidence diagram

Connects to

Reads from
Feeds into

Examples

  • Filter: only allow long entries when the position gate reports the count is in wave 3.
  • Use confidence_filter with min_confidence 0.7 so you only act on high-quality wave counts.

Common mistakes

  • Trusting Elliott counts as exact predictions — counts are interpretations and can shift as new bars arrive, so pair them with confirmation.
  • Setting min_confidence too low, which lets shaky, low-quality counts trigger trades.

See also