Chan Theory - Chanlun UltraChan Theory -Chanlun Ultra
Overview
This script is based on the core technical framework of Chan Theory, transforming complex market fluctuations into a multi-layered, quantifiable structural analysis system. Through real-time dynamic computation, it automatically parses key components in price movements such as fractals, pens, segments, and pivot zones. Integrated with momentum analysis and trading signal alerts, it provides traders with comprehensive market insights from micro to macro perspectives. The core distinction of Chan Theory from traditional technical indicators lies in its rigorous recursive logic and human-centric market philosophy. This script faithfully restores Chan Theory's essence of "using Zen to resolve market complexity," decomposing spiral price movements into an orderly trading decision system.
Technical Principles
This indicator implements the complete recognition process from candlesticks to fractals, pens, segments, and pivot zones using pure Pine Script under Chan Theory's framework. Core technical implementations include:
1. Candlestick Containment Processing
Employs specific algorithms to handle candlestick containment relationships, eliminating random noise:
In uptrends: Select the higher high and higher low values
In downtrends: Select the lower high and lower low values
Ensure complete elimination of containment through recursive processing
2. Fractal Identification System
Performs strict fractal judgment on processed candlesticks:
Top Fractal: The middle candlestick's high is higher than both adjacent candlesticks
Bottom Fractal: The middle candlestick's low is lower than both adjacent candlesticks
Validate fractal effectiveness via the filterOperateType function
3. Pen Construction Mechanism & Type Selection
Connects valid top/bottom fractals to form pen structures, offering four pen types:
Classic Pen: Traditional Chan Theory definition, strictly following classic rules
Optimized Pen: Enhanced algorithm for short-term volatility recognition
4K Pen: Builds pens based on fractals formed by at least 4 candlesticks (improves stability)
Strict Pen: Employs the most stringent validation conditions for reliability
4. Segment Partitioning Algorithm
Applies segment rules to pen sequences with three modes:
- Dynamic Real-time Progressive Correction: Adjusts forming segments continuously with new data
- Strict Mode: Fully complies with Chan Theory definitions
- Extension Mode: Flexible handling of trend developments
5. Pivot Zone Recognition Technology
Identifies pen-level and segment-level pivot zones
Calculates pivot zone price ranges and time durations
Analyzes pivot zone evolution characteristics
Supports display of pivot zones across different levels
Trading Signal System & Filters
Trading Signal Filtering System
This indicator provides comprehensive filtering functions:
Fractal Validity Filter: Verifies fractal patterns and post-fractal developments
Basic Fractal Filter: Eliminates non-compliant fractals through basic feature checks
Type I MACD Divergence Filter: Enhances Type I signal reliability via MACD divergence analysis
Type II Signal Filter: Custom conditions for Type II signals
-False Signal Trap Avoidance: Detects and bypasses deceptive price patterns
Chan Theory Trading Signal Principles
Type I Signals (Trend Reversals)
Principle: Forms when price makes new highs/lows with weakening internal momentum (divergence)
Identification: Compares structural features of adjacent same-direction pens
Application: Early trend reversal signals for swing trading
Type II Signals (Pullback Entries)
Principle: Occurs during retracements as sub-level reversal signals
Identification: Determined by pivot zone support/resistance and fractal combinations
Application: Optimal positions for pullback trades with controlled risk
Type III Signals (Breakout Confirmations)
Principle: Confirms pivot zone breakouts
Identification: Price breaks prior pivot zone boundaries with valid fractals
Application: Trend continuation signals for trend-following strategies
Indicator Features
Multi-Level Structural Analysis
Distinguishes structures across levels via level parameters
Higher-level trends guide lower-level operations
Implements cross-level collaborative logic
Displays sub-level pivot zones
Structural Visualization
Pens: Displayed per selected pen type
Segments: Rendered according to chosen segment mode
Pivot Zones: Color gradients indicate consolidation strength
Technical Implementation
Data Structure Design
Pen Object: Stores direction, timestamps, and price attributes
Segment Object: Manages segments and constituent pens
Pivot Object: Defines pivot zone ranges and characteristics
Grade Object: Organizes analysis results across levels
User Guide
Parameter Settings
Pen Type: Classic/Optimized/4K/Strict (adapt to analysis needs)
Segment Mode: Dynamic/Strict/Extension (match trading strategies)
Signal Filters: Enable/disable specific filters
Pivot Display: Toggle sub-level pivot zones
Divergence Settings: Configure types (regular/hidden) and display styles
Strategy Settings: Set trading rules linked to signals
Strategy Configuration
Follow Segments: Trade in alignment with segment direction
Signal Participation: Enable/disable Type I/II/III signals
Signal Conditions: Require signals to appear post-pivot zone formation
Prevent Early Entries:
Type I signals require ≥1 pivot zone or 5 pens
Type II Safety Control: Participate only if Type III signals are absent
Practical Recommendations
Select pen types/segment modes per market conditions
Adjust filters for different instruments and timeframes
Enhance accuracy through multi-level analysis
Confirm Type I signals with divergence indicators
Choose strategy parameters aligned with risk tolerance
Value Proposition
Systematizes Chan Theory into computable structures
Multiple pen/segment methods adapt to diverse markets
Advanced filtering significantly improves signal quality (historically validated)
Multi-level analysis provides holistic market insights
This tool is for technical analysis only. It does not constitute investment advice. Users must exercise independent judgment based on personal risk tolerance and objectives.
概述
本脚本基于缠论核心技术框架,将复杂的市场波动转化为多层次、可量化的结构分析系统。通过实时动态演算,自动解析价格走势中的分型、笔、线段、中枢等核心组件,并融合动量分析与交易信号预警功能,为交易者提供从微观到宏观的全方位市场透视。缠论区别于传统技术指标的核心在于其严格的递归逻辑与人性化市场哲学,本脚本忠实还原缠论"以禅破缠"的思想精髓,将螺旋缠绕的价格运动分解为有序的交易决策体系。
技术原理
本指标基于缠论技术分析框架,通过纯Pine Script实现了从K线到分型、笔、线段和中枢的完整识别流程。核心技术实现包括:
1. K线包含处理
采用特定算法处理K线包含关系,消除随机波动干扰:
- 上涨趋势中取高点高值、低点高值
- 下跌趋势中取高点低值、低点低值
- 通过递归处理确保包含关系完全消除
2. 分型识别系统
在处理后的K线基础上实现严格的分型判断:
- 顶分型:中间K线高点高于两侧K线
- 底分型:中间K线低点低于两侧K线
- 通过`filterOperateType`函数实现分型有效性验证
3. 笔的构建机制与类型选择
连接有效顶底分型形成笔结构,提供四种笔类型选择:
- **老笔**:传统缠论笔定义,严格遵循经典规则
- **新笔**:优化算法,增强对短期波动的识别能力
- **4K**:基于至少4根K线形成的分型构建笔,提高稳定性
- **严笔**:采用最严格的条件验证,确保形成的笔结构可靠
4. 线段划分算法
基于笔序列应用线段划分规则,支持三种线段模式:
- **当下延伸后修正**:实时计算当前形成中的线段,并随新数据更新修正
- **严格模式**:要求线段完全符合缠论定义,减少假信号
- **延伸模式**:更灵活地处理线段延伸情况,适合趋势分析
5. 中枢识别技术
- 实现笔中枢和线段中枢识别
- 计算中枢价格区间与时间范围
- 分析中枢演变特征
- 支持显示不同级别中枢功能
买卖点系统与过滤机制
买卖点过滤系统
本指标提供全面的买卖点过滤功能:
- **买卖点分型过滤**:检验分型形态有效性,验证分型后续发展
- **买卖点分型基础过滤**:针对分型基本特征进行验证,排除不合格分型
- **1买卖macd背驰过滤**:通过MACD判断背驰情况,提高一类买卖点可靠性
- **2买卖点过滤**:专门针对二类买卖点的过滤条件
- **防狼术**:避免陷阱式买卖点,提高交易安全性
缠论买卖点原理
1. **一类买卖点**
- 原理:基于趋势背驰原理,当价格创新高/低但内部结构力度减弱时形成
- 识别方法:通过比较相邻同向笔的结构特征判断力度变化
- 应用:提供趋势可能反转的早期信号,适合波段操作
2. **二类买卖点**
- 原理:发生在回调过程中,属于次级别转折信号
- 识别方法:通过中枢支撑位与分型组合判断
- 应用:回调买入或做空的较佳位置,风险相对可控
3. **三类买卖点**
- 原理:中枢突破确认信号
- 识别方法:价格突破前中枢边界并形成有效分型
- 应用:趋势延续的确认信号,适合追踪趋势
指标特点
多级别结构分析
本指标支持多级别联动分析:
- 通过级别参数区分不同级别结构
- 高级别趋势指导低级别操作
- 实现级别间的协同判断逻辑
- 支持显示次级别中枢功能
结构可视化
- 笔结构:根据选择的笔类型显示
- 线段结构:按照选定的线段模式呈现
- 中枢区域:颜色渐变标识不同强度
技术实现说明
数据结构设计
指标设计了完整的面向对象结构:
- Pen结构:存储笔的方向、时间、价格等属性
- Segment结构:管理线段及其组成笔
- Pivot结构:表示中枢范围和特性
- Grade结构:区分不同级别的分析结果
使用指南
参数设置
- 笔的类型:选择老笔、新笔、4K或严笔以适应不同分析需求
- 线段模式:根据交易策略选择合适的线段计算方式
- 买卖点过滤:根据需要启用不同的过滤机制
- 中枢显示:选择是否显示次级别中枢
- 背离设置:选择背离类型、显示方式和样式
- 策略设置:配置与买卖点相关的交易策略选项
策略应用配置
- 跟随线段:根据线段方向进行交易
- 买卖点参与设置:可选择性参与一类、二类和三类买卖点
- 买卖点条件限制:可设置买卖点需要在中枢形成后出现
- 防止过早进场:可要求一类买卖点至少出现一个中枢后或至少5笔后才参与
- 二类买卖点安全性控制:可选择仅在未出现三类买卖点的情况下参与
实际应用建议
- 结合市场环境选择合适的笔类型和线段模式
- 针对不同品种和时间周期调整过滤设置
- 通过多级别分析提高判断准确性
- 使用背离指标确认一类买卖点的有效性
- 根据策略风格选择适合的策略配置参数
技术特点与价值
本指标通过系统化实现缠论结构分析,提供了一种客观的技术分析工具。它的核心价值在于:
1. 将复杂的缠论理论系统化为可计算的结构
2. 提供多种笔、线段判断方法以适应不同市场环境
3. 完善的买卖点过滤系统大幅提高信号质量
4. 多级别联动分析提供全面市场视角
*本指标仅提供技术分析参考,不构成投资建议。用户应根据自身风险承受能力和投资目标进行判断。*
在腳本中搜尋"zone"
SessionRangeLevels_v0.1SessionRangeLevels_v0.1
Overview:
SessionRangeLevels_v0.1 is a customizable Pine Script (v6) indicator designed to plot key price levels based on a user-defined trading session. It identifies the high and low of the session and calculates intermediate levels (75%, 50% "EQ", and 25%) within that range. These levels are projected forward as horizontal lines with accompanying labels, providing traders with dynamic support and resistance zones. The indicator supports extensive customization for session timing, time zones, line styles, colors, and more.
Key Features:
Session-Based Range Detection: Tracks the high and low prices during a specified session (e.g., 0600-0900) and updates them dynamically as the session progresses.
Customizable Levels: Displays High, 75%, EQ (50%), 25%, and Low levels, each with independent toggle options, styles (Solid, Dashed, Dotted), colors, and widths.
Session Anchor: Optional vertical line marking the session start, with customizable style, color, and width.
Projection Offset: Extends level lines forward by a user-defined number of bars (default: 24) for future price reference.
Labels: Toggleable labels for each level (e.g., "High," "75%," "EQ") with adjustable size (Tiny, Small, Normal, Large).
Time Zone Support: Aligns session timing to a selected time zone (e.g., America/New_York, UTC, Asia/Tokyo, etc.).
Alert Conditions: Triggers alerts when the price crosses any of the plotted levels (High, 75%, EQ, 25%, Low).
Inputs:
Session Time (HHMM-HHMM): Define the session range (e.g., "0600-0900" for 6:00 AM to 9:00 AM).
Time Zone: Choose from options like UTC, America/New_York, Europe/London, etc.
Anchor Settings: Toggle the session start line, adjust its style (default: Dotted), color (default: Black), and width (default: 1).
Level Settings:
High (Solid, Black, Width 2)
75% (Dotted, Blue, Width 1)
EQ/50% (Dotted, Orange, Width 1)
25% (Dotted, Blue, Width 1)
Low (Solid, Black, Width 2)
Each level includes options to show/hide, set style, color, width, and label visibility.
Projection Offset: Number of bars to extend lines (default: 24).
Label Size: Set label size (default: Small).
How It Works:
The indicator detects the start and end of the user-defined session based on the specified time and time zone.
During the session, it tracks the highest high and lowest low, updating the levels in real-time.
At the session start, it plots the High, Low, and intermediate levels (75%, 50%, 25%), projecting them forward.
Lines and labels dynamically adjust as new highs or lows occur within the session.
Alerts notify users when the price crosses any active level.
Usage:
Ideal for traders who focus on session-based strategies (e.g., London or New York open). Use it to identify key price zones, monitor breakouts, or set targets. Customize the appearance to suit your chart preferences and enable alerts for real-time trading signals.
Notes:
Ensure your chart’s timeframe aligns with your session duration for optimal results (e.g., 1-minute or 5-minute charts for short sessions).
The indicator overlays directly on the price chart for easy integration with other tools.
Dynamic Breakout Master by tradingbauhaus 🌟 Code Description:
This Pine Script implements a trading strategy called "Dynamic Breakout Master" 💥. The core idea of the strategy is to identify breakouts (price movements) at key support 💙 and resistance 🔴 levels, through a dynamic channel that adapts to the market’s conditions. Here's how it works:
🔧 Customizable Input Parameters:
🧭 Pivot Period: This defines the number of bars (candles) to the left and right used to detect pivots (highs and lows) that mark the support and resistance zones.
📊 Data Source: You can choose whether to use highs and lows or closes and opens of the candles to identify the pivots.
📏 Max Channel Width: Specifies the maximum width allowed for the support/resistance channel, expressed as a percentage over the last 300 bars.
💪 Minimum Pivot Strength: This defines the minimum number of pivots needed for a support or resistance level to be considered valid.
🏔 Max Support/Resistance Zones: Limits the number of key zones displayed on the chart.
📅 Lookback Period: Adjusts how many bars back the system should check to find and validate support and resistance levels.
🎨 Custom Colors: You can choose colors for the support, resistance, and in-channel zones.
📉 Moving Averages (MA): The strategy allows adding up to two moving averages (SMA or EMA) to assist in making trading decisions.
📊 Calculating Support/Resistance Levels:
The system uses an algorithm to identify pivots from prices and calculates dynamic support and resistance zones 🔒🔓.
The closer the pivots are and the stronger their influence, the more relevant the zone becomes for the strategy.
The dynamic channel is drawn on the chart, with a maximum width limit for these zones defined by the input parameter.
📈 Trading Logic:
🚀 Identifying Breakouts:
The strategy looks for when the price breaks (breakouts) a resistance or support level.
If the price breaks upward through the resistance level, a buy order 📈 is triggered.
If the price breaks downward through the support level, a sell order 📉 is triggered.
🔔 Alerts:
Resistance Break (ResBreak) and Support Break (SupBreak) alerts are configured to notify users when a significant breakout occurs.
💰 Commissions:
The strategy includes a commission (0.1%) to simulate transaction costs for each trade.
📊 Chart Visualization:
The support and resistance zones are displayed as colored rectangles:
🔴 Resistance (red) and
🔵 Support (blue).
Pivots of support and resistance can be labeled as P (for resistance) and V (for support).
Breakouts of support or resistance levels are marked with triangles that appear on the chart 🔺🔻.
📈 Trading Strategy:
If the price breaks upward through the resistance level, a long position (buy) 📈 is opened.
If the price breaks downward through the support level, a short position (sell) 📉 is opened.
🏆 Conclusion:
This script is a dynamic breakout strategy 💥 that allows traders to capture significant price movements when support or resistance channels break. The customizable parameters let users fine-tune the strategy according to their preferences, while the visual alerts on the chart make it easier to follow trading opportunities. The inclusion of moving averages and key price zones adds an extra layer of analysis to improve decision-making 💡.
Angkol StrategyKey Components:
Time Zones:
Kill Zone: A specific time window during which the strategy tracks price action for potential signals.
You can modify the start and end time of this kill zone with a time zone offset for your preferred market hours (e.g., New York).
Entry Restriction Zone: A time window during which entry signals are restricted (i.e., no entries are allowed). You can modify the start and end time for this restriction.
Trade Biases:
Sell Bias: Occurs when the price breaks the previous day's kill zone high.
Buy Bias: Occurs when the price breaks the previous day's kill zone low.
Trade Signals:
Bearish Signal (Sell): Triggered when:
A Bearish Engulfing pattern occurs (where the current bar closes lower than it opens and it engulfs the previous bar).
A Bearish Order Block forms (where the previous candle is bullish and the current one closes below the previous low).
The price breaks the previous day’s kill zone high.
The signal is outside the entry restriction window.
Bullish Signal (Buy): Triggered when:
A Bullish Engulfing pattern occurs (where the current bar closes higher than it opens and it engulfs the previous bar).
A Bullish Order Block forms (where the previous candle is bearish and the current one closes above the previous high).
The price breaks the previous day’s kill zone low.
The signal is outside the entry restriction window.
Plotting:
Kill Zone Background: The chart’s background turns blue during the kill zone to visually highlight the target time window.
Buy/Sell Signals: Buy and sell signals are marked on the chart using small upward and downward labels.
Previous Day's High/Low: The high and low from the previous day’s kill zone are plotted on the chart for reference.
Alerts:
Alerts for Buy and Sell Signals: Alerts are triggered when either buy or sell signals are generated, based on your conditions.
Customization:
Time Zone Offset: Adjusts the entire strategy to the desired time zone (e.g., New York time).
Kill Zone: You can adjust the start and end times of the kill zone, reflecting the active market session.
Entry Restriction Window: You have control over the start and end times of the entry window, ensuring no trades are executed during this period.
Goal:
Your strategy aims to capture buy or sell opportunities after the price breaks key levels (previous day’s high/low) within specific time windows (the kill zone and entry restriction zone). You focus on order block and engulfing candle patterns to validate entries.
DCA Alpha 1.0 Trading Tool for Dollar-Cost Averaging
Description:
DCA Alpha 1.0 is a precision-engineered trading tool designed to assist traders and investors in accumulating assets during market downturns. Using proprietary algorithms that combine momentum decay, extreme price deviation metrics, trend dynamics, divergence analysis, and mean regression, it identifies potential bottom extreme zones in various asset classes such as indices, stocks, crypto, and commodities.
This indicator highlights market conditions where assets are oversold, undervalued, or experiencing capitulation—providing disciplined, unleveraged dollar-cost averaging (DCA) opportunities. Ideal for long-term growth strategies, DCA Alpha 1.0 helps cut through market noise, pinpointing moments of peak fear and maximum reward potential.
Whether navigating volatile crypto markets, timing corrections in indices, or accumulating commodities, DCA Alpha 1.0 serves as a vital tool for mastering the art of buying low and building your assets up strategically.
Instructions:
Getting Started:
Add the Indicator:
Install DCA Alpha 1.0 on your TradingView chart.
Select your preferred asset class: stocks, indices, crypto, or commodities.
Choose an appropriate timeframe (e.g., daily or weekly for long-term DCA strategies).
Customize Inputs: Adjust the following settings to align with your strategy:
Percentage of Equity to Trade: Define the portion of your portfolio to allocate per signal (default: 1% equity).
Profit Target Percentages: Set thresholds for locking in gains (default: 50% on lower timeframes, 500% on higher timeframes).
Zones and Signals:
Extreme Negative Zones:
What It Represents:
These zones highlight conditions where prices are deeply oversold, indicating extreme bearish sentiment. The market is likely nearing a bottom, offering high-probability buying opportunities.
Entry Signals:
When the price enters these extreme negative zones, visual markers (e.g., green triangles or other indicators) will signal a potential buying opportunity. These moments are indicative of market exhaustion, signaling that a reversal could be imminent.
Momentum Decay & Divergence:
Momentum decay occurs when price movement slows over time. In extreme negative zones, if prices continue to fall but at a diminishing rate (e.g., decreased volume or a fading oscillator), it suggests weakening bearish momentum. This, coupled with bullish divergence (oscillator forming higher lows while price makes lower lows), signifies a reversal, making it an ideal point to consider dollar-cost averaging into the asset.
Neutral Zones:
What It Represents:
The neutral zone is a state of market equilibrium, where prices are neither overbought nor oversold. The market is in a balanced state, with no strong trend emerging.
Mean Regression:
In a neutral zone, the market is reverting to its mean or average price after overreacting in either direction. A price transition from extreme zones (overbought/oversold) to the neutral zone suggests a reversion to the market's long-term average, making this a period of reduced volatility and uncertainty.
Entering or Exiting Neutral Zones:
Traders should avoid entering or exiting positions during neutral zone conditions unless transitioning from an extreme zone (negative or positive). Transitioning from an extreme negative zone to neutral may suggest an opportunity to accumulate assets gradually, while a shift from neutral to an extreme negative zone may indicate a deeper correction and warrant caution.
Momentum Decay & Divergence (Exiting Neutral Zone):
If prices are rising but the oscillator shows lower highs (bearish divergence), and momentum is fading, this could signal a pullback. A transition out of the neutral zone in this context may prompt traders to hold off on new positions or consider profit-taking.
Extreme Positive Zones:
What It Represents:
Markets can also become overbought or overvalued. When price enters extreme positive zones, the asset may be overvalued, suggesting potential selling or a waiting period.
Exit Signals:
Red triangle indicators signal potential exit points when prices reach overbought conditions, signaling a time to lock in profits and reduce exposure.
Momentum Decay & Divergence (Exiting Positive Zone):
When prices are making new highs but momentum is weakening (momentum decay) and the oscillator is showing lower highs (bearish divergence), this could indicate a faltering rally. Such conditions represent an ideal time to reduce exposure or exit positions.
Key Inputs for Customization:
Percentage of Equity to Trade:
This setting allows you to allocate a portion of your total portfolio per buy signal. By default, 1% of equity is used per signal, but this can be adjusted based on your risk tolerance and strategy.
Profit Target Percentages:
These thresholds help lock in gains once the price moves a set percentage in your favor.
Lower Timeframes: Default profit target of 50%.
Higher Timeframes: Default profit target of 500%.
These settings can be customized for specific risk/reward preferences.
Warning!!! : Aggressive Mode
Aggressive Mode is an advanced feature designed for traders who want to increase the frequency of signals during periods of market volatility. This mode will trigger more frequent entries, even into slightly less extreme zones, capturing short-term reversals.
What Aggressive Mode Does:
It amplifies signals by allowing the tool to identify more frequent price reversals, including brief market corrections, increasing trade frequency. While this can offer more trading opportunities, it also exposes you to higher risk.
Warning:
Aggressive Mode should be used only by experienced traders familiar with short-term volatility. The increased frequency of signals could lead to higher risk exposure. Ensure robust risk management practices, such as stop-loss orders and profit-taking strategies, are in place before activating this mode.
Default Setting:
Aggressive Mode is disabled by default. It can be activated at your discretion based on your experience level and risk appetite.
Best Practices:
Focus on High-Quality Assets: Prioritize assets with strong recovery potential (e.g., major indices, blue-chip cryptocurrencies).
Use Longer Timeframes: Minimize market noise and optimize your DCA strategy by focusing on higher timeframes (e.g., daily or weekly charts).
Review Trading Inputs: Regularly adjust your inputs to ensure they align with your financial goals and risk tolerance.
Implement Risk Management: Use stop-loss orders and profit targets to manage risk, especially when using Aggressive Mode.
Disclaimer:
DCA Alpha 1.0 is designed specifically for unleveraged, long-term dollar-cost averaging strategies. It is not intended for day trading or leveraged positions. The tool excels at identifying market dips but cannot guarantee success. Users are fully responsible for their own risk management, including the use of stop-losses, profit targets, and position sizing.
Aggressive Mode increases trade frequency and may lead to higher exposure and potential losses. Only experienced traders should consider using this mode. Always understand the risks involved before incorporating this tool into your trading strategy.
Risk Indicator# Risk Indicator
A dynamic risk analysis tool that helps traders identify optimal entry and exit points using a normalized risk scale from 0 to 1. The indicator combines price action, moving averages, and logarithmic scaling to provide clear visual signals for different risk zones.
### Key Features
• Displays risk levels on a scale of 0-1 with intuitive color gradients (blue → cyan → green → yellow → orange → red)
• Shows predicted price levels for different risk values
• Divides the chart into 5 DCA (Dollar Cost Average) zones
• Includes customizable alerts for rapid risk changes and zone transitions
• Automatically adjusts to market conditions using dynamic ATH/ATL calculations
### Customizable Parameters
• SMA Period: Adjust the smoothing period for the baseline moving average
• Power Factor: Fine-tune the sensitivity of risk calculations
• Initial ATL Value: Set the starting point for ATL calculations
• Label Offset: Adjust the position of price level labels
• Visual Options: Toggle price levels and zone labels
• Alert Settings: Customize alert thresholds and enable/disable notifications
### Risk Zones Explained
The indicator divides the chart into five distinct zones:
- 0.0-0.2: DCA 5x (Deep Blue) - Strongest buy zone
- 0.2-0.4: DCA 4x (Cyan) - Strong buy zone
- 0.4-0.6: DCA 3x (Green) - Neutral zone
- 0.6-0.8: DCA 2x (Yellow/Orange) - Take profit zone
- 0.8-1.0: DCA 1x (Red) - Strong take profit / potential sell zone
### Alerts
Built-in alerts for:
• Rapid increases in risk level
• Rapid decreases in risk level
• Entry into buy zones
• Entry into sell zones
### How to Use
1. Add the indicator to your chart
2. Adjust the SMA period and power factor to match your trading timeframe
3. Monitor the risk level and corresponding price predictions
4. Use the DCA zones to guide your position sizing
5. Set up alerts for your preferred risk thresholds
### Tips
- Lower risk values (blue/cyan) suggest potentially good entry points
- Higher risk values (orange/red) suggest taking profits or reducing position size
- Use in conjunction with other technical analysis tools for best results
- Adjust the power factor to fine-tune sensitivity to price movements
### Notes
- Past performance is not indicative of future results
- This indicator is meant to be used as part of a complete trading strategy
- Always manage your risk and position size according to your trading plan
Version 1.0
SecretSauceByVipzOverview:
SecretSauceByVipz is a sophisticated trading indicator designed to help traders identify high-probability buy and sell signals by integrating multiple technical analysis tools. By combining Exponential Moving Averages (EMAs), Average True Range (ATR) buffer zones, Volume Weighted Average Price (VWAP), and Relative Strength Index (RSI) momentum confirmation, this indicator aims to reduce false signals and enhance trading decisions.
Key Features:
Exponential Moving Averages (EMAs):
200-period EMA (Long EMA): Serves as a long-term trend indicator.
8-period EMA (Fast EMA): Captures short-term price movements.
21-period EMA (Slow EMA): Reflects medium-term price trends.
EMA Crossovers: Generates initial buy/sell signals when the fast EMA crosses over or under the slow EMA.
ATR-Based Buffer Zones:
ATR Calculation: Utilizes a 14-period ATR to measure market volatility.
Buffer Zone Multiplier: User-adjustable multiplier (default 1.0) applied to the ATR to create dynamic buffer zones around the 200 EMA.
Buffer Zones: Helps filter out false signals by requiring price to move beyond these zones for certain signals.
Volume Weighted Average Price (VWAP):
VWAP Plotting: Provides an average price weighted by volume, useful for identifying fair value areas and potential support/resistance levels.
Signal Confirmation Logic:
Confirmation Candle: Requires the next candle after a crossover to close in the signal's direction for added reliability.
Early Signals: Triggers when price crosses the 200 EMA and moves beyond the buffer zone, indicating potential early trend changes.
Strong Signals: Occur when both the price crosses the fast EMA and the fast EMA crosses the slow EMA simultaneously.
RSI Momentum Confirmation:
RSI Calculation: Uses a 14-period RSI to gauge market momentum.
Momentum Filter: Confirms signals only when RSI aligns with the trend (above 50 for bullish, below 50 for bearish signals).
Visual Aids:
EMA and VWAP Plots: Overlays the EMAs and VWAP directly on the price chart for easy visualization.
Buffer Zone Lines: Plots the upper and lower buffer zones around the 200 EMA.
Signal Labels:
Buy Signals: Displayed as green "BUY" labels below the bars.
Sell Signals: Displayed as red "SELL" labels above the bars.
How to Use:
Trend Identification:
Use the 200 EMA to determine the overall market trend.
Price above the 200 EMA suggests a bullish trend; below indicates a bearish trend.
Signal Generation:
Confirmed Signals: Wait for the confirmation candle after an EMA crossover before considering entry.
Early Signals: Consider early entries when price crosses the 200 EMA and moves beyond the buffer zone.
Strong Signals: Pay attention to strong signals where both price and EMAs are crossing over, indicating robust trend momentum.
Momentum Confirmation:
Ensure the RSI aligns with the signal direction:
Buy Signals: RSI should be above 50.
Sell Signals: RSI should be below 50.
Adjusting Sensitivity:
Modify the ATR Multiplier and Buffer Multiplier to suit different market conditions and personal trading styles.
A higher multiplier may reduce signal frequency but increase reliability.
Customization Parameters:
ATR Multiplier for Distance Filter (Default: 1.5):
Adjusts the sensitivity of the distance filter based on ATR.
Buffer Multiplier for 200 EMA (Default: 1.0):
Alters the width of the buffer zones around the 200 EMA.
Benefits:
Reduces False Signals: The combination of confirmation candles and buffer zones helps filter out noise.
Enhances Trend Detection: Multiple EMA crossovers provide insights into short-term and medium-term trends.
Incorporates Volatility and Momentum: ATR and RSI ensure signals consider market volatility and momentum.
Disclaimer:
This indicator is a tool to assist in technical analysis and should not be used as the sole basis for trading decisions. Always conduct thorough analysis and consider risk management strategies before executing trades. Past performance is not indicative of future results.
Credits:
Developed by Vipink1203.
Version:
Pine Script Version 5
Supply & Demand (MTF) | Flux Charts💎 GENERAL OVERVIEW
Introducing our new Supply and Demand (MTF) Indicator! This new indicator renders Supply and Demand zones based on momentum candles. It can detect Supply and Demand zones across up to 3 diferent timeframes. It's capable of combining zones, retest & break labels and it's customizable with invalidation and style settings.
Features of the new Supply and Demand (MTF) Indicator:
Renders Supply and Demand Zones Across 3 Timeframes
Combination Of Overlapping Zones
Retest & Break Labels
Retest & Break Alerts
Enable / Disable Historic Zones
Visual Customizability
📌 HOW DOES IT WORK ?
Supply and Demand is a key concept in trading. It helps traders see the zones that market-makers buy & sell the asset in large amounts. It's detected by finding momentum candles (candles that have large bodies) in a row.
Momentum candles are defined to have a larger body than the average candle in the chart, and at least 4 of them in a row is required to draw a supply or demand zone. The zone is drawn from the high wick to low wick of two candles before the first momentum candle in the row.
Check this example :
These zones are usually where market makers trade the asset in larger amounts. Thus, they act as support & resistance zones by their nature. A retest of these zones can make the price bounce to the opposite direction, while a breakout usually means strong price action momentum is incoming in that direction. Supply zones indicate bearish momentum while demand zones indicate bullish momentum.
Check this example :
Here a Supply Zone (Bearish) forms. Then price comes back up to test the zone, and it fails to break. After the failed attemp, a stong bearish momentum takes the price back to a lower level. Then another test of the zone occurs and successfully breaks the zone this time. This breakout starts a bullish momentum that takes the price to a higher level.
🚩UNIQUENESS
This indicator provides Supply and Demand zones in your chart with pure simplicity. It supports up to 3 different timeframes as we believe supporting your trades with higher timeframes can improve your trading experience. It also gets rid of complexity by combining overlapping zones into a single zone, even if they are from different timeframes! You can also set-up alerts to get notified when a supply or demand zone is being retested, or is broken. Overall, this indicator is the ultimate kit for supply and demand zones.
⚙️SETTINGS
1. General Configuration
Max Distance To Last Bar -> The maximum distance that the indicator will render supply and demand zones from. Higher settings mean rendering older supply and demand zones.
Zone Invalidation -> Select between Wick & Close price for Supply and Demand Zone Invalidation.
Retests & Breaks -> Enable retest & break labels in your chart.
Show Historic Zones -> This will show historic supply & demand zones which are invalidated if enabled. You can disable this to only see active supply and demand zones for a simpler chart.
2. Timeframes
You can set up to 3 different timeframes and enable / disable them using the checkboxes in this section.
Advanced VSA: Trend and Range LevelsThe indicator is designed for traders who are more interested in market structures and price action using volumes. Analyzing volumes, key market levels, market phases (trend or range/sideways), and multiple timeframes can help the trader build a clearer and more comprehensive view of the market. The data analysis algorithm is developed based on VSA methods, elements of the ICT concept, and the results of my research to assist trader in gaining a better understanding of the market and uncovering information that might go unnoticed.
The key idea is to consider multiple timeframes in trading. Understanding larger market movements from higher timeframes can provide a deeper context when making trading decisions, aiming to assist in more effective entries and exits. This is achieved by identifying the trend and its support levels on multiple timeframes, identifying ranges and their current boundaries, as well as buyer and seller interest zones.
Key Features
Trend Identification: The indicator determines the trend and its current support level. All significant price &movements occur in the form of impulses (either by sellers or buyers). An impulse consists of one or several consecutive candlesticks, at least one of which has a closing price beyond the boundaries of the previous impulse. The indicator displays the base of the impulse and/or the entire impulse. The base of the impulse represents the trend's support level.
Range Identification: The indicator can identify ranges and their current boundaries. Institutional traders take positions within price ranges, and many market reversals occur after flats. A range is a sequential price movement up and down within a specific price range. A range is formed by a minimum of 4 points, 2 above and 2 below, and is defined by its boundaries. The indicator detects ranges based on two (two consecutive impulses in one direction) or three impulses (the first and third in one direction, and the second in the opposite direction). The indicator displays the current boundary points of the range and the level of protection after exiting the range and initiating a trend.
Buyer and seller zones within impulses: After the impulse ends, a correction occurs. It is advisable to look for entry points during this correction in the direction of the impulse from the zone of interest of the owner of the impulse: the buyer's zone for a long impulse and the seller's zone for a short impulse. A zone consists of a series of consecutive candlesticks grouped on the chart in a specific manner.
Multi-Timeframe Trend Identification: The indicator also identifies the trend on two higher timeframes and displays the two latest bases of impulses from those higher timeframes on the chart.
Additional Features
Identification of Test Levels and Effort. A test is the price's return to a zone or to a candle of effort, followed by a continuation in the direction of the initial price movement. It is characterized by the test level. An effort or effort candle is a single candle that is individually larger in volume than the previous 2.
Example Use Cases
You can display the base levels of impulses from a 4-hour time frame and a daily time frame on a 15-minute chart to keep track of important levels from higher timeframes.
By exploring different timeframes, you can identify consolidations (range/sideways movements) and trade within them in the direction of the trend from higher timeframes.
If the market is in a trending phase (the presence of a trend is determined by two consecutive impulses in the same direction), look for trades in the direction of the impulse, following these priorities:
When the impulse base level is protected by the host of the impulse.
During corrections, look for buy trades in the buyer's zone for an uptrend and sell trades in the seller's zone for a downtrend.
During corrections, look for buy trades from a buyer's effort candle for an uptrend and sell trades from a seller's effort candle for a downtrend.
If the market is in a consolidation phase (range), look for trades:
When the current or maximum/minimum historical boundaries of the consolidation (range) are protected, look for trades towards the opposite current boundary.
If the price exits the consolidation/range (closes outside all consolidation boundaries, including both current and historical boundaries), then during corrections, look for trades in the direction of the exit.
Settings
Trend: Display base levels of impulses and/or the entire impulse. Sideways Ranges (Sideways Markets): Display the required number of sideways ranges on the chart, along with protection levels for exiting the sideways range. There are two modes for finding sideways ranges. The first mode requires touching points. The second mode (advanced) does not require precise touching of points if there are increased volumes at the extreme points of the sideways range. Touching these volumes is sufficient for the price.
Zones: Display zones on the chart. Choose the types of displayed zones and their colors. They are divided into three types. The first type is the most promising for finding trades. Type 3 represents more aggressive trades.
Test Levels: Display test levels for zones and efforts on the chart. There are three types of test levels. The first type is the most promising for finding trades. Type 3 is not recommended for finding trades as it represents the most aggressive trades.
Higher Time Frames: Choose 2 timeframes and the types of displayed impulse base lines.
FX4Model° [fx4_living x toodegrees]Introducing the FX4 Model, an advanced automated trading framework designed to optimize your trading positions made by the trader fx4_living. This model integrates the previous day's high and low, and half of that range, to identify premium and discount zones.
The FX4 Model incorporates the ICT Asian range, spanning from 20:00 (New York time) to the midnight open. This period constitutes part of the day's accumulation range, during which a large volume of orders is processed. This implies that the high and low of this range are perceived as crucial liquidity pool zones.
The FX4 Model features a time-based dashboard. This dashboard presents key information such as the close of the previous candle. It also indicates the remaining time before certain significant candle closes (price and time).
With this tool, you gain a robust trading framework that empowers you to capitalize on profitable trading opportunities.
The FX4 accumulation range spans from the previous day's close to 2 AM New York local time. This range is part of the day's accumulation period, during which a lot of orders are triggered. Therefore, the high and the low of this range are seen as vital liquidity pool zones.
The ICT midnight open is marked with a vertical line at 00:00. This refers to the opening price of a financial instrument at midnight New York time. This opening price is significant as it serves as a reference point for trading strategies.
Time-To-Close Dashboard
This outstanding Dashboard displays the Time Frame and its "Time-To-Close".
It shows the Previous Candle Close (Bullish or Bearish).
The Time will appear in Red when there's 5 minutes left before the candle closes.
Previous Day Range (High-Low + 50%)
The previous day's high and low (PD) ranges can be leveraged in your trading strategy for the current day, using them as reference points for potential trading opportunities. The 50% division creates premium and discount zones within the previous day's range. If the price is in the discount zone, you should look for a buy opportunity, whereas if the price is in the premium zone, a sell opportunity should be considered.
FX4 Accumulation Range (High-Low + 50%)
The accumulation range's high and low points provide the most recent liquidity zone for the current day. These points can be used as reference points for potential trading opportunities. The 50% division here also creates premium and discount zones within the accumulation range. If the price is in the discount zone, a buy opportunity should be considered, and if the price is in the premium zone, a sell opportunity should be considered.
Other features:
Automatic Time Zone: As the title suggests, the automatic time zone feature means that you'll never need to adjust any GMT or hour settings. Everything updates automatically, even if you don't live on the East Coast of the United States.
Automatic Dark/Light Mode All graphics will automatically adapt their color based on your background. There's no need to tweak any settings; they're designed to provide consistent visuals.
ASE Supply & Demand█ Introduction
ASE Supply & Demand is a multi-timeframe Supply and Demand zone indicator based on the Order Block concept. Order Blocks are a price action concept defined as a basing candle followed by a breakout candle (as seen in the chart below). A basing candle typically shows a slowing down in price action, foreshadowing a reversal and initial institutional activity. The breakout candle then confirms institutional activity with a displacement candle in the opposite direction of the basing candle. Additionally, there is an advanced feature called “Potentials,” which allows us to see price action forming S&D zones beforehand & trapped positions live through the same Order Block concept.
█ Supply and Demand Zones
The Supply & Demand zones are plotted on 8 timeframes (5m, 15m, 30m, 1hr, 2hr, 3hr, 4hr, D). In addition, there are custom settings that allow the trader to filter for the most significant zones and to cohere to their trading style:
Range Multiplier
Filters the creation of a zone based on the basing candle of Supply/Demand(0-5)
The size of the basing candle must be smaller than 0-5 times the True Range Index to create Supply/Demand.
If the basing candle range is smaller than the True Range Index, this can foreshadow the potential of institutional activity as price slows down, and a potential reversal might occur.
True Range Index
The number of bars to calculate the True Range in Range S+D mode.
Displacement Sensitivity
Filters the creation of a zone based on the displacement from the base (0-20)
Calculated by taking the breakout range (as seen in the chart below) divided by the range of the basing candle
0 = less significant, more zones
20 = more significant, fewer zones
Zone Strength Filter %
Filter out current zones based on how strong they are (0-100)
Calculated by the amount of fill within a zone. By changing the Zone Strength Filter, you can display zones that have not breached the filter % you select. For example, if you choose 80% Zone Strength, that means it will only show zones that are 20% filled or less; in other words, zones that have 80% or more yet to be filled.
0 = All Zones
100 = Completely unused zones
With these advanced filters and plotting on multiple timeframes, we have created the best Supply and Demand Indicator . In addition, these filters help to eliminate insignificant zones and noise in the market, leaving us a clean chart.
█ Potentials
Potentials foreshadow the possibility of a Supply or Demand Zone forming, the possibility of a Trapped concept, and it works great as targets or influence in our trades.
Potentials are calculated by the same Order Block concept, which allows us to see Supply & Demand/Order Blocks forming in real-time.
When a potential is triggered and holds, the line turns solid. If it continues to hold, it has the potential of forming a Supply/Demand zone based on the trader's Zone Filters. If the price pulls back and fails to hold, it will go back to dotted. Inferring it used the potential as liquidity and is potentially trapping market participants at that potential.
█ How To Use:
Supply and Demand Zones are the ‘Where’ to our trade but not the ‘Why.’ This means that the zones are our POI (Point of Interest) and ‘Where’ we want to be looking for a trade. It is not our ‘Why’ because we do not enter just because we are in a zone. This is because we expect pivots or reversals inside our Supply & Demand zones, and this rarely happens quickly.
What we want to look for in our zones is a solid base for our reversals. Simply put, we want to see new demand forming at our Demand Zones and new supply forming at our Supply Zones. This can be achieved by observing the ‘Potentials’ feature which allows us to see new Order Blocks or ‘Base Candles’ forming. With a trained eye, the ‘Potentials’ feature is highly effective in addition to its ‘Trapped’ logic which can offer entries on their own. The "Trapped" label on potentials shows potential trapped buyers or sellers after we reach that level. Observing and understanding how price action facilitates, especially around the zones, is crucial to its usability. In addition, other strategies or indicators can be used in confluence to support bounces out of demand and rejections out of supply.
Ultimately once we find a viable entry, we want to see a complete cycle. For example, if we caught a bounce out of demand with new demand forming, we would want to see the cycle complete and us reach the next supply or manufacture new supply. The ‘Potentials’ feature is the easiest way to gather multiple targets and at the same time offers stop loss management.
█ Settings:
Enable Supply/Demand/ Zones and Potential Liquidity
STF S&D Zones - Enables 5 minute and 15 minute timeframe for zones
LTF S&D Zones - Enables 30 minute and 1 hour timeframe for zones
HTF S&D Zones - Enables 2 hour, 3 hour, and 4 hour timeframe for zones
Daily S&D Zones - Enables Daily timeframe for zones
Enable Potentials
Supply Demand Zone Models
Range - Filters zones based on the range of candles before supply/demand
Displacement - Filters zones based on the displacement of the breakout candle
Range + Displacement - Filters zones based on the displacement of breakout candle and range of the candles before supply/demand
Supply Demand Zone Filters (see “Supply and Demand Zones” section for usage)
Range Multiplier
True Range Index
Displacement Sensitivity
Zone Strength Filter %
Deletion Conditions
Confirmed - Deletes zone upon time-frame close above supply or below demand
On Break - Deletes zone upon break above the top of supply or break below bottom of demand
On Tap - Deletes zone upon the touch of supply or demand
Other Settings
Price Labels - Turns on Zone Price Levels
Supply/Demand Color Input - Customize color of zones to your liking
Supply Demand Border Width - Change the border width of zones (0 would be completely borderless zones)
Supply Demand Transparency - Change transparency of zones (0 is completely solid zones, 100 is completely transparent)
Transparency Input - "Normal" Transparency stays at the level that's set; "Decrease with price" as price moves through, the zones become more transparent
Default Color - Changes color of any text/labels (default is gray)
Text size - Change size of text on labels
DB Change Forecast ProDB Change Forecast Pro
What does the indicator do?
The DB Change Forecast Pro is a unique indicator that uses price change on HLC3 to detect buy and sell periods along with plotting a linear regression price channel with oversold and undersold zones. It also has a linear regression change forecast mode to optionally project market direction.
Change is calculated by taking a two-bar change of HLC3 and dividing that by the price or, optionally, a fixed divisor.
A fast-moving change cloud is then calculated and displayed as the "regular version" plot (shown in light gray). When the cloud bottom is above low, a buy zone is detected. When the cloud top is below the high, a sell zone is detected.
The linear regression price channel is calculated similarly but using a much slower change rate. The linear regression price channel shows reasonable high, low and HLC3 ranges. At the bar's opening, the channel will be more compact and come fairly accurate about 1/4 into the bar timeframe.
The change forecasted price is projected on the right side of the current bar to indicate the current timeframe direction. Please note this forecasting feature is shown in orange when it's early in the timeframe and gray when the timeframe is more likely to produce an accurate direction forecast for the upcoming bar.
You can use these projected dashed lines to see possible market movements for the Current bar and possible market direction for the next bar. Kindly note these projects change; they should be used to understand possible extreme highs/lows for the current bar or market direction.
The indicator includes an optional change forecast projection feature hidden by default. It will project the market forecast channel with an offset of 1. The forecast is defaulted to an offset of 1 to show market direction. However, you can modify to zero the offset to show the current bar forecast and forecast history.
How should this indicator be used?
First, very important,
1. Settings > Set Symbol to Desired
2. Settings > Set High Timeframe to "Chart"
3. Settings > Ensure "Use price as divisor" is checked.
It's recommended to use this indicator in higher timeframes. Buy and sell signals are displayed in real-time. However, waiting until 1/4 to 1/2 into the current bar is recommended before taking action, and change can happen.
The buy/sell signals (zones) provide recommendations on playing a long vs. a short. When in a buy sone, only play longs. When in a sell zone, only play shorts.
Then use the linear regression price channel oversold and undersold zones to optionally open and close positions within the buy/sell zones.
For example, consider opening a long in a buy zone when the linear regression price channel shows undersold. Then consider closing the long when the price moves into the linear regression oversold or higher. Then repeat as long as it's in the buy zone. Then vice versa for sell zones and shorting.
At basic design, buy in the buy zone, sell or short in the sell zone. If you are up for higher trading frequencies, use the linear regression price channel as described in the example above.
Please note, as, with all indicators, you may need to adjust to fit the indicator to your symbol and desired timeframe.
This is only an example of use. Please use this indicator as your own risk and after doing your due diligence.
Does the indicator include any alerts?
Yes,
"DB CFHLC3: Signal BUY" - Is triggered when a buy signal is fired.
"DB CFHLC3: Signal SELL" - Is triggered when a sell signal is fired.
"DB CFHLC3: Zone BUY" - Is triggered when a buy zone is detected.
"DB CFHLC3: Zeon SELL" - Is triggered when a sell zone is detected.
"DB CFHLC3: Oversold SELL" - Is triggered when the price exceeds the oversold level.
"DB CFHLC3: Undersold BUY" - Is triggered when the price goes below the undersold level.
Any other tips?
Once you have configured the indicator for your symbol and chart timeframe. Meaning the plots are displayed over the price. Check out larger timeframes such as W, 2W, 3W, 4W, M, and 4M. It works wonderfully for showing market lows and highs for long-term investing too!
Another, tip is to combine it with your favorite indicator, such as TTM Squeeze or MACD for confirmation purposes. You may be surprised how fast the indicator shows market direction changes on higher timeframes.
You can just as easily use a high timeframe such as D, 2D, or 3D for day trading due to how the linear price channel works.
Why am I not selling this indicator?
I would like to bless the TradingView community, and I enjoy publishing custom indicators.
If you enjoy this indicator, please consider leaving a thumbs up or a comment for others to know about your experience or recommendations.
Enjoy!
Jimmy's Dikfat DaytraderThis Day Trading Indicator applies the use of multiple techniques designed to maximize profits and trade success probability while utilizing proprietary mathematical techniques to calculate specific high probability Pivot Points, Break of Structure, Supply and Demand, previous days High and Low, Liquidity Hunts, Dynamic Trend Lines and Fibonacci Discount Zones. The combination of these techniques combined with unique mathematical calculation & variance allow the user to make an informed analysis to take high probability trades by exposing Market Maker discount zones and highlight smart money purchasing.
Pivot Points: A traditional pivot point is described as an individual candle high that is higher than the previous two candles to the left and forward two candles to the right. Likewise a pivot is also an individual candle low that is lower than the previous two candles to the left and forward two candles to the right. In this indicator standard pivots are highlighted as yellow and white candles. Yellow candles are High or Top Pivots; White Candles are Low or Bottom Pivots. The number of pivots checked for either left or right or both can be changed in the settings. Increasing this value will add more pivot points to the chart, decreasing this value will add less. It is recommended to change values left and right with the same number.
Note: In this study, all traditional pivots will be highlighted by yellow or white for the advanced user, but not all pivot markers will highlight all pivots for the purposes of identifying a high probability trade.
Break of Structure: Break of structure occurs when current price drops below or likewise rises above a pivot point. For the purposes of this study, a break of structure tag will appear over a previous pivot tag ONLY when there is a candle close below or above the previous pivot for the purposes of identifying liquidity hunts and high probability trades. As you will note in the example chart, break of structure is used to determine not only trend but high probability trade areas by identifying market structure. Unbroken pivot highs or lows can be used to take trades, with a stop below the low (or above the high) of the unbroken pivot candle. BOS (Break of Structure) Tags will effectively show where market participants do not want to take a trade and be chopped up in a market that is trending only 30% of the time. BOS also gives future indication of where the Market Makers are taking price action. Breaks of structure in a particular direction typically indicate a continuation of price action in that direction. Trade opportunities occur after the pullback in the opposite direction of break of structure. This highlights areas traders can take on the pullback, in the direction of structure breaks, typically on unbroken pivots.
Note: In this study, not all BOS (Break of Structure) markers will highlight all breaks of structure for the purposes of identifying a high probability trade. Some very few examples of structure is not marked as broken to assist in identifying Liquidity Hunts.
Liquidity Hunt: A Liquidity Hunt is where price action moves in the opposite direction of an intended move (typically with high magnitude and velocity) to gather "Liquidity" and trigger stops created by traders caught in the break of structure zone. Any unbroken pivot is a relevant area of Liquidity. Some of the High probability areas of Liquidity will be found at Equal (or near equal) Lows or Equal High pivots. Current areas of Liquidity are marked on the chart as an Aqua (Light Blue) Background line that extends right infinitely. Once Liquidity has been taken at one of these lines, the Line will "Break" And stop displaying forward. The number of pivots calculated specifically for break of structure and Liquidity Hunts can be changed under the Liquidity Hunt setting. Much like with pivots, it is recommended to change these numbers with the same value for best results.
Due to the complexity of the math, Some liquidity pivots will only confirm and display a pivot tag after twice the candles defined have been found to the left and right under liquidity hunt settings, and some will display after the exact number specified in settings. As noted previous some will not display at all due to the high probability nature of this indicator and having been found as a "cluster" in the Supply and Demand Boxes.
Supply and Demand Boxes: Supply and Demand boxes will be created when a specific number of pivots are found in succession or in a "cluster" and a box will be drawn from the current grouping of pivots, first pivot high to the nearest pivot low in the cluster. This unique style of supply and demand box drawing has been proven to be an effective identifier of buying and selling in the price action, or likewise support or resistance upon return to these boxes. The boxes were specifically designed to identify high probability areas of Supply and Demand and are more likely to be areas of high probability buying and selling. Supply is when price action moves into or creates an area where sellers are waiting. Demand is when price action moves into or creates an area where Buyers are waiting. When price action creates a box, the box will remain Neutral with a white color while Price action remains within the box. This box will turn Red or into a Supply Box, when price action drops below the box boundaries. The box will likewise turn Green or into a Demand Box, when price action rises above the box boundaries. Any return to a colored box from the direction it was created could be anticipated as a retracement to continue in the direction of price action indicated by the box.
In the settings boxes can be extended to the current bar right to show previous areas of supply and demand, or can be left "Truncated" or in box form as a highlighter for cluster analysis.
Previous Days High and Low: The previous days High and low will be displayed on the current day as a magenta line. Some traders use these lines to anticipate price action on the day compared to where price action is moving relative to the previous day. Historical Magenta lines are also the marked on a specific day, for the previous days High and low. Historical Lines can be turned off by reducing Opacity of the setting to Zero, leaving only the previous days high and low on the current day.
Dynamic Trend Lines: Trend Lines will be created automatically that will connect unbroken pivots and extend right, highlighting the current trend. (Coming Soon™️)
Fibonacci Discount Zone: The Fibonacci Discount Zone can be found by measuring an unbroken pivot High or Low, that breaks structure left to create a new High or Low. When structure is broken and price begins a retracement before moving back in the direction of the broken structure, the retracement is typically back into the "Discount Zone" between the 618 and 786 Fibonacci zone. This zone will be automatically plotted as a light grey box in the background of the chart. (Coming Soon™️)
LuxAlgo® - Price Action Concepts™Price Action Concepts™ is a first of it's kind all-in-one indicator toolkit which includes various features specifically based on pure price action.
Order Blocks w/ volume data, real-time market structure (BOS, CHoCH, EQH/L) w/ 'CHoCH+' being a more confirmed reversal signal, a MTF dashboard, Trend Line Liquidity Zones (real-time), Chart Pattern Liquidity Zones, Liquidity Grabs, and much more detailed customization to get an edge trading price action automatically.
Many traders argue that trading price action is better than using technical indicators due to lag, complexity, and noisy charts. Popular ideas within the trading space that cater towards price action trading include "trading like the banks" or "Smart Money Concepts trading" (SMC), most prominently known within the forex community.
What differentiates price action trading from others forms of technical analysis is that it's main focus is on raw price data opposed to creating values or plots derived from price history.
Mostly all of the features within this script are generated purely from price action, more specifically; swing highs, swing lows, and market structure... which allows users to automate their analysis of price action for any market / timeframe.
🔶 FEATURES
This script includes many features based on Price Action; these are highlighted below:
Market structure (BOS, CHoCH, CHoCH+, EQH/L) (Internal & Swing) multi-timeframe
Volumetric Order Blocks & mitigation methods (bullish & bearish)
Liquidity Concepts
Trend Line Liquidity Zones
Chart Pattern Liquidity
Liquidity Grabs Feature
Imbalance Concepts MTF w/ multiple mitigation methods
Fair Value Gaps
Balanced Price Range
Activity Asymmetry
Strong/Weak Highs & Lows w/ volume percentages
Premium & Discount Zones included
Candle Coloring based on market structure
Previous Highs/Lows (Daily, Monday's, Weekly, Monthly, Quarterly)
Multi-Timeframe Dashboard (15m, 1h, 4h, 1d)
Built-in alert conditions & Any Alert() Function Call Conditions
Advanced Alerts Creator to create step-by-step alerts with various conditions
+ more (see changelog below for current features)
🔶 BASIC DEMONSTRATION
In the image above we can see a demonstration of the market structure labeling within this indicator. The automatic BOS & CHoCH labels on top of dashed lines give clear indications of breakouts & reversals within the internal market structure (short term price action). The "CHoCH+" label is also demonstrated as it triggers only if price has already made a new higher low, or lower high.
We can also see a solid line with a larger BOS label in the middle of the chart. This label demonstrates a break of structure taking into account the swing market structure (longer term price action). All of these labels are generated in real-time.
🔶 USAGE & EXAMPLES
In the image below we can see how a trade setup could be created using Order Blocks w/ volume metrics to find points of interest in the market, swing / internal market structure to get indications of longer & shorter term reversals, and trend line liquidity zones to find more likely impulses & breakouts within trends.
We can see in the next image below that price came down to the highest volume order block marked out previously as our point of interest for an entry used in confluence with the overall market structure being bullish (swing CHoCH). Due to price closing below the middle Order Block at (24.77%), we saw it was mitigated, and then price revisited liquidity above the Trend Line zone above, leading us to the first Order Block as a target.
You will notice the % values adjust as Order Blocks are touched & mitigated, aligning with the correct volume detected when the Order Block was established.
In the image below we can see more features from within Price Action Concepts™ indicator, including Chart Pattern Liquidity, Fair Value Gaps (one of many Imbalance Concepts), Liquidity Grabs, as well as the primary market structures & OBs.
By using multiple features as such, users can develop a greater interpretation of where liquidity rests in the market, which allows them to develop trading plans a lot easier. Liquidity Grabs are highlighted as blue/red boxes on the wicks during specific price action that indicates the market has made an impulse specifically to take out resting buy or sell side orders.
We can notice in the trade demonstrated below (hindsight example) how price often moves to the areas of the most liquidity, even if unexpected according to classical technical analysis performed by retail traders such as chart patterns. Wicks to take out orders above & potentially trap traders are much more noticeable with features such as these.
The Chart Patterns which can be detected include:
Ascending/Descending Wedges (Asc/Desc Wedge)
Ascending/Descending Broadening Wedges (Asc/Desc BW)
Ascending/Descending/Symmetrical Triangles (Asc/Desc/Sym Triangle)
Double Tops/Bottoms (Double Top/Double BTM)
Head & Shoulders (H&S)
Inverted Head & Shoulders (IH&S)
General support & resistance during undetected patterns
In the image below we can see more features from within the indicator, including Balanced Price Range (another imbalance method similar to FVG), Market Structure Candle Coloring, Accumulation & Distribution zones, Premium & Discount zones w/ a percentage on each zone, the MTF dashboard, as well as the Previous Daily Highs & Lows (one of many highs/lows) displayed on the chart automatically.
The colored candles use more specific market structure analysis, specifically allowing users to visualize when trends are considered "normal" or "strong". By utilizing other features alongside this market structure analysis, such as noticing price retesting the PDL level + the Equilibrium as resistance, a Balanced Price Range below price, the discount with a high 72% metric, and the MTF dashboard displaying an overall bearish structure...
...users can instantly gain a deeper interpretation of price action, make highly confluent trading plans while avoiding classical technical indicators, and use traditional retail trading concepts such as chart patterns / trend lines to their advantage in finding logical areas of liquidity & points of interest in the market.
The image below shows the previous chart zoomed in with 2 liquidity concepts re-enabled & used alongside a new range targeting the same Discount zone.
🔶 SETTINGS
Market Structure Internal: Allows the user to select which internal structures to display (BOS, CHoCH, or None).
Market Structure Swing: Allows the user to select which swing structures to display (BOS, CHoCH, or None).
MTF Scanner: See market structure on various timeframes & how many labels are active consecutively.
Equal Highs & Lows: Displays EQH / EQL labels on chart for detecting equal highs & lows.
Color Candles: Plots candles based on the internal & swing structures from within the indicator on the chart.
Order Blocks Internal: Enables Internal Order Blocks & allows the user to select how many most recent Internal Order Blocks appear on the chart as well as select a color.
Order Blocks Swing: Enables Swing Order Blocks & allows the user to select how many most recent Swing Order Blocks appear on the chart as well as select a color.
Mitigation Method: Allows the user to select how the script mitigates an Order Block (close, wick, or average).
Internal Buy/Sell Activity: Allows the user to display buy/sell activity within Order Blocks & decide their color.
Show Metrics: Allows the user to display volume % metrics within the Order Blocks.
Trend Line Liquidity Zones: Allows the user to display Trend Line Zones on the chart, select the number of Trend Lines visible, & their colors.
Chart Pattern Liquidity: Allows the user to display Chart Patterns on the chart, select the significance of the pattern detection, & their colors.
Liquidity Grabs: Allows the user to display Liquidity Grabs on the chart.
Imbalance Concepts: Allows the user to select the type of imbalances to display on the chart as well as the styling, mitigation method, & timeframe.
Auto FVG Threshold: Filter out non-significant fair value gaps.
Premium/ Discount Zones: Allows the user to display Premium, Discount , and Equilibrium zones on the chart
Accumulation / Distribution: Allows the user to display accumulation & distribution consolidation zones with an optional Consolidation Zig-Zag setting included.
Highs/Lows MTF: Displays previous highs & lows as levels on the chart for the previous Day, Monday, Week, Month, or quarter (3M).
General Styling: Provides styling options for market structure labels, market structure theme, and dashboard customization.
Any Alert() Function Call Conditions: Allows the user to select multiple conditions to use within 1 alert.
🔶 CONCLUSION
Price action trading is a widely respected method for its simplicity & realistic approach to understanding the market itself. Price Action Concepts™ is an extremely comprehensive product that opens the possibilities for any trader to automatically display useful metrics for trading price action with enhanced details in each. While this script is useful, it's critical to understand that past performance is not necessarily indicative of future results and there are many more factors that go into being a profitable trader.
🔶 HOW TO GET ACCESS
You can see the Author's instructions below to get instant access to this indicator & our premium suite.
Rapid ICT Suite - MTF Concepts & iFVGTitle: Rapid ICT Suite - MTF Concepts & iFVG
Overview
Unlock a new level of market analysis with the Rapid ICT Suite, a comprehensive, all-in-one indicator designed for the discerning price action trader. This powerful tool merges two distinct analytical engines into one seamless experience, allowing you to overlay critical Higher Timeframe (HTF) market structure onto your current chart while simultaneously tracking real-time Fair Value Gaps (FVGs) and their inversions (iFVGs).
Whether you are a scalper needing to respect 1H structure, a day trader aligning with the 4H bias, or a swing trader mapping the daily trend, this indicator provides the clarity and context you need to make higher-probability trading decisions. It was built from the ground up to solve common issues traders face, delivering stable, precise, and flexible analysis.
The Strategy: Targeting IRL with iFVG Entries
The Destination (The "Why"): Internal Range Liquidity (IRL)
On a Higher Timeframe (HTF), we will identify major Internal Range Liquidity (IRL) zones. In the context of ICT, IRL simply refers to unmitigated Fair Value Gaps (FVGs) that exist within a broader trading range.
These HTF FVGs act as powerful magnets for price. The market will often seek out these zones to rebalance before continuing its next major move. By plotting these on our chart, we establish a clear directional bias and a high-probability target. Our indicator will now label these HTF FVG boxes as "IRL".
The Entry Signal (The "How"): Inverted Fair Value Gaps (iFVG)
Once we have our HTF IRL target, we drop down to our Lower Timeframe (LTF) for execution.
We wait for price to create an Inverted Fair Value Gap (iFVG). An iFVG is a regular FVG that has failed and been traded through, signifying a shift in momentum.
An iFVG appearing on the LTF provides a high-precision entry signal to take a trade in the direction of the HTF IRL zone. It's our confirmation that the market is likely now making its move towards that destination.
Key Features
Multi-Timeframe Order Blocks (Boxes): Automatically identify and plot key HTF demand and supply zones (Order Blocks) onto your chart.
Multi-Timeframe Fair Value Gaps (Boxes): See where HTF imbalances exist, giving you a clear map of institutional reference points and potential targets.
Multi-Timeframe Liquidity Pools (Boxes): Pinpoint where buy-side and sell-side liquidity is likely resting, based on clusters of old highs and lows.
Current Timeframe FVG & iFVG (Lines/Labels): A second, independent engine tracks FVGs on your chosen timeframe, monitors them for mitigation, and automatically identifies when an FVG has been inverted (iFVG), a crucial shift in market dynamics.
The "Rapid" Advantage: Solving Trader Frustrations
This indicator was engineered to overcome three of the most common problems with technical indicators:
1. ✅ No More Flickering or "Ghost" Signals
The Problem: Many indicators show signals on the live, forming candle. This causes zones or signals to appear and disappear ("flicker"), leading to confusion and false entries.
The Solution: The Rapid ICT Suite uses 100% confirmed, closed-candle data for all its calculations (OB, FVG, and Liquidity). A zone will only appear on your chart after the price action that confirms it is complete. This means every signal is stable, reliable, and non-repainting.
2. ✅ Frame-Perfect, Precise Placement
The Problem: Indicators that use lookback logic often draw their signals one candle too late, causing a visual disconnect between the price pattern and the signal itself.
The Solution: We have corrected this common flaw. Every box and line is drawn starting from the exact confirmation candle of the pattern. This frame-perfect precision is critical for accurate analysis and planning your entries.
3. ✅ The Dual Analysis Engine: Uncluttered & Flexible
The Problem: Trying to analyze multiple timeframes at once can lead to cluttered charts and mental overload .
The Solution: This suite contains two independent parts that you can control separately.
Part 1 gives you the macro context—the HTF structure where big moves originate.
Part 2 gives you the micro details—the real-time FVG and iFVG story on your trading timeframe.
Use them together for a complete picture, or toggle one off to focus on a specific aspect of your strategy. This flexibility keeps your workspace clean and your analysis sharp.
How to Use & Settings Explained
The indicator settings are neatly organized into two main parts.
Part 1: MTF Concepts (OB, FVG, Liq)
This section controls the Higher Timeframe boxes that are overlaid onto your current chart.
Higher-TF for OB/FVG/Liq: This is the most important setting. Select the higher timeframe you want to analyze. For example, if you are trading on the 15-minute chart, you might set this to 240 (4-Hour) to see the key 4H zones.
Show Order-Blocks / FVGs / Liquidity: Simple toggles to turn each type of HTF zone on or off.
Max... Count: Controls how many of the most recent zones are displayed on the chart, preventing clutter from old, irrelevant zones.
Part 2: FVG & iFVG (Lines/Labels)
This section controls the second engine, which analyzes FVGs and iFVGs on its own selected timeframe.
Timeframe for FVG/iFVG: Choose the timeframe for this analysis. You can leave it blank to use your current chart's timeframe, or set it to a specific one.
Mitigation Type & Mitigation %: A powerful feature to define when an FVG is considered "used up."
Type: Choose if mitigation is counted from the candle's Wick or Close.
Percent: Set how far price must retrace into an FVG (e.g., 50%) before it is considered mitigated and the lines are removed from your chart.
FVG/iFVG Count: Controls how many of the most recent FVG/iFVG zones are displayed.
Style & Color Settings: Fully customize the appearance of the lines and labels to match your chart theme.
Final Words
This indicator was built to provide actionable clarity. By understanding the interplay between higher-timeframe structure and current price action, you can significantly enhance your trading edge. Thank you for choosing the Rapid ICT Suite.
Happy trading!
Dynamic Volume Clusters with Retest Signals (Zeiierman)█ Overview
The Dynamic Volume Clusters with Retest Signals indicator is designed to detect key Volume Clusters and provide Retest Signals. This tool is specifically engineered for traders looking to capitalize on volume-based trends, reversals, and key price retest points.
The indicator seamlessly combines volume analysis, dynamic cluster calculations, and retest signal logic to present a comprehensive trading framework. It adapts to market conditions, identifying clusters of volume activity and signaling when the price retests critical zones.
█ How It Works
⚪ Volume Cluster Detection
The indicator dynamically calculates volume clusters by analyzing the highest and lowest price points within a specified lookback period.
Cluster Logic:
Bright Lines (Strong Red/Green):
These indicate that the price has frequently revisited these levels, creating a dense cluster.
Such areas serve as support or resistance, where significant historical trading has occurred, often acting as barriers to price movement.
Traders should consider these levels as potential reversal zones or consolidation points.
Faded or Darker Lines:
These lines indicate areas where the price has less historical activity, suggesting weaker clustering.
These zones have less market memory and are more likely to break, supporting trend continuation and rapid price movement.
⚪ Candle Color Logic (Market Memory)
Blue Candles (High Cluster Density):
Candles turn blue when the price has revisited a particular area many times.
This signals a highly clustered zone, likely to act as a barrier, creating consolidation or range phases.
These areas indicate strong market memory, potentially rejecting price attempts to break through.
Green or Red Candles (Low Cluster Density):
Once the price breaks out of these dense clusters, the candles turn green (bullish) or red (bearish).
This suggests the price has moved into a less clustered territory, where the path forward is clearer and trends are likely to extend without immediate resistance.
⚪ Retest Signal Logic
The indicator identifies critical retest points where the price crosses a cluster boundary and then reverses. These points are essential for traders looking to catch continuation or reversal setups.
⚪ Dynamic Price Clustering
The indicator dynamically adapts the clustering logic based on price movement and volume shifts.
Uses a dynamic moving average (VPMA) to maintain adaptive cluster levels.
Integrates a Kalman Filter for smoothing, reducing noise, and improving trend clarity.
Automatically updates as new data is received, keeping the clusters relevant in real-time.
█ How to Use
⚪ Trend Following & Reversal Detection
Use Retest signals to identify potential trend continuation or reversal points.
⚪ Trading Volume Clusters and Market Memory
Identify Key Zones:
Focus on bright, saturated cluster lines (strong red or green) as they indicate high market memory, where price has spent significant time in the past.
These zones are likely to exhibit a more choppy market. Apply range or mean reversion strategies.
Spot Potential Breakouts:
Faded or darker cluster lines indicate areas of low market memory, where the price has moved quickly and spent less time.
Use these areas to identify possible trend setups, as they represent lower resistance to price movement.
⚪ Interpreting Candle Colors for Market Phases
Blue Candles (High Cluster Density):
When candles turn blue, it signals that the price has revisited this area multiple times, creating a dense cluster.
These zones often trap price movement, leading to consolidations or range phases.
Use these areas as caution zones, where price can slow down or reverse.
Green or Red Candles (Low Cluster Density):
Once the price breaks out of these clustered zones, the candles turn green (bullish) or red (bearish), indicating lower market memory.
This signals a trend initiation with less immediate resistance, ideal for momentum and breakout trades.
Use these signals to identify emerging trends and ride the momentum.
█ Settings
Range Lookback Period: Sets the number of bars for calculating the range.
Zone Width (% of Range): Determines how wide the volume clusters are relative to the calculated range.
Volume Line Colors: Customize the appearance of bullish and bearish lines.
Retest Signals: Toggle the appearance of Triangle Up/Down retest markers.
Minimum Bars for Retest: Define the minimum number of bars required before a retest is valid.
Maximum Bars for Retest: Set the maximum number of bars within which a retest can occur.
Price Cluster Period: Adjusts the sensitivity of the dynamic clustering logic.
Cluster Confirmation: Controls how tightly the clusters respond to price action.
Price Cluster Start/Peak: Sets the minimum and maximum touches required to fully form a cluster.
-----------------
Disclaimer
The content provided in my scripts, indicators, ideas, algorithms, and systems is for educational and informational purposes only. It does not constitute financial advice, investment recommendations, or a solicitation to buy or sell any financial instruments. I will not accept liability for any loss or damage, including without limitation any loss of profit, which may arise directly or indirectly from the use of or reliance on such information.
All investments involve risk, and the past performance of a security, industry, sector, market, financial product, trading strategy, backtest, or individual's trading does not guarantee future results or returns. Investors are fully responsible for any investment decisions they make. Such decisions should be based solely on an evaluation of their financial circumstances, investment objectives, risk tolerance, and liquidity needs.
RunRox - Entry Model🎯 RunRox Entry Model is an all-in-one reversal-pattern indicator engineered to help traders accurately identify key price-reversal points on their charts. It will be part of our premium indicator package and improve the effectiveness of your trading strategies.
The primary concept of this indicator is liquidity analysis, making it ideal for Smart Money traders and for trading within market structure. At the same time, the indicator is universal and can be integrated into any strategy. Below, I will outline the full concept of the indicator and its settings so you can better understand how it works.
🧬 CONCEPT
In the screenshot below, I’ll schematically illustrate the core idea of this indicator. It’s one of the patterns that the indicator automatically detects on the chart using a two-timeframe approach. We use the higher timeframe to identify liquidity zones, and the lower timeframe to capture liquidity removal and structure breaks. The schematic is shown in the screenshot below.
Our indicator includes three entry models in total , and I will discuss its functionality and features in more detail later in this post.
💡 FEATURES
Three entry models
PO3 HTF Bar
Entry Area
Optimization for each Entry Area
Filters
HTF FVG
Alert customization
Next, we will examine each entry model in detail.
🟠 ENTRY MODEL 1
The first model is the core one we’ll work with; all other models rely on its structure and construction. In the screenshot below, I’ll schematically show the complete model.
As shown in the screenshot above, we display higher-timeframe candles on the current chart to better visualize the entry model and keep the trader informed of what’s happening on the larger timeframe. The screenshot also highlights both the Long and Short models, as well as the Entry Area, which I will explain in more detail below.
The schematic model on the lower timeframe is shown in the screenshot above. It illustrates that after the Entry Model forms, we draw the Entry Area on the next candle and wait for a price pullback into this zone for the optimal trade entry. Statistically, before moving higher, the price typically revisits the Entry Area, covering the imbalances created by MSS; thus, the Entry Area represents the ideal entry point.
🟩 Entry Area
Once the Entry Model has formed, we focus on identifying the optimal pullback zone for taking a position. To determine which retracement area performs best, we conducted extensive historical backtesting on potential zones and selected those that consistently delivered the strongest results. This process yields Entry Areas with the highest probability of a successful reversal.
On the screenshot above, you can see an example of the Entry Area and which zones carry a higher versus lower probability of reversal. Zones rendered with greater transparency have historically delivered weaker results than the more opaque zones. The deeper-colored areas represent the optimal entry zones and can improve your risk-reward ratio by allowing you to enter at more favorable prices.
It’s important to remember that the entire Entry Area functions as a potential zone for scaling into a position. However, if your risk-to-reward ratio isn’t favorable, you can wait for the price to retrace to lower levels within the Entry Area and enter with a more attractive risk-to-reward.
🟢 Pattern Rating
Each entry model receives a rating in the form of green circles next to its name 🟢. The rating ranges from one to four circles, based on the historical performance of similar patterns. To calculate this rating, we backtest past data by analyzing candle behavior during the model’s formation and assign circles according to how similar patterns performed historically.
Example Ratings:
🟢 – One circle
🟢🟢 – Two circles
🟢🟢🟢 – Three circles
🟢🟢🟢🟢 – Four circles
The more green circles a model has, the more reliable it is—but it’s crucial to rely on your own analysis when identifying strong reversal points on the chart. This rating reflects the model’s historical performance and does not guarantee future results, so keep that in mind!
Below is a screenshot showing four model variations with different ratings on the chart.
⚠️ Unconfirmed Pattern
Entry Model 1 is designed so that, until the higher-timeframe candle closes, the pattern remains unconfirmed and is hidden on the chart. For traders who prefer to see setups as they form, there’s a dedicated feature that displays the unconfirmed pattern at the moment of its appearance - triggered by the Market Structure Shift - before the HTF candle closes. The screenshot below shows what the pattern looks like prior to confirmation.
‼️IMPORTANT: Until the pattern is confirmed and the higher-timeframe candle has closed, the model may disappear from the chart if price reverses and the HTF candle closes below the previous bar. Therefore, this mode is suitable only for experienced traders who want to see market moves in advance. Remember that the pattern can be removed from the chart, so we recommend waiting for the HTF candle to close before deciding to enter a trade.‼️
✂️ Filters
For the primary model, there are four filters designed to enhance entry points or exclude less-confirmed patterns. The filters available in the indicator are:
Bounce Filter
Market Shift Mode
Same Wave Filter
Only with Divergence
I will explain how each of these filters works below.
- Bounce Filter
The Bounce Filter identifies significant deviations of price from its mean and only displays the Entry Model once the asset’s price moves beyond the average level. The screenshot below illustrates how this appears on the chart.
The actual average-price calculation is more sophisticated than what’s shown in the screenshot, that image is just an illustrative example. When the price deviates significantly from the N-bar average, we start looking for the Entry Model. This approach works particularly well in range-bound markets without a clear trend, as it lets you trade strong deviations from the mean.
- Market Shift Mode
This filter works by detecting the initial impulse that triggered the liquidity sweep on the previous higher-timeframe candle, and then holding the Market Structure Shift level at that point after the sweep. If the filter is turned off, price may move higher following the liquidity removal, creating a new MSS level and potentially producing a false structure shift and entry signal on the formed model.
This filter helps you more accurately identify genuine shifts - but keep in mind that the model can still perform well without it, so choose the setting that best suits your trading style.
- Same Wave Filter
The Same Wave Filter removes entry models that form without a clear lower-timeframe structure when liquidity is swept from the previous higher-timeframe candle. In other words, if the prior HTF candle and the current one belong to the same impulse wave - without any retracements on the LTF - the model is filtered out.
Keep in mind that this filter may also exclude patterns that could have produced positive results, so whether to enable it depends on your trading system.
- Only with Divergence
The Only with Divergence filter detects divergence between the lows of successive candles and indicators like RSI. When the low that swept liquidity diverges from the previous candle’s low, the indicator displays a “DIV” label. Although RSI is cited as an example, our divergence calculation is more advanced. This filter highlights patterns where low divergence signals genuine liquidity manipulation and a likely aggressive price reversal.
🌀 Model Settings
Trade Direction: Choose whether to display models for Long or Short trades.
Fractal: Select between automatic fractal detection—which adapts the lower-timeframe (LTF) and higher-timeframe (HTF) candles—or Custom.
Custom Fractal: When Custom is selected, manually specify the LTF and HTF timeframes used to detect the patterns.
History Pattern Limit: Set the maximum number of patterns to display on the chart to keep it clean and uncluttered.
🎨 Model Style
You can flexibly customize the model’s appearance by choosing your preferred line thickness, color, and the other settings we discussed above.
🔵 ENTRY MODEL 2
This model appears under specific conditions when Model 1 cannot form. It’s a price-reversal model constructed according to different rules than the first model. The screenshot below shows how it looks on the chart.
This model forms less frequently than Model 1 but delivers equally strong performance and is displayed as a position-entry zone.
Like the Entry Area in Entry Model 1, this zone is calculated automatically and highlights the best entry levels: areas that showed the strongest historical results are rendered in a brighter shade.
🎨 Model Style
You can flexibly customize the style of Entry Model 2 - its color, opacity, visibility, and the average price of the previous candle.
🟢 ENTRY MODEL 3
Entry Model 3 is a continuation pattern that only forms after Entry Model 1 has completed and delivered the necessary price move to trigger Model 3.
Below is a schematic illustration of how Model 3 is intended to work.
🎨 Model Style
As with the previous models, you can flexibly customize the style of this zone.
⬆️ HTF CANDLES
One of the standout features of this indicator is the ability to plot higher-timeframe (HTF) candles directly on your lower-timeframe (LTF) chart, giving you clear visualization of the entry models and insight into what’s unfolding on the larger timeframe.
You can fully customize the HTF candles - select their style, the number of bars displayed, and tweak various settings to match your personal trading style.
HTF FVG
Fair Value Gaps (FVGs) can also be drawn on the HTF candles themselves, enabling you to spot key liquidity or interest zones at a glance, without switching between timeframes.
Additionally, you can view all significant historical HTF highs and lows, with demarcation lines showing where each HTF candle begins and ends.
All these options let you tailor the HTF candle display on your chart and monitor multiple timeframes’ trends in a single view.
📶 INFO PANEL
Instrument: the market symbol on which the model is detected
Fractal Timeframes: the LTF and HTF fractal periods used to locate the pattern
HTF Candle Countdown: the time remaining until the higher-timeframe candle closes
Trade Direction: the direction (Long or Short) in which the model is searched for entry
🔔 ALERT CUSTOMIZATION
And, of course, you can configure any alerts you need. There are seven alert types available:
Confirmed Entry Model 1
Unconfirmed Entry Model 1
Confirmed Entry Model 2
Confirmed Entry Model 3
Entry Area 1 Trigger
Entry Area 2 Trigger
Entry Area 3 Trigger
You also get a custom macro field where you can enter any placeholders to fully personalize your alerts. Below are example macros you can use in that field.
{{event}} - Event name ('New M1')
{{direction}} - Trade direction ('Long', 'Short')
{{area_beg}} - Entry Area Price
{{area_end}} - Entry Area Price
{{exchange}} - Exchange ('Binance')
{{ticker}} - Ticker ('BTCUSD')
{{interval}} - Timeframe ('1s', '1', 'D')
{{htf}} - High timeframe ('15', '60', 'D')
{{open}}-{{close}}-{{high}}-{{low}} - Candle price values
{{htf_open}}-{{htf_close}}-{{htf_high}}-{{htf_low}} - Last confirmed HTF candle's price
{{volume}} - Candle volume
{{time}} - Candle open time in UTC timezone
{{timenow}} - Signal time in UTC timezone
{{syminfo.currency}} - 'USD' for BTCUSD pair
{{syminfo.basecurrency}} - 'BTC' for BTCUSD pair
✅ USAGE EXAMPLES
Now I’ll demonstrate several ways to apply this indicator across different trading strategies.
Primarily, it’s most effective within the Smart Money framework - where liquidity and manipulation are the core focus - so it integrates seamlessly into your SMC-based approach.
However, it can also be employed in other strategies, such as classic technical analysis or Elliott Wave, to capitalize on reversal points on the chart.
Example 1
The first example illustrates forming a downtrend using a Smart Money strategy. After the market structure shifts and the first BOS is broken, we begin looking for a short entry.
Once Entry Model 1 is established, a Fair Value Gap appears, which we use as our position-entry zone. The nearest target becomes the newly formed BOS level.
In this trade, it was crucial to wait for a strong downtrend to develop before hunting for entries. Therefore, we waited for the first BOS to break and entered the trade to ride the continuation of the downtrend down to the next BOS level.
Example 2
The next example illustrates a downtrend developing with a Fair Value Gap on the 1-hour timeframe. The FVG is also displayed directly on the HTF candles in the chart.
The pattern forms within the HTF Fair Value Gap, indicating that we can balance this inefficiency and ride the continuation of the downtrend.
The target can simply be a 1:2 or 1:3 risk–reward ratio, as in our case.
📌 CONCLUSION
These two examples illustrate how this indicator can be used to identify reversals or trend continuations. In truth, there are countless ways to incorporate this tool, and each trader can adapt the model to fit their own strategy.
Always remember to rely on your own analysis and only enter trades when you feel confident in them.
Institutional Support/Resistance Locator🏛️ Institutional Support/Resistance Locator
Overview
The Institutional Support/Resistance Locator identifies high-probability demand and supply zones based on strong price rejection, large candle bodies, and elevated volume . These zones are commonly targeted or defended by institutional participants, helping traders anticipate potential reversal or continuation areas.
⸻
How It Works
The indicator uses a confluence of conditions to detect zones:
• Large Body Candles: Body size must exceed the moving average body size multiplied by a user-defined factor.
• High Volume: Volume must exceed the moving average volume by a configurable multiplier.
• Wick Rejection: Candles must show strong upper or lower wicks indicating aggressive rejection.
• If all criteria are met:
• Bullish candles form a Demand Zone.
• Bearish candles form a Supply Zone.
Each zone is plotted for a customizable number of future bars, representing areas where institutions may re-engage with the market.
⸻
Key Features
• ✅ Highlights institutional demand and supply areas dynamically
• ✅ Customizable sensitivity: body, volume, wick, padding, and zone extension
• ✅ Zones plotted as translucent regions with auto-expiry
• ✅ Works across all timeframes and markets
⸻
How to Use
• Trend Traders: Use demand zones for potential bounce entries in uptrends, and supply zones for pullback short entries in downtrends.
• Range Traders: Use zones as potential reversal points inside sideways market structures.
• Scalpers & Intraday Traders: Combine with volume or price action near zones for refined entries.
Always validate zone reactions with supporting indicators or price behavior.
⸻
Why This Combination?
The combination of wick rejection, volume confirmation, and large candle structure is designed to reflect footprints of smart money. Rather than relying on fixed pivots or subjective zones, this logic adapts to the current market context with statistically grounded conditions.
⸻
Why It’s Worth Using
This tool offers traders a structured way to interpret institutional activity on charts without relying on guesswork. By plotting potential high-impact areas, it helps improve reaction time.
⸻
Note :
• This script is open-source and non-commercial.
• No performance guarantees or unrealistic claims are made.
• It is intended for educational and analytical purposes only.
Gann LV Price/Time (EN)Gann LV Price/Time
This indicator is based on William Gann’s methods, the Law of Vibration, and classic wave analysis. Unlike traditional Gann tools, it employs adaptive trend analysis, combining angular acceleration, price-to-time ratio, and resonance zones. This allows for more precise identification of key support and resistance levels and enhances the ability to forecast potential trend reversals.
🔹 Key Features
✔ Customizable key points (A, B, C) – the user selects three significant points that form the basis of the analysis.
✔ Price calculation methods – the option to consider candle wicks, candle bodies, or an average price.
✔ Automatic trend structure analysis – the indicator determines whether the market is in an impulse or corrective phase.
✔ Support and resistance level forecasting – based on Gann’s Law of Vibration, making calculations dynamic.
✔ Identification of time-based reversal zones – key time cycles that influence trends are analyzed.
✔ Price resonance zones – special areas where the price reaches maximum sensitivity and may reverse direction.
✔ Market noise filtering – intelligent smoothing and volatility adaptation techniques are applied.
🔹 How Does the Indicator Work?
1️⃣ Defining Key Points A, B, C
These points serve as the foundation of the analysis, helping to determine trend direction and potential reversal zones.
2️⃣ Angular Acceleration Analysis
The indicator assesses whether the angle between points is accelerating or decelerating, allowing traders to identify trend strength and potential turning points.
3️⃣ Detection of Price Resonance Zones
Every market has its own natural vibration frequencies—moments when the price is most susceptible to trend shifts. The indicator analyzes these patterns and identifies key levels where reversals may occur.
4️⃣ Identification of Time-Based Trend Reversal Zones
Time cycles play a crucial role in price movements. By analyzing market rhythm patterns, the indicator forecasts probable trend reversal points, providing additional confirmation for trading decisions.
🔹 What Are Price Resonance Zones?
Resonance zones are areas on the chart where the price encounters an "invisible barrier" based on Gann’s Law of Vibration. These zones form when natural price and time rhythms align, creating an effect similar to acoustic or mechanical resonance.
Within these zones:
Trends slow down or accelerate.
There is a high probability of a reversal.
Key support and resistance levels become stronger.
The indicator automatically identifies these intersections, helping traders find optimal entry and exit points.
🔹 Where to Apply It?
✔ For identifying entry and exit points – helps detect the most probable trend reversal zones.
✔ For market cycle analysis – understanding market rhythms enables more accurate forecasting.
✔ For filtering false breakouts – resonance zones can confirm or invalidate potential breakouts.
📌 Important: This indicator does not guarantee profits; it serves as a supportive tool for comprehensive technical analysis.
Heatmap Suite [PhenLabs]📊 Heatmap Suite
Version: PineScript™ v6
📌 Description
The Heatmap Suite is an advanced technical analysis tool that combines multiple density calculation methods with dynamic visualization to identify significant price levels and trading activity zones. It features a sophisticated analysis system that processes price and volume data through various kernel methods, providing traders with insights into market structure, support/resistance zones, and potential price reaction areas.
🚀 Points of Innovation:
Multi-method density calculation incorporating three distinct approaches
Adaptive visualization system with dynamic color gradients
Real-time dashboard with key market metrics
Significant level detection with automatic threshold adjustment
🚨 Important🚨
🔸Comprehensive tooltips included in the PhenLabs dashboard for in depth guidance
🔧 Core Components
Density Analysis: Multiple calculation methods for price distribution assessment
Heat Mapping: Dynamic visualization of price congestion zones
Level Detection: Automatic identification of significant price levels
Dashboard System: Real-time market metrics and analysis
🔥 Key Features
The indicator provides comprehensive analysis through:
Kernel Density: Traditional balanced view of price distribution
Exponential Kernel: Time-weighted analysis emphasizing recent price action
Volume-Weighted: Focus on high-volume price areas
Significant Levels: Automatic detection of important price zones
Heat Distribution: Color-coded visualization of price congestion
🎨 Visualization
Heat Zones: Shows intensity of price activity
Significant Lines: Key level indicators
Color Gradients: Indicates density strength
Dashboard Display: Real-time metrics
Dynamic Opacity: Reflects density intensity
📖 Usage Guidelines
The indicator offers several customization options:
Basic Settings:
Calculation Method: Choose between three density calculation approaches
Lookback Period: Analysis timeframe adjustment
Zone Count: Price range division granularity
Heat Sensitivity: Contrast adjustment for visualization
🎛️ Visual Settings:
Dashboard Size: Text size customization
Position: Dashboard placement options
Color Scheme: Heat map gradient visualization
Level Display: Significant price zone indicators
✅ Best Use Cases:
Identify strong support/resistance zones through high-density areas
Spot potential price reversal zones at significant levels
Analyze price congestion patterns
Monitor real-time changes in market structure
⚠️ Limitations
Requires sufficient historical data
Computational intensity increases with longer lookback periods
Heat sensitivity needs adjustment based on market conditions
Dashboard placement may need adjustment based on price action
💡 What Makes This Unique
Multi-method Analysis: Three distinct calculation approaches
Adaptive Visualization: Dynamic color gradient system
Real-time Metrics: Comprehensive dashboard display
Automatic Level Detection: Significant price zone identification
Memory-efficient Design: Optimized calculation methods
🔬 How It Works
The indicator processes market data through four main components:
1. Density Calculation:
Processes price and volume data
Applies selected kernel method
Generates density distribution
2. Heat Mapping:
Converts density values to color gradients
Updates visualization in real-time
Displays price congestion zones
3. Level Detection:
Identifies significant price levels
Applies threshold filtering
Marks important zones
4. Dashboard Updates:
Calculates real-time metrics
Updates display components
Provides market context
💡Note:
The indicator performs best with adequate historical data and proper sensitivity settings. Its sophisticated density analysis provides valuable insights into market structure beyond traditional support/resistance indicators.
MEMEQUANTMEMEQUANT
This script is a comprehensive and specialized tool designed for tracking trends and money flow within meme coins and DEX tokens. By combining various features such as trend lines, Fibonacci levels, and category-based indices, it helps traders make informed decisions in highly volatile markets.
Key Features:
1. Category-Based Indices:
• Tracks the performance of token categories like:
• AI Agent Tokens
• AI Tokens
• Animal Tokens
• Murad Picks
• Each category consists of leader tokens, which are selected based on their higher market cap and trading volume. These tokens act as benchmarks for their respective categories.
• Visualizes category indices in a line chart to identify trends and compare money flow between categories.
2. Fibonacci Correction Zones:
• Highlights key retracement levels (e.g., 60%, 70%, 80%).
• These levels are crucial for identifying potential reversal zones, commonly observed in meme coin trading patterns.
• Fully customizable to match individual trading strategies.
3. Trend Lines:
• Automatically detects major support and resistance levels.
• Separates long-term and short-term trend lines, allowing traders to focus on significant price movements.
4. Enhanced Info Table:
• Provides real-time insights, including:
• % Distance from All-Time High (ATH)
• Current Trading Volume
• 50-bar Average Volume
• Volume Change Percentage
• Displays information in an easy-to-read table on the chart.
5. Customizable Settings:
• Users can adjust transparency, colors, and ranges for Fibonacci zones, trend lines, and the table.
• Enables or disables individual features (e.g., Fibonacci, trend lines, table) based on preferences.
How It Works:
1. Tracking Money Flow Across Categories:
• The script calculates the market cap to volume ratio for each category of tokens to help identify the dominant trend.
• A higher ratio indicates greater liquidity and stability, while a lower ratio suggests higher volatility or price manipulation.
2. Identifying Retracement Patterns:
• Leverages common retracement behaviors (e.g., 70% correction levels) observed in meme coins to detect potential reversal zones.
• Combines this with trend line analysis for additional confirmation.
3. Leader Tokens as Indicators:
• Each category is represented by its leader tokens, which have historically higher liquidity and market cap. This allows the script to accurately reflect the overall trend in each category.
When to Use:
• Trend Analysis: To identify which category (e.g., AI Tokens or Animal Tokens) is leading the market.
• Reversal Zones: To spot potential support or resistance levels using Fibonacci zones.
• Money Flow: To understand how capital is moving across different token categories in real time.
Who Is This For?
This script is tailored for:
• Traders specializing in meme coins and DEX tokens.
• Those looking for an edge in trend-based trading by analyzing market cap, volume, and retracement levels.
• Anyone aiming to track money flow dynamics between different token categories.
Future Updates:
This is the initial version of the script. Future updates may include:
• Support for additional token categories and DEX data.
• More advanced pattern recognition and alerts for volume and price anomalies.
• Enhanced visualization for historical data trends.
With this tool, traders can combine money flow analysis with the 60-70% retracement strategy, turning it into a powerful assistant for navigating the fast-paced world of meme coins and DEX tokens.
This script is designed to provide meaningful insights and practical utility for traders, adhering to TradingView’s standards for originality, clarity, and user value.
[GrandAlgo] Liquidity HeatmapThe Liquidity Heatmap is a unique indicator designed to identify and highlight zones where price is likely to react based on liquidity dynamics. Unlike tools that analyze volume across all price levels, this indicator focuses specifically on liquidity concentrated around potential reversal zones. By evaluating price action and volume at these critical levels, it identifies areas of heightened interest for traders.
Key Features:
Dynamic Liquidity Zones:
Automatically calculates liquidity zones based on historical price activity, ensuring real-time relevance.
Volume-Based or Candle Interaction Analysis:
Choose between volume-based evaluation to focus on order flow or candle-based interaction for a broader perspective.
Customizable Percentile Threshold:
Filter zones based on their significance by setting a threshold to display only the top liquidity areas.
Lookback Period Control:
Define how many candles the indicator should analyze, allowing you to focus on short-term or long-term liquidity levels.
Color-Coded Visuals:
Liquidity zones are displayed using gradients, with green representing potential bullish zones (below price) and red representing potential bearish zones (above price). Stronger zones are indicated with darker colors.
How It Works:
The Liquidity Heatmap divides the price range into multiple levels, evaluating each level for interaction with historical price data. Liquidity zones are calculated based on:
Volume Concentration: When enabled, the indicator evaluates zones using historical volume, highlighting areas with significant order flow.
Candle Interactions: When volume-based analysis is disabled, the indicator calculates the number of candles interacting with each zone to determine its importance.
Zones that meet the user-defined percentile threshold are highlighted on the chart. Color gradients indicate the strength of each zone, allowing traders to prioritize the most significant areas. Real-time alerts notify users when the price touches these zones, providing actionable insights.
The image illustrates the volume-based analysis feature of the Liquidity Heatmap indicator. Liquidity zones are dynamically highlighted with intuitive color gradients—green for bullish volume and red for bearish volume—providing a clear visual representation of areas with concentrated liquidity at potential reversal points. This feature helps traders focus on zones with significant market activity, enhancing their decision-making process.
Disclaimer
This indicator is a technical analysis tool designed to assist traders by providing insights into market conditions. It does not guarantee future price movements or trading outcomes and should not be relied upon as a sole decision-making tool. The effectiveness of this indicator depends on its application, which requires your trading knowledge, experience, and judgment.
Trading involves significant financial risk, including the potential loss of capital. Past performance of any tool or indicator does not guarantee future results. This script is intended for educational and informational purposes only and does not constitute financial or investment advice. Users are strongly encouraged to perform their own analysis and consult with a qualified financial professional before making trading decisions.
GOLDEN RSI by @thejamiulGOLDEN RSI thejamiul is a versatile Relative Strength Index (RSI)-based tool designed to provide enhanced visualization and additional insights into market trends and potential reversal points. This indicator improves upon the traditional RSI by integrating gradient fills for overbought/oversold zones and divergence detection features, making it an excellent choice for traders who seek precise and actionable signals.
Source of this indicator : This indicator is based on @TradingView original RSI indicator with a little bit of customisation to enhance overbought and oversold identification.
Key Features
1. Customizable RSI Settings:
RSI Length: Adjust the RSI calculation period to suit your trading style (default: 14).
Source Selection: Choose the price source (e.g., close, open, high, low) for RSI calculation.
2. Gradient-Filled RSI Zones:
Overbought Zone (80-100): Gradient fill with shades of green to indicate strong bullish conditions.
Oversold Zone (0-20): Gradient fill with shades of red to highlight strong bearish conditions.
3. Support and Resistance Levels:
Upper Band: 80
Middle Bands: 60 (bullish) and 40 (bearish)
Lower Band: 20
These levels help identify overbought, oversold, and neutral zones.
4. Divergence Detection:
Bullish Divergence: Detects lower lows in price with corresponding higher lows in RSI, signaling potential upward reversals.
Bearish Divergence: Detects higher highs in price with corresponding lower highs in RSI, indicating potential downward reversals.
Visual Indicators:
Bullish divergence is marked with green labels and line plots.
Bearish divergence is marked with red labels and line plots.
5. Alert Functionality:
Custom Alerts: Set up alerts for bullish or bearish divergences to stay notified of potential trading opportunities without constant chart monitoring.
6. Enhanced Chart Visualization:
RSI Plot: A smooth and visually appealing RSI curve.
Color Coding: Gradient and fills for better distinction of trading zones.
Pivot Labels: Clear identification of divergence points on the RSI plot.