Direct answer
Breakout Definition does not rely on hidden, secret values. It uses inputs you can read from a price chart—primarily price and time—and then applies a specific set of rules to decide whether price has “broken out” from a prior range or level.
Because different providers can implement the term differently, “Which inputs does Breakout Definition uses?” is best answered as a checklist of inputs and dependencies, plus the assumptions required to reproduce results.
Mechanism or definition
A practical Breakout Definition can be described as: detect a prior reference zone (the “range/level”), then check whether new price action crosses beyond that zone, often with an added confirmation condition.
Common inputs and parameters (the “data” it needs):
- Price series: the instrument’s price over time, such as open/high/low/close (OHLC) bars or individual ticks. The exact fields used (close only vs. high/low) is a parameter.
- Time basis: the chart timeframe (for example, 1-hour candles vs. daily bars). The timeframe is a dependency because the same movement can look like a breakout on one timeframe and not on another.
- Lookback window for the reference zone: how far back you scan to define the “before” range/level. This is a parameter that controls sensitivity.
- How the reference zone is constructed: for instance, using the highest high and lowest low within the window, or using a drawn support/resistance level. The construction method matters.
- Breakout threshold: what counts as “crossing.” Some definitions use a strict boundary (touch vs. penetrate), others use a buffer (a minimum distance).
- Confirmation rule: whether the breakout needs to persist (for example, the next bar must stay beyond the level) or whether a single bar event is enough.
- Optional filters (implementation-dependent): many definitions add conditions such as volatility context, trend alignment, or volume. These are still “inputs,” but they are not universal.
A simple example of inputs and assumptions (no live data):
- Assumption: you work with OHLC candles.
- Assume a reference zone is the highest high and lowest low from the prior N candles.
- Breakout is considered when the next candle’s high exceeds the reference zone’s upper bound by at least δ.
- Confirmation is satisfied if the following candle’s close remains above the upper bound.
In this example, the inputs are the candle OHLC values, the timeframe, the lookback length N, the buffer δ, and the confirmation choice (high-based trigger, close-based confirmation).
Evidence or example (how to independently verify)
Even without real-time market data, you can test whether a specific “Breakout Definition” implementation uses particular inputs by recreating it on historical charts:
- Fix the timeframe you will use. Then note whether the definition refers to candle closes, highs/lows, or both.
- Record the lookback logic. If the definition says “prior range,” identify how many candles/bars are included or how the range boundaries are detected.
- Apply the threshold exactly as stated. For example, if it uses “penetration,” does “touch” count, or is a buffer required?
- Apply the confirmation rule. If the rule requires the next bar to stay beyond the boundary, verify whether results change when you remove confirmation.
- Repeat with controlled changes: vary only one input at a time (such as changing N or switching high-based vs. close-based trigger) and check how breakout counts change.
A material dependency is that different data feeds and candle construction can change the OHLC values at the margins. If your breakout threshold is tight, tiny differences in how price data is aggregated can change whether a bar is counted as a breakout.
Limitations and risks
Several limitations can cause Breakout Definition outcomes to diverge from expectations:
- Ambiguity in level selection: “reference zone” can be defined in multiple ways (fixed levels vs. computed from a window). Different choices produce different breakout counts. 2. False breakouts as a failure mode: price can briefly cross a boundary and then return inside the range. This is expected behavior in many markets, not a proof the definition is “wrong. ”
- Sensitivity to parameters: lookback length, buffer size, and confirmation requirements can strongly affect how often breakouts are detected. 4.