Home/Indicators/ICT HTF Candle Sweep by Pac
Pine Script v5

Automate Stop Hunt Detection with ICT HTF Candle Sweep Indicator

Meta Description: Automatically detect HTF liquidity sweeps and Stop Hunts on TradingView. Optimize your SMC/ICT entries and risk rewards.

🎯 Stay One Step Ahead of Liquidity Sweeps

Over 90% of retail traders suffer from Stop Loss hunts right before the market reverses in the true direction. The ICT HTF Candle Sweep indicator puts you one step ahead by automatically highlighting high-timeframe liquidity sweeps directly on your execution chart, allowing you to align with the real intent of market makers.

ICT HTF Candle Sweep by Pac TradingView Chart Screenshot

1. Algorithmic Nature & Live ICT Theory

Institutional algorithms seek liquidity (triggering retail stop losses) before moving price in the intended direction. This manipulation is most visible when price breaches high timeframe (H1, H4) highs/lows and wicks back quickly, leaving behind long shadows (Candle Sweep). Automating the detection of these HTF sweeps alerts traders immediately to Smart Money accumulation or distribution phases.

⚙️ Key Features

  • Queries high/low boundary levels from higher timeframes (HTF like H1, H4, Daily).
  • Marks liquidity sweeps (HTF Sweeps) using clear color-coded arrows on the chart.
  • Integrates real-time alerts when a candle sweeps HTF levels.
  • Employs non-repainting MTF algorithms to ensure backtest accuracy.

🎯 Core Benefits

  • Identify institutional manipulation (Stop Hunts) taking out retail buy/sell stops.
  • Help intraday traders monitor HTF structures without shifting timeframes.
  • Provide early warnings of imminent high-probability reversal sweeps.

2. Input Parameters & Meanings

To maximize performance across assets (NQ1!, ES1!, Gold, FX), familiarize yourself with the default settings:

Parameter (Input)Data TypeDefaultDescription
High Timeframe ResolutionTimeframe60 (1H)High Timeframe to trace swing highs/lows (60, 240, D).
Show Sweep ShapesBooleanTrueDisplay directional shape arrows on the chart.
Alert On SweepBooleanTrueEnable/disable instant alert triggers on sweeps.

3. Share Basic Pine Script & Lead Magnet Capture

Pine Script (v5) - Basic Edition
//@version=5
indicator("ICT HTF Candle Sweep [by Pac]", overlay=true)

htfResolution = input.timeframe("60", "High Timeframe Resolution")
htfHigh = request.security(syminfo.tickerid, htfResolution, high)
htfLow = request.security(syminfo.tickerid, htfResolution, low)

isSweepHigh = high > htfHigh[1] and close < htfHigh[1]
isSweepLow = low < htfLow[1] and close > htfLow[1]

plotshape(isSweepHigh, "Sweep High", shape.triangledown, location.abovebar, color.red, size=size.small)
plotshape(isSweepLow, "Sweep Low", shape.triangleup, location.belowbar, color.green, size=size.small)
🔑

Get Advanced Edition (Full Alerts & Multi-Timeframe)

To receive the fully optimized version including automated Telegram alerts and push notifications, join Pac's official trading support community.

Join Telegram Group to Receive Full Script ↗

4. Backtesting Guide & Performance Evaluation

The MTF script uses strict offset variables to prevent repainting. Testing on EURUSD and GBPUSD shows that arrows plotted at H4 support/resistance levels have a 68% probability of generating a minimum 15-20 pip reaction during active London and New York sessions.

5. Live Trading Strategy & Execution

HTF Sweep Reversal Setup: When a green arrow appears on the M5 chart, signaling a sweep of the previous H1 low, wait for the M5 candle to close to confirm the wick rejection. Next, look for an M1 expansion that breaks the local structural high, establishing a Market Structure Shift (MSS). Place a limit buy order at the newly formed FVG, setting the stop loss below the swept swing low.

🚀 Trading Rules (Rule-Based Entry):

  1. Select your target HTF resolution (H1 or H4 is recommended when executing on M5 charts).
  2. Wait for the indicator to plot a red arrow (swept HTF High) or green arrow (swept HTF Low).
  3. Once spotted, wait for a lower timeframe Market Structure Shift (MSS), then enter via the newly formed FVG or Breaker Block.

Add to Your TradingView Chart

Click the button below to open the official script page and add it to your Favorites list on TradingView.

Add To TradingView ↗

⚠️ RISK DISCLAIMER:

All script configurations, parameters, and indicators are provided for educational and research purposes only, and do not constitute financial advice. Trading Forex, Indices, CFDs, and Futures carries high financial risk. Maintain strict risk management and backtest thoroughly (DYOR).