Trend dealing rangeHi all!
This indicator will help you find the current dealing range according to the trend. If the trend is bullish the indicator will look for a range between the latest low pivot to the latest high pivot. Vice versa in a bearish trend. The code uses my new library 'FibonacciRetracement' () that has the same code as my other indicator 'Fibonacci retracement' ().
It plots 5 lines from the low to the high and labels them 0 %, 25 %, 50 %, 75 % and 100 %. A trendline can be drawn between the two pivots (dashed and gray by default). Firstly you can define the pivot lengths used, this setting is in the 'Market structure' section but it also applies to the dealing range (it defaults to 5 (left) and 2 (right)). You can show prices if you want to (shown in parantheses, off by default). You can change the default labels position (from left) and the font size (12 by default and higher up it's 7 for market structure text). Lastly you can change the alert frequency (defaults to once per bar close) and the price that has to enter a zone for alert to be sent. 'Close' means that the closing price (or current price if you change the alert frequency to all or once per bar) has to be inside the zone and 'Wick' means that the entire candle needs to be inside the zone.
It's very useful for traders to find the current dealing range and this indicator will help you to do so.
So, this indicator will give you the dealing range and basic market structure through break of structures and change of characters.
If you have any input or suggestions on future features or bugs, don't hesitate to let me know!
Best of trading luck!
Penunjuk dan strategi
FibonacciRetracementHi all!
This library will help you draw Fibonacci retracement levels (zones). The code is from my indicator "Fibonacci retracement" (). You can see that description for more information about the behaviour and example of how to use this library. The code is almost the same with the addition of alerts. If the alert frequency is 'alert.freq_once_per_bar_close' alert messages will be concatenated and have a header saying how many messages it contains (if it's more than 1).
Hope this is of help!
Library "FibonacciRetracement"
ConcateAlerts(context)
Concatenates all alerts from the bar to one string (separated by new lines) and clears alert messages on the current bar.
Parameters:
context (Context)
AddAlert(context, message, unshiftInsteadOfPush)
Parameters:
context (Context)
message (string)
unshiftInsteadOfPush (bool)
Range(context, structure, settings)
Will return values if new levels/zones should be drawn.
Parameters:
context (Context) : The 'Context' for the Fibonacci retracement.
structure (Structure type from mickes/PriceAction/1) : The current 'Structure' from the 'MarketStructure' library.
settings (Settings) : The 'Settings' object for the 'Context'.
Returns: A tuple with the start and end pivot if new zones should be drawn, ' ' otherwise.
DrawAll(context, settings, start, end)
Draws lines and labels for the zone. It will also set the 'Price' value that will be used for absolute positions.
Parameters:
context (Context) : The 'Context' for the Fibonacci retracement.
settings (Settings) : The 'Settings' object for the 'Context'.
start (Pivot type from mickes/PriceAction/1)
end (Pivot type from mickes/PriceAction/1)
AlertActive(context, settings)
Will alert for all zones that are active. If multiple alert messages are added they will be concatenated (separated by a new line) with a header saying how many messages the alert contains.
Parameters:
context (Context) : The 'Context' for the Fibonacci retracement. This contains the zones that will be alerted if price (wick or close according to the settings) enters it.
settings (Settings) : The 'Settings' object for the 'Context'.
TrendlineSettings
Holds all the values for 'TrendlineSettings'.
Fields:
Enabled (series bool) : If the trendline should be visible or not.
Color (series color) : The color of the trendline.
Style (series string) : The style of the trendline (as a string).
GenericZonesSettings
Holds all the values for 'GenericZonesSettings', that will be applicable to all drawn objects.
Fields:
ExtendRight (series bool) : If all lines should extend to the right or not.
Style (series string) : The style of all drawn lines
Reverse (series bool) : If true, all lines will be reversed.
Prices (series bool) : If price levels should be shown or not.
Levels (series bool) : If levels should be shown or not.
LevelsValue (series string) : Either 'Value' or 'Percent'. Defined if value or percentage should be shown.
FontSize (series int) : The for size of the text in labels drawn.
LabelsPosition (series string) : Coul be 'Left', 'Rigth' or 'Adapt'. 'Adapt' will try to adapt the labels position to the prices.
ZoneSettings
Holds all the values for 'ZoneSettings'.
Fields:
Enabled (series bool) : If this zone is enabled or not.
Level (series float) : The level of the zone.
Color (series color) : The color that will be displayed.
Price (series float) : The price of the level. Will be set internally.
Settings
Holds all the values for 'Settings'.
Fields:
PivotLeftLength (series int) : The left length used to find pivots through the 'MarketStructure' library.
PivotRightLength (series int) : The right length used to find pivots through the 'MarketStructure' library.
Trendline (TrendlineSettings) : The settings for the 'Trendline' object.
GenericZonesSettings (GenericZonesSettings) : The setting applicable to all zones.
AlertFrequency (series string) : The frequency for the alerts. If 'alert.freq_once_per_bar_close', alert messages will be concatenated and have a header saying how many messages it contains (if it's more than 1).
AlertPrice (series string) : The price that has to enter a zone. Can be 'Close' (the closing price) or 'Wick' (the whole candle needs to be in the zone).
Zone1 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone2 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone3 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone4 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone5 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone6 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone7 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone8 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone9 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone10 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone11 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone12 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone13 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone14 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone15 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone16 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone17 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone18 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone19 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone20 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone21 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone22 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone23 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Zone24 (ZoneSettings) : The 'ZoneSettings' that represents this zone.
Context
Holds all the values for 'Context'.
Fields:
Lines (array) : All the drawn lines for the current 'Context'.
Labels (array) : All the drawn labels for the current 'Context'.
Boxes (array) : All the drawn boxes for the current 'Context'.
Alerts (array) : All the alert messages on the current tick.
Start (series int) : The start bar index of the current 'Context'.
Daily Weekly Monthly HLC (بهداد)خطوط مهم روزانه هفتگی ماهانه This is an indicator that shows the closing lines and the highest and lowest prices for daily, weekly and monthly periods. In addition, we can divide the entire weekly period into several parts.
RSI Multi Length + Normalized BBW (Butrait)RSI + BB: este indicador muestra cuando el valor esta en sobre venta o sobre compra.
Bullish 1st Breakaway FVG Stop Loss
This indicator provides a defined 3-tier stop loss placement when you want to trade the 1st Bullish Breakaway FVG strategy. The Bullish Breakaway Dual Session FVG indicator is an independent indicator that track all bullish breakaway candles, however this one only tracks the very 1st breakaway candle with a stop loss visual cue.
Introduction of Bullish Breakaway Consolidated FVG:
Inspired by the FVG Concept:
This indicator is built on the Fair Value Gap (FVG) concept, with a focus on Consolidated FVG. Unlike traditional FVGs, this version only works within a defined session (e.g., ETH 18:00–17:00 or RTH 09:30–16:00).
Bullish consolidated FVG & Bullish breakaway candle
Begins when a new intraday low is printed. After that, the indicator searches for the 1st bullish breakaway candle, which must have its low above the high of the intraday low candle. Any candles in between are part of the consolidated FVG zone. Once the 1st breakaway forms, the indicator will shades the candle’s range (high to low).
Session Reset: Occurs at session close.
Choose your own session: use 930 to 1615 for RTH, 1800 to 1615 for ETH. (New York Time Zone)
Repaint Behavior:
If a new intraday (or intra-session) low forms, earlier breakaway patterns are wiped, and the system restarts from the new low.
Product Optimization:
This indicator is designed for CME future product with New York time zone. If you want to trade other products, please adjust your own time session.
Entry:
Long after the 1st Bullish Breakaway Candle in your active session.
However, best position of long is executed by your own trading skill and edge.
Stop Loss: ξ
ξ: This is the 1st stop loss, it is 1 equal size of the breakaway candle below the low.
ξξ: This is the 2nd stop loss, it is 2 equal sizes of the breakaway candle below the low.
L: This is the 3rd stop loss, it is the intraday session low.
Stop loss calculation:
Assuming you enter at the high of the breakaway candle, the SL number is shown as the high minus the stop loss placement.
Last Mention:
If you don't see anything in the indicator, adjust your session to an active session only, and use Tradingview replay function. This indicator is a live indicator with repainting mechanism.
Current Bar Pips — Upper Right Quick pip counter for the active candle that shows the pip change in green if positive and red if negative. Also shows the range from wick to wick for the candle.
Current Bar Pips — Upper Right Quick pip counter for Forex pairs. Adds an indicator to top right to show the current candle's pip count in red if negative, green if positive. It will also show the total range of pips for the candle from wick to wick.
SiikmandoPhase Setup Detector + BB Reversal Zones © — Designed by Siikmando
The Phase Setup Detector is a professional-grade trading framework built to identify market phases, spring/retest setups, and risk-to-reward ranges with precision. By integrating Bollinger Band Reversal Zones, the system highlights points of volatility contraction (squeezes), expansions, and reversal signals at the outer bands—adding powerful confluence to Wyckoff-style phase transitions.
Key features:
Detects impulse & corrective phases with body-to-wick logic.
Marks spring/retest events for high-probability entries.
Dynamically builds range boxes, fib levels, and R:R zones.
Integrates Bollinger Band Squeeze/Expansion/Reversal Zones for confirmation.
Supports multi-timeframe analysis and volume/momentum filters.
Includes alerts & dashboard table for real-time trade decisions.
This tool is optimized for intraday and swing traders seeking structured setups, visual clarity, and actionable alerts, while remaining lightweight and efficient on TradingView.
Session Map! This indicator visually highlights the three main Forex trading sessions — Asia, London, and New York — as well as the Power Zone when London and New York overlap.
It also includes a bottom-center dashboard showing the current active session and the best Forex pairs to trade during that session.
Key Features 🚀
Session Background Shading
Asia Session → Aqua
London Session → Teal
New York Session → Blue
Power Zone (London + NY overlap) → Gold ⚡
Dynamic Dashboard (bottom-center)
Displays current active session
Shows best pairs to trade based on session liquidity
Optimized for Forex Trading
Know instantly when to trade and what to trade
Uses session-specific recommendations based on volatility windows
Why This Indicator is Useful
This isn’t just a session visualizer — it’s a trading assistant:
Helps you identify high-liquidity trading windows
Shows you which pairs are most active per session
Highlights the Power Zone ⚡ where volatility peaks
BB Trading WindowsTrading Windows for Blue Belt Strategy. The windows are as follows:
1:00-02:59
13:00-15:59
22:00-22:59
All in NY timezone.
Objective Doji Highlight (Range-Relative)This indicator highlights Doji candles using an objective, mathematics-based rule: a bar is Doji when the absolute difference between its open and close is less than or equal to a user-defined fraction (x) of that bar’s high–low range.
How it works:
Compute body size as the absolute difference between open and close.
Compute the bar’s range as high minus low.
Classify as Doji when body size ≤ x × range.
Only Doji candles are colored; non-Doji bars remain unchanged.
Inputs
Doji threshold (x of range): tolerance (0–1) controlling how small the body must be relative to the range.
Doji Candle Color: visual color for detected Doji candles.
Example:
If x = 0.10 and a candle has high = 100 and low = 90 (range = 10), the maximum allowed body is 1.
If the difference between open and close is ≤ 1, the candle is marked as Doji.
Why it can be useful
Doji candles are often studied as signs of market indecision. This tool provides a clear, parameter-based way to identify them consistently across any timeframe, without discretionary interpretation.
Notes & limitations
Works with standard candlesticks (not Heikin Ashi, Renko, or other synthetic bar types).
Visualization and research only: it does not produce buy/sell signals and makes no performance claims.
No repainting from future data; the logic uses only the current bar’s prices.
MTF QQE Direction TableMTF QQE Direction Table with signals and alerts
select up to 7 TFs to show QQE signals
Select to display OS\OB QQE signals for any time frame on chart
select alert for any time frame selected
Gray timeframe background = unconfirmed signal (TF candle not closed)
No timeframe background = confirmed signal
yellow background signal = Overbought\Oversold signal.
Combined Liquidity & Session LevelsPlots session highs and lows, as well as lower timeframe liquidity levels
(LES/SES) Compliment Net Volume(LES/SES) Compliment Net Volume
(LES/SES) Compliment Net Volume is a volume-based confirmation tool designed to show whether buyers or sellers are truly in control behind the candles. It acts as a compliment to the Long Elite Squeeze (LES) and Short Elite Squeeze (SES) frameworks, giving traders a clearer view of momentum strength.
Note! {Short Elite Squeeze (SES) Will be released in the Future}
-Designed to take shorts opposite of the long trades from LES
🔹 Core Logic
Net Volume Calculation – Positive volume when price closes higher, negative when price closes lower.
Cumulative Smoothing – Uses a rolling SMA of cumulative differences to remove noise.
Color Coding –
Green → Buyer dominance
Red → Seller dominance
Gray → Neutral pressure
🔹 How to Use
Above zero (green) → Buyers dominate → supports long setups (LES).
Below zero (red) → Sellers dominate → supports short setups (SES).
Flat/gray → No clear pressure → signals caution or chop.
This makes it easier to confirm when market participation aligns with a potential entry or exit.
🔹 Credit
The Compliment Net Volume was developed by Hunter Hammond (Elite x FineFir) as part of the LES/SES system.
The concept builds on classic Net Volume and cumulative volume analysis principles shared by the TradingView community, but has been uniquely adapted into the LES/SES framework.
⚠️ Disclaimer: This is a framework tool, not financial advice. Use with proper risk management.
Global Market Context Dashboard With Pull Back IndicatorGlobal Market Context Dashboard With Pull Back Indicator
Market Structure + MACD Histogram Divergences (HH/HL/LH/LL)A precise trading indicator about MACD and its divergences with price action.
BTC Dominance & Price RSI Analyzer by Sajad BagheriThis indicator analyzes the Relative Strength Index (RSI) for three key cryptocurrency metrics:
Bitcoin Price (BTC/USDT)
Bitcoin Dominance (BTC.D)
Tether Dominance (USDT.D)
It provides a comprehensive view of market momentum by displaying three RSI lines in a single pane, allowing traders to identify overbought and oversold conditions across these important metrics simultaneously.
TRADE ORBIT:-Stochastic Buy/Sell INDICATORStochastic-based background coloring with Buy/Sell signals. Includes Bollinger Bands, VWAP, EMAs, SMA 9, and SMA 34 (High/Low/Close) for trend and momentum confirmation.
EMA indicatorEMA indicator showing 4 different moving indicators with VWAP as an extra added layer of confluence
Kidev Pro -HLx4 Modes + Dual BB + WMA + HMA + Labels/Alerts [v6]This script is a multi-purpose technical toolkit designed for intraday and swing traders who rely on high/low reference levels, volatility bands, and moving averages for decision-making.
Features Included:
High/Low Levels (4 Lines, Multiple Modes):
Rolling Mode: Plots the Highest High & Lowest Low of two different lookback periods (fast/slow).
Prev Day / Week Mode: Automatically plots Previous Day’s High/Low (PDH/PDL) and Previous Week’s High/Low (PWH/PWL), with optional labels.
Session Mode (Custom): Marks the current session’s High/Low and the previous session’s High/Low (default 09:15–15:30 for NSE).
Fractal Mode: Plots last confirmed fractal Highs/Lows (fast & slow pivots).
Bollinger Bands (Dual):
Two independent Bollinger Bands, each with customizable MA length and standard deviation.
Optional shaded fills between bands for better volatility visualization.
Moving Averages:
A single Weighted Moving Average (WMA).
A single Hull Moving Average (HMA).
Both with custom lengths, colors, and visibility toggles.
Labels & Visuals:
Automatic labeling of PDH/PDL/PWH/PWL with customizable label colors.
Optional session shading to highlight market hours.
Alerts:
Trigger alerts when price crosses any of the four High/Low lines.
Useful for breakout/breakdown strategies.
Intended Use Cases:
Identify key support/resistance using High/Low lines from multiple perspectives (rolling, prior day/week, fractals, or sessions).
Track volatility compression/expansion with dual Bollinger Bands.
Overlay trend filters with WMA/HMA.
Combine levels + bands + averages for breakout or mean-reversion strategies.
SMC - Smart money concept ( H2M )H2M ®️ – SMC: Smart Money Concepts Trading Indicator
Overview
H2M ®️ – SMC is a compact yet powerful TradingView indicator based on Smart Money Concepts (SMC). with a protected source script (closed but free-to-use)
TradingView
, this tool is designed to help chart-savvy traders identify key institutional price structures and enhance trading precision.
Key Features
Prev High/Low detection – Pinpoints recent swing levels for better setup context.
Confirmation Candles – Adds extra validation for detected levels, helping reduce false signals.
EMA Colour Coding – Enhances trend clarity by dynamically coloring EMA lines.
Updated just 2 hours ago—reflecting a recent commitment to refinement and maintenance
TradingView
.
Why H2M ®️ – SMC Stands Out
Institutional-Grade Insights: Built around SMC principles, this indicator marks structures like Break of Structure (BOS), Change of Character (CHoCH), zones of liquidity, and imbalance. This aligns with what established SMC indicators offer, such as order blocks, fair value gaps, premium/discount zones, and swing labeling ...
User-Friendly Design: Intent on cutting through chart clutter—focused visuals and intuitive overlays for swift interpretation.