I need a Pine Script solution on TradingView that does two things in tandem. First, it must plot a custom “Break-Limit Zone” indicator that pinpoints Major and Minor support-resistance areas derived from price levels . The indicator should be able to show Trend (DOWN TREND OR UPTREND) based on moving average condition mentioned below CONDITION FOR UPTREND: IF PRICE IS > 20EMA AND PRICE> 50EMA AND PRICE > 50 SMA CONDITION FOR DOWNTREND IF PRICE IS < 20EMA AND PRICE< 50EMA AND PRICE<50SMA I want the indicator to mark them clearly on the chart— when price leaves the resistance or support area in a manner specified in the attached file , with the zone width handled programmatically. The zone width should not be seen once the zone has been breached. Second, I want a real-time scanner that sweeps through my watch-lists for Stocks, Forex pairs, and Cryptocurrencies. The scanner should let me type in—or slider-select—how close price is to any identified zone, anywhere from 0 % to 5 %, then surface the symbols that qualify in a compact table directly inside TradingView (the alerts-table widget is fine). Core functions I must see working: • Automatic detection of support & resistance break-limit zones using price levels + MA clusters I can configure (e.g., 20-, 50-, 200-period). • Adjustable proximity filter (0-5 %) powering both the table display and optional pop-up/email/webhook alerts. • Clean, readable Pine Script with inline comments so I can tweak parameters later. Deliverables: 1. .pine file for the indicator with on-chart visuals and user-inputs. 2. .pine file (or combined script) for the multi-asset scanner plus inline table output. 3. Quick video or screenshots showing it operating on at least one stock, one forex pair, and one crypto symbol. If you have done multi-symbol scanners in Pine v5 before, tell me; otherwise, outline how you’ll handle TradingView’s limits on symbol requests. Looking forward to a concise, well-documented script I can drop straight into my charts.