Communauté · Screeners
Daily breakout screener
Closes above 20-day high on +1.5× average volume.
@oksana18725Apache-2.0Publié le 2026-04-12
breakout-screener.spec
for sym in watchlist("us-small-cap") { let hi = highest(high, 20) let v = sma(volume, 20) let hit = close > hi[1] and volume > v * 1.5 if hit { yield sym }}