Direct answer
“News Breakout” refers to a breakout-style trading approach that relies on inputs from (1) a news or event feed and (2) market data used to define price movement and a breakout condition. The exact list of inputs can differ by implementation, so the practical way to understand it is to separate stable mechanics (what kinds of inputs are needed) from variable conditions (which provider’s news, which symbols’ prices, and what execution assumptions).
Definition and what “inputs” usually mean
In this context, “inputs” are the data fields and parameters that a rule-based method reads in order to (a) decide when an event is relevant and (b) check whether price action meets a breakout condition.
A simple model of News Breakout has three input layers:
- Event selection inputs: how the method identifies relevant news (e.g., which event types count, and how the event time is interpreted).
- Market condition inputs: which price series is used and which observation window is measured (e.g., pre-event baseline and post-event evaluation).
- Breakout rule inputs: the threshold logic that declares “breakout,” such as a required distance, candle/return criteria, or a move relative to recent range.
Mechanism: typical data, parameters, and dependencies
1) Event-related inputs (news trigger)
Common inputs include:
- Event time: the timestamp the method treats as the “release moment.”
- Event filter: which news categories or keywords are included or excluded.
- Time zone and alignment assumption: whether timestamps are converted to the market’s local trading time.
Dependency to verify: if the event timestamp is shifted (for example, due to time zone conversion), the method can evaluate the “wrong” price window.
2) Price-series inputs (market data)
Common inputs include:
- Instrument definition: which trading instrument the method maps to the event (even when the event concerns a region or economy).
- Price fields: typically bid/ask, mid, last, open/high/low/close—whatever the breakout rule requires.
- Sampling and windowing: bar timeframe (e.g., 1-minute vs. 5-minute) and the lengths of pre-event and post-event windows.
Assumption to make explicit: the method must state whether it uses end-of-bar prices or intrabar extremes for “breakout” detection.
3) Breakout condition inputs (rule parameters)
Typical parameters include:
- Baseline definition: what “recent range” or reference level is measured before the event.
- Threshold: how large the move must be to count (distance, percent move, or range breakout).
- Confirmation logic: whether it requires one observation to pass the threshold or multiple observations to confirm.
Material limitation / failure mode: breakouts can occur in illiquid moments or around spreads; if the breakout rule depends on price fields that do not reflect execution prices, results can diverge.
4) Execution and cost inputs (often missing in conceptual descriptions)
Even for purely informational explanations, the following are materially relevant inputs when you test a strategy:
- Transaction costs: spreads, commissions, and slippage assumptions.
- Latency / ordering: how quickly the method reacts after the event timestamp.
- Liquidity assumptions: whether the market can actually trade at the required price levels.
Why it matters: a method that “detects” a breakout using one data stream can still perform differently when real execution uses different prices and timing.
Evidence or example you can verify (non-real-time, assumption-based)
Here is a concrete example structure for independent verification without assuming live data:
- Choose a single instrument and a single bar timeframe.
- Pick an event feed and record the event timestamps using a fixed time zone conversion.
- For each event, compute a pre-event baseline over a defined number of bars.
- After the event moment, measure whether price exceeds the breakout threshold using the same price field definition the method claims (e.g., high vs. close).
- Repeat across many historical events, using the same event filters and the same baseline and window parameters.
This helps you separate whether the “inputs” were consistent versus whether outcomes changed because event selection, timestamp alignment, or breakout definitions differed.
Limitations and risks
- Event time alignment risk: inaccurate timestamp handling can shift the evaluation window. - Provider mismatch risk: different news providers label and timestamp similar events differently. - Market regime dependency: historical relationships do not guarantee future behavior. - Cost and execution sensitivity: spread/slippage and reaction delay can invalidate conceptual breakout detection. - **Confirmation vs.