Rules · 4 min read

Why automated strategies violate news rules

The news rule is easy to follow when a human is watching the calendar. A webhook is not watching anything. Automation turns a judgment rule into a violation generator unless the calendar is encoded.

⚠ Rules change often. Prop-firm rules, prices and payout policies change frequently. Verify everything with the firm directly. Checked June 2026.

Many firms restrict trading in a window around major releases, opening positions, sometimes holding them, occasionally any fill at all within minutes of the print, the per-firm landscape in news trading rules. A discretionary trader complies by glancing at the calendar. An automated pipeline complies by accident or not at all.

How the violation happens

The strategy does not know dates. A breakout system sees the FOMC candle as the best signal of the month and fires into the exact window the rulebook forbids; the alert chain executes flawlessly, which is the problem, the plumbing in webhook alerts. The second variant is the hold: a position opened legally at noon is still on at 14:00 ET when the restricted window opens, and at firms that ban holding through news, legal-at-entry is not the test. Both failures are silent until the violation email arrives, often alongside a denied withdrawal, the pattern in payout denied.

The calendar guard

The fix is a no-trade window encoded in the strategy itself: block new entries from N minutes before to N minutes after scheduled high-impact releases, and where holding is restricted, flatten ahead of the window the same way the EOD guard flattens ahead of the close, one mechanism, two clocks. The release schedule is known weeks ahead, FOMC, CPI, NFP, PCE publish their calendars, so the guard is a static date-time list refreshed periodically, not a data-feed problem.

The compliance asymmetry

News candles are also where slippage explodes past anything the backtest charged, the cost honesty from realistic fills, so the guard usually improves the equity curve while removing the violation class. Where automation policy and news policy interact, the firm's wording on both lives in the automation rules survey; the guard satisfies the strictest reading by never letting the question arise.

FAQ

Do prop firm news rules apply to automated trading?

Yes, and more dangerously: a bot fires on the news candle's signal quality without knowing the date. Restrictions on opening, and at some firms holding, through release windows apply regardless of how the order was generated.

How do I stop a strategy from trading during news?

Encode a calendar guard: block new entries in a window around scheduled high-impact releases and flatten ahead where holding is restricted. The release calendar is published weeks ahead, so the guard is a static list, not a feed.

Does avoiding news windows hurt performance?

Usually the opposite. News candles carry slippage and spread far beyond backtest assumptions, so the guard removes a violation class and the worst execution conditions at once.

Not financial advice. Performance figures are hypothetical, modeled outputs (12-month sample; ~1,500-path Monte Carlo where noted). Past performance does not guarantee future results. Verify every prop-firm rule with the firm directly.