# Previous day's high break — NSE scan

> Closing above yesterday's high on half again the usual volume — the simplest breakout there is.

Canonical: https://patternsradar.com/screener/previous-day-high-break

```sift
where close > high[-1] and rel_volume > 1.5
```

Yesterday's high is the most recent level everybody watched, and closing through it is the smallest unit of trend there is: one session outbidding the whole of the last one. On its own that happens constantly, which is why the volume condition carries this scan — a close above the prior high on ordinary volume is noise, on heavy volume it is intent.

Category: [Breakouts](https://patternsradar.com/scans/breakouts.md). Default universe: top 500 NSE stocks by 20-day turnover.

Guides: [Translating Chartink formulas to Sift](https://patternsradar.com/blog/chartink-formulas-to-sift.md).

The rendered page runs this scan against the latest session and can replay it across the last 250 sessions to measure its hit rate: https://patternsradar.com/screener/previous-day-high-break.
