LinReg Candles with 15min & 3min Signal Arrows (2x Confirmed)If the most recent 15-minute closed LinReg candle is red and the latest 3-minute closed candle (on a 3-minute chart) is red, then a Sell signal (red arrow) is generated for the next 3-minute candle.
รูปแบบชาร์ต
Wick-Scanner ab 0.20%This is a tool for daytraders or swingtraders. When a candle with a 0,2% wick is created, a signal pops up. The signal is either green(bullish) or red(bearish). The indicator is going to analyse how big the wick actually is. The longer the better.
Combined Trading System: EMAs + ATR + RSIThis indicator gives entry and exit based on rsi , moving average and atr trailing stop
MirPapa:ICT:HTF: Candle OB Threeple# MirPapa:ICT:HTF: Candle OB Threeple
**Version:** Pine Script® v6
---
## Installation
1. Open TradingView’s Pine Editor.
2. Paste the entire script (including `import goodia/MirPapa_Library_ICT/3 as lib`).
3. Click **“Add to Chart”**.
---
## Inputs & Configuration
After adding to chart, open the indicator’s settings panel:
1. **Box Close Color**
- Choose the color applied when a Candle OB box is finalized (recolored).
2. **HighTF COB Settings**
- **HighTF Label:** Select a higher timeframe (e.g., “4시간” for 4H).
- **Enable HighTF COB Boxes:** Toggle drawing of HighTF boxes.
- **Enable HighTF COB Midlines:** Toggle drawing of the horizontal midpoint line inside each HighTF box.
- **HighTF COB Close Count:** Number of HTF closes beyond the box required to finalize (1–10).
- **HighTF COB Bull Color / Bear Color:** Select fill/border colors for bullish and bearish HighTF boxes.
- **HighTF Box Transparency:** Adjust box opacity (1–100).
3. **MidTF COB Settings**
- **MidTF Label:** Select a middle timeframe (e.g., “1시간” for 1H).
- **Enable MidTF COB Boxes:** Toggle drawing of MidTF boxes.
- **Enable MidTF COB Midlines:** Toggle the midpoint line inside each MidTF box.
- **MidTF COB Close Count:** Number of MidTF closes beyond the box required to finalize (1–10).
- **MidTF COB Bull Color / Bear Color:** Select fill/border colors for bullish and bearish MidTF boxes.
- **MidTF Box Transparency:** Adjust box opacity (1–100).
4. **CurrentTF COB Settings**
- **Enable CurrentTF COB Boxes:** Toggle drawing of COB boxes on the chart’s own timeframe.
- **Enable CurrentTF COB Midlines:** Toggle the midpoint line inside each CurrentTF box.
- **CurrentTF COB Close Count:** Number of closes beyond the box required to finalize (1–10).
- **COB Detection Level:** Choose pivot strength for detection (1 or 2).
- **CurrentTF COB Bull Color / Bear Color:** Select fill/border colors for bullish and bearish CurrentTF boxes.
- **CurrentTF Box Transparency:** Adjust box opacity (1–100).
---
## Display & Interpretation
- **Candle OB Boxes**
- Each box appears at the moment a reversal candle is detected on the chosen timeframe.
- Bullish boxes have the “Bull Color”; bearish boxes have the “Bear Color.”
- The midpoint line (if enabled) is drawn across the box’s center.
- **Box Extension**
- Once created, each box extends to the right on every new bar of the chart.
- You will see the box tracking along with price until it is finalized.
- **Box Finalization (Recoloring)**
- After the specified number of closes beyond the candle range, the box’s border and fill change to the **Box Close Color**.
- Finalized boxes remain visible in semi-transparent form, indicating that the zone has been “tested.”
- **Multiple Timeframes**
- If HighTF, MidTF, and/or CurrentTF boxes are all enabled, you’ll see up to three separate layers of boxes (one per timeframe).
- Higher-timeframe boxes typically span more candles; MidTF and CurrentTF boxes will be narrower.
---
## Tips
- **Adjust Opacity** to avoid clutter when multiple boxes overlap.
- **Use Distinct Colors** for each timeframe to quickly differentiate HighTF vs. MidTF vs. CurrentTF.
- **Experiment with Close Count** to control how long boxes remain active before finalizing.
- **Toggle Midlines** if you prefer seeing only the box or want an added visual cue at its center.
Enjoy clear, multi-timeframe Candle Order Block visualization on your chart!
MirPapa:ICT:HTF: FVG OB Threeple# MirPapa:ICT:HTF: FVG OB (Fair Value Gap Order Block)
**Version:** Pine Script® v6
**Author:** © goodia
**License:** MPL-2.0 (Mozilla Public License 2.0)
---
## Overview
“FVG OB” (Fair Value Gap Order Block) identifies higher-timeframe candle ranges where a gap (imbalance) exists between two non-consecutive candles, signaling potential institutional order blocks. This module draws bullish or bearish FVG OB boxes on your lower-timeframe chart, extends them until price interacts a specified number of times, and then finalizes (recolors) the box.
---
## Inputs
- **Enable FVG OB Boxes** (`bool`)
Toggle drawing of HTF FVG OB boxes on the chart.
- **Enable FVG OB Midlines** (`bool`)
Toggle drawing of a midpoint line inside each FVG OB box.
- **FVG OB Close Count** (`int` 1–10)
Number of HTF closes beyond the FVG range required to finalize (recolor) the box.
- **FVG OB Bull Color** (`color`)
Fill & border color for bullish FVG OB boxes.
- **FVG OB Bear Color** (`color`)
Fill & border color for bearish FVG OB boxes.
- **FVG OB Box Transparency** (`int` 1–100)
Opacity level for FVG OB box fills (higher = more transparent).
---
## How It Works
1. **HTF Data Retrieval**
- The script uses `request.security()` (via `GetHTFrevised()`) to fetch HTF OHLC and historical values:
- `_htfHigh3` (high three bars ago) and `_htfLow1` (low one bar ago) for bullish FVG OB.
- `_htfLow3` (low three bars ago) and `_htfHigh1` (high one bar ago) for bearish FVG OB.
- It also tracks the HTF `bar_index` on the lower timeframe to align drawing.
2. **FVG OB Detection**
- **Bullish FVG OB**: Occurs when the HTF low of the previous bar (`low `) is strictly above the HTF high of three bars ago (`high `), creating a gap.
- **Bearish FVG OB**: Occurs when the HTF high of the previous bar (`high `) is strictly below the HTF low of three bars ago (`low `), creating a gap.
3. **Box Creation**
- On each new HTF bar (`ta.change(time(HTF)) != 0`), if a bullish or bearish FVG OB condition is met, the script calls `CreateBoxData()` with:
- **Bullish**: `bottom = HTF low `, `top = HTF high `, `_isBull = true`.
- **Bearish**: `bottom = HTF low `, `top = HTF high `, `_isBull = false`.
- Midline toggled by input.
- A `BoxData` struct is created and stored in either the Bull or Bear array.
4. **Box Extension & Finalization**
- On **every LTF bar**, `ProcessBoxDatas(...)` iterates over all active FVG OB boxes:
1. **Extend Right Edge**: `box.set_right(bar_index)` ensures the box follows the latest bar.
2. **Record Volume Delta**: Tracks buy/sell volume inside the box.
3. **Touch Stage Update**: `modBoxUpdateStage()` increments `_stage` when price touches its “basePoint” (for FVG OB, the basePrice is one side of the gap).
4. **Finalize**: `setBoxFinalize()` checks if the configured number of closes beyond the FVG gap (`FVG OB Close Count`) has occurred. If so:
- `_isActive := false`
- Border and background colors are changed to the “Box Close Color” (input).
- Finalized boxes remain on screen semi-transparent, indicating that the FVG OB zone has been tested.
5. **Midline (Optional)**
- If “Enable FVG OB Midlines” is checked, `ProcessBoxDatas()` also extends a horizontal midpoint line inside the box with `line.set_x2(bar_index)`.
---
## Usage Instructions
1. **Installation**
- Copy the FVG OB section of the Pine Script into TradingView’s Pine Editor (ensure the library import is included).
- Click “Add to Chart.”
2. **Configure Inputs**
- Choose a Higher Time Frame via the dropdown (e.g., “4시간” maps to a 4H timeframe).
- Toggle “Enable FVG OB Boxes” and “Enable FVG OB Midlines.”
- Select colors for bullish and bearish boxes and set transparency.
- Adjust “FVG OB Close Count” to control how many closes beyond the gap finalize the box.
3. **Interpretation**
- **Active FVG OB Boxes** extend to the right until price closes beyond the gap range the specified number of times.
- When finalized, each box changes to the “Box Close Color,” signaling that institutional orders in that gap have likely been filled.
Enjoy precise visualization of higher-timeframe Fair Value Gap Order Blocks on your lower-timeframe chart!
Vertical Line at Specific TimeDraws a vertical line at a specific time.
Vertical lines at specific times of the day may help make it easier to identify parts of a session.
If you know you perform better during certain parts of the day utilize these lines to help stay aware of your trading session.
The hours seem a bit buggy but just adjust the time to make the lines what you want to see on the chart. The time can be adjusted in settings to get what you want it to do.
MirPapa:ICT:HTF: FVG Threeple# MirPapa:ICT:FVG Double HTF
**Version:** Pine Script® v6
**Author:** © goodia
**License:** MPL-2.0 (Mozilla Public License 2.0)
---
## Overview
“MirPapa:ICT:FVG Double HTF” is a TradingView indicator that identifies and visualizes Fair Value Gaps (FVG) on two higher time frames (HighTF and MidTF) simultaneously. It can also draw FVG boxes on the current chart’s time frame. When “Overlap Mode” is enabled, the indicator displays only the intersection of HighTF and MidTF FVG areas.
---
## Key Features
- **HighTF FVG**
- Detects bullish and bearish FVGs on a user-selected upper time frame (e.g., 4H).
- Draws colored boxes around gap ranges, optionally with a midpoint line.
- Automatically extends boxes on every bar and finalizes (recolors) them after a specified number of closes beyond the gap.
- **MidTF FVG**
- Same as HighTF FVG but for a second, intermediate time frame (e.g., 1H).
- Runs in parallel to HighTF logic, with separate color and transparency settings.
- **CurrentTF FVG (Optional)**
- If enabled, draws FVG boxes using the chart’s own time frame.
- Behaves identically: extends until broken by price, then finalizes.
- **Overlap Mode**
- When enabled, hides all individual HighTF and MidTF boxes.
- Instead, computes and displays only their overlapping rectangle(s)—separate for bullish and bearish gaps.
---
## Inputs & Configuration
- **Common Inputs**
- **Enable High/Mid Overlap Mode** (`boolean`): Show only overlapping HighTF + MidTF FVG areas.
- **Box Close Color** (`color`): Color applied to any FVG box when it is finalized.
- **HighTF FVG Settings**
- **HighTF Label** (`dropdown`): Choose a Korean label (e.g., “4시간”) that maps to a Pine timeframe (e.g., “240”).
- **Enable HighTF FVG Boxes** (`boolean`): Toggle drawing of HighTF FVG boxes.
- **Enable HighTF FVG Midlines** (`boolean`): Toggle midpoint line inside each HighTF box.
- **HighTF FVG Close Count** (`integer` 1–10): Number of closes beyond the gap before finalizing the box.
- **HighTF FVG Bull Color** (`color`): Fill & border color for bullish HighTF gaps.
- **HighTF FVG Bear Color** (`color`): Fill & border color for bearish HighTF gaps.
- **HighTF Box Transparency** (`integer` 1–100): Opacity level for HighTF box fills.
- **MidTF FVG Settings**
- **MidTF Label** (`dropdown`): Choose a Korean label (e.g., “1시간”) mapped to a Pine timeframe.
- **Enable MidTF FVG Boxes** (`boolean`): Toggle drawing of MidTF FVG boxes.
- **Enable MidTF FVG Midlines** (`boolean`): Toggle midpoint line inside each MidTF box.
- **MidTF FVG Close Count** (`integer` 1–10): Number of closes beyond the gap before finalizing the box.
- **MidTF FVG Bull Color** (`color`): Fill & border color for bullish MidTF gaps.
- **MidTF FVG Bear Color** (`color`): Fill & border color for bearish MidTF gaps.
- **MidTF Box Transparency** (`integer` 1–100): Opacity level for MidTF box fills.
- **CurrentTF FVG Settings**
- **Enable CurrentTF FVG Boxes** (`boolean`): Draw FVG boxes on the chart’s own timeframe.
- **Enable CurrentTF FVG Midlines** (`boolean`): Toggle midpoint line inside each CurrentTF box.
- **CurrentTF FVG Close Count** (`integer` 1–10): Number of closes beyond the gap before finalizing the box.
- **CurrentTF FVG Bull Color** (`color`): Fill & border color for bullish CurrentTF gaps.
- **CurrentTF FVG Bear Color** (`color`): Fill & border color for bearish CurrentTF gaps.
- **CurrentTF Box Transparency** (`integer` 1–100): Opacity level for CurrentTF box fills.
---
## How It Works
1. **Time Frame Conversion**
Korean labels (e.g., “4시간”, “1시간”) are converted internally to Pine timeframe strings via `GetHtfFromLabel()`.
2. **Data Retrieval**
For each chosen TF (HighTF, MidTF, and optionally CurrentTF), the script fetches OHLC and historical values using `GetHTFrevised()`.
- Tracks `bar_index` from that TF to align box drawing on the chart’s base timeframe.
3. **Box Lifecycle**
- **Creation**: On each new TF bar, if a bullish gap (`low > high `) or bearish gap (`low > high `) is detected, `CreateBoxData()` registers a new `BoxData` struct and draws an initial box.
- **Extension**: On every chart bar, `ProcessBoxDatas()` extends each active box’s right edge and updates internal “touch stage” and volume.
- **Finalization**: After the specified number of closes beyond the gap, `setBoxFinalize()` disables the box and changes its border & fill to the “Box Close Color”.
4. **Overlap Mode**
- When enabled, HighTF and MidTF boxes are not drawn individually.
- Instead, at each bar, the script iterates over all active HighTF boxes and all active MidTF boxes, computes their intersection rectangle (if any), and draws only that overlapping area (distinct handling for bullish vs. bearish gaps).
---
## Installation & Usage
1. **Copy & Paste**
Copy the entire Pine Script code into TradingView’s Pine Editor.
Click “Add to Chart.”
2. **Configure Inputs**
- Choose your HighTF and MidTF via the dropdown menus.
- Enable or disable FVG boxes/midlines for each TF.
- Adjust colors, transparency, and “Close Count” settings to taste.
- Toggle “Overlap Mode” if you only want to see common areas between HighTF and MidTF gaps.
3. **Interpretation**
- **Active Boxes** extend to the right as new bars form. When price closes beyond a gap (per “Close Count”), the box is finalized and recolored to the close color.
- In **Overlap Mode**, you’ll see only the overlapping region between HighTF and MidTF gaps, updated on every bar.
Enjoy precise FVG visualization across multiple time frames!
Institutional_FootprintThe indicator marks the price where the highest volume is observed in past "n" days.
Candle Reversal Matrix TFFCandle Reversal Matrix TFF
This "Engulfing + Shooting Star + Evening Star + Hanging Man + Dark Cloud Cover" indicator is a comprehensive candlestick pattern scanner designed to identify key bearish and bullish reversal signals on your TradingView charts.
Key Features:
Bullish Engulfing: Detects strong bullish reversals where a green candle fully engulfs the previous red candle, signaling potential upward momentum.
Bearish Engulfing: Flags bearish reversals where a red candle engulfs the prior green candle, indicating possible downtrend beginnings.
Shooting Star: Identifies candles with a small body near the low and a long upper wick, commonly marking a bearish reversal after an uptrend.
Evening Star: Detects a three-candle bearish reversal pattern characterized by a large green candle, followed by a small indecisive candle, and a strong red candle closing well into the first candle’s body.
Hanging Man: Spots small-bodied candles with long lower shadows after an uptrend, warning of potential bearish reversals.
Dark Cloud Cover: Recognizes a two-candle bearish reversal where a red candle gaps above and closes below the midpoint of the previous green candle.
Visual Cues:
Each pattern is marked on the chart with distinct colored shapes and labels for easy identification:
Green arrows and labels for bullish signals
Red, orange, purple, yellow, and maroon shapes for bearish patterns, each with unique symbols (↓, ☆, EV, HM, DC)
Intra-day mean crossover indicator📈 Intra-day mean crossover + Key Daily MA Touch (Bullish & Bearish)
This indicator generates buy/sell signals when the MACD line crosses the signal line and price has interacted with key daily moving averages:
10 EMA
21 EMA
50 SMA
🔍 How It Works
Bullish Signal (🟢 Green Arrow Up)
Triggered when:
MACD line crosses above the signal line (bullish crossover)
Price has touched any of the key daily MAs within the past N candles (default: 10)
Bearish Signal (🔴 Red Arrow Down)
Triggered when:
MACD line crosses below the signal line (bearish crossover)
Price has touched any of the same MAs within the same lookback window.
⚙️ Inputs
MACD Fast / Slow / Signal Lengths (default: 12 / 26 / 9)
Number of candles to check for MA touch (default: 10)
Tolerance (%) for how close price must come to an MA to count as a "touch" (default: 0.1%)
⏰ Alerts
This script includes built-in alert conditions:
Bullish Signal Alert – Fires when the 🟢 green arrow appears
Bearish Signal Alert – Fires when the 🔴 red arrow appears
You can create alerts via the TradingView interface using these conditions.
👤 Author
Created by: O-Hyphen
Version: 1.0
Date: May 2025
🛑 Disclaimer
This script is provided for educational and informational purposes only.
It is not financial advice. Use at your own risk.
Always do your research before making trading decisions.
Past performance does not guarantee future results.
Body Middle CrossoverThis indicator shows a reaction to two things.
1. When the price crosses the average price of each candle either up/down, it shows a signal - bullish/bearish with the help of small triangles below or above the candle.
2. It also tracks when VWAP crosses the average VWAP. When it does on the upside, it shows DC in blue - which indicates that the market is turning bullish. DC - stands for direction change
Similarly, when it crosses on the downside, it shows DC in red - which indicates the market is turning bearish.
In case of any doubts do ask it in comments and also provide feedback for any improvements.
Volume-Enhanced Candlestick Patterns 1
Overview
Scans for four major candlestick reversal patterns:
Harami
Engulfing
Morning/Evening Star
Piercing Line/Dark Cloud Cover
Underlying logic assumes that, at a turning point, the dominant side (bulls or bears) often delivers a “final” push—either a last surge of buying or selling—before the reversal truly takes hold.
Pattern Toggles
Each individual pattern can be turned on or off in the inputs.
Enable only the patterns you want to monitor to reduce chart clutter and speed up performance.
Volume Filter Toggle
On: Requires volume-based exhaustion or climax to confirm each pattern.
Off: Relies purely on price-action candlestick logic (no volume checks).
Grouped Labels & Confluence
When one or more patterns trigger on the same bar close, a single label is drawn:
Grouping multiple confirmed patterns on one bar increases confluence and signal strength.
Climax Volume × Multiplier
Adjusting this input affects signal frequency and conviction:
Higher multiplier → fewer signals but with stronger volume confirmation
Lower multiplier → more signals, each with a looser volume requirement
Alerts
Built-in alert condition for each individual pattern (bullish/bearish Harami, Engulfing, Star, Piercing, Dark Cloud Cover), so you can receive real-time notifications whenever a confirmation occurs.
Follow for Weekly Scripts
If you find this helpful, please hit Follow and 🚀button —I release a new scripts every week.
Disclaimer
Not Financial Advice. This script is for educational and research purposes only.
Use as Part of a Larger System. It should not be used in isolation; combine it with your own risk management rules, additional indicators, and broader market analysis.
No Guarantees. Candlestick patterns and volume filters can improve signal quality, but they do not guarantee profitable trades. Always perform your own due diligence before entering any position.
Monthly Session Divider (Alt Background) | Chart_BullyEasily visualize monthly transitions with alternating background shading. Designed for traders who like to spot macro trends, monthly opens, and institutional order flow.
✅ Alternates background color each month
✅ Auto-detects new months using live date logic
✅ Great for RTH or ETH intraday and swing strategies
✅ Clean gray overlay with low opacity
✅ Works on intraday, daily, and weekly charts
✅ Built for clarity, not clutter
Use this tool to:
Identify monthly pivots or volume rotations
Anchor monthly VWAPs or FVGs with visual context
Frame long-term setups with clean visual breaks
Alternate Day Divider Background | Chart_BullyThis free utility shades every other trading day on your chart, helping you visually separate sessions and spot daily rhythm or pattern shifts more easily.
✅ Automatically alternates background shading by day
✅ Works on both Regular Trading Hours (RTH) and Extended Trading Hours (ETH)
✅ Especially useful on intraday and daily timeframes
✅ Helps identify breakout setups, trend shifts, or volume cycles by session
Great for scalpers, day traders, and anyone who wants a subtle visual edge without chart clutter.
TradeJorno - DAILY Time + Price Levels
Tired of drawing and updating important levels manually every day?
We can help!
Here’s a FREE indicator to draw ICT TIME and PRICE levels automatically, with ❤️ from TradeJorno.com
Here’s what you can plot in REALTIME on your charts:
1. ALL INTERVALS
⁃ New week divider
⁃ Previous daily and weekly HIGHS and LOWS
⁃ Previous session closing price
2. 30 minutes and below
⁃ Opening range highs and lows
3. 5 minutes and below
⁃ London open - BULLET hour
⁃ Midnight open (with optional horizontal line)
⁃ 9:30 open (with optional horizontal line)
⁃ 10:30 open (with optional horizontal line) - BULLET hour
⁃ 14:30 open (with optional horizontal line) - BULLET hour
4. 1 minute and below - TIME MACROS (vertical time delineators)
⁃ London macros
⁃ New York AM macros
⁃ New York PM macros
⁃ Show current season or all macros, with optional labels
Absolute High and Low {Darkoexe}This indicator displays the absolute high and low of the given range of candles. By default, the indicator displays the high and low of all the visible candles on the chart. If the user unchecks the "Use all candles" option, the Max bars back input will be used to determine the amount of candles back to display the high and low lines. Doing this usually makes the range between the two lines smaller.
The high line is green and the low line is red.
//Darkoexe
MACD 크로스 강세 배경 표시macdcross strong sector
This indicator is designed to display the trend more clearly by displaying a bullish zone on the main chart based on the MACD cross.
Bullish/Bearish Market IndicatorIt shows clearly if bullish or bearish, it is a very clear pine and a game changer
Pattern DetectorPattern detector - detects double tops, double bottoms, wedges & other common patterns. Draws the lines & prints on chart what it's identifying.
eriktrades1995: supply demandThe Institutional Supply and Demand Zones indicator aims to identify and mark key price reversal areas on charts. These zones are considered places where institutions (large funds) concentrate their buying (forming demand zones) or selling (forming supply zones).
The core logic involves processing each candlestick sequentially. Before identifying new zones, the indicator checks if existing ones are still valid: demand zones become invalid if the current low breaks below their bottom, and supply zones become invalid if the current high breaks above their top. The most crucial part is identifying new zones, primarily based on the combination of the "previous" and "current" candlesticks. A demand zone (potential support) typically forms when a strong bullish candlestick (e.g., engulfing or significant reversal) appears after a bearish or doji candlestick, indicating strong buying interest. Conversely, a supply zone (potential resistance) usually forms when a strong bearish candlestick appears after a bullish or doji candlestick, signaling strong selling interest. The boundaries of these zones are typically derived from the open, high, or low prices of the candlesticks that form the pattern. Finally, the indicator draws the most recent and still valid supply zones (often filled in red as resistance) and demand zones (often filled in green as support) on the chart, up to a predefined maximum number. In essence, this indicator analyzes price action, particularly comparing candlestick body sizes and engulfing relationships, to pinpoint price levels where significant institutional buying or selling power might be concentrated. These zones can then act as support or resistance when prices re-approach them in the future.
Liquidity Sweep Candlestick Pattern with MA Filter📌 Liquidity Sweep Candlestick Pattern with MA Filter
This custom indicator detects liquidity sweep candlestick patterns—price action events where the market briefly breaks a previous candle’s high or low to trap traders—paired with optional filters such as moving averages, color change candles, and strictness rules for better signal accuracy.
🔍 What is a Liquidity Sweep?
A liquidity sweep occurs when the price briefly breaks the high or low of a previous candle and then reverses direction. These events often occur around key support/resistance zones and are used by institutional traders to trap retail positions before moving the price in the intended direction.
🟢 Bullish Liquidity Sweep Criteria
The current candle is bullish (closes above its open).
The low of the current candle breaks the low of the previous candle.
The candle closes above the previous candle’s open.
Optionally, in Strict mode, it must also close above the previous candle’s high.
Optionally, it can be filtered to only show if the candle changed color from the previous one (e.g., red to green).
Can be filtered to only show when the price is above or below a moving average (if MA filter is enabled).
🔴 Bearish Liquidity Sweep Criteria
The current candle is bearish (closes below its open).
The high of the current candle breaks the high of the previous candle.
The candle closes below the previous candle’s open.
Optionally, in Strict mode, it must also close below the previous candle’s low.
Optionally, it can be filtered to only show if the candle changed color from the previous one (e.g., green to red).
Can be filtered to only show when the price is above or below a moving average (if MA filter is enabled).
⚙️ Features & Customization
✅ Signal Strictness
Choose between:
Less Strict (default): Basic wick break and close conditions.
Strict: Must close beyond the wick of the previous candle.
✅ Color Change Candles Only
Enable this to only show patterns when the candle color changes (e.g., from red to green or green to red). Helps filter fake-outs.
✅ Moving Average Filter (optional)
Supports several types of MAs: SMA, EMA, WMA, VWMA, RMA, HMA
Choose whether signals should only appear above or below the selected moving average.
✅ Custom Visuals
Show short (BS) or full (Bull Sweep / Bear Sweep) labels
Plot triangles or arrows to represent bullish and bearish sweeps
Customize label and shape colors
Optionally show/hide the moving average line
✅ Alerts
Includes alert options for:
Bullish sweep
Bearish sweep
Any sweep
📈 How to Use
Add the indicator to your chart.
Configure the strictness, color change, or MA filters based on your strategy.
Observe signals where price is likely to reverse after taking out liquidity.
Use with key support/resistance levels, order blocks, or volume zones for confluence.
⚠️ Note
This tool is for educational and strategy-building purposes. Always confirm signals with other indicators, context, and sound risk management.