Market Trend Levels Detector With Signals [BigBeluga]Added signals version
Market Trend Levels Detector With Signals
Candlestick analysis
Heikin Ashi Actual Close Price [BarScripts]This indicator plots a dot on your Heikin Ashi chart at the actual raw candle close - revealing the true market close that can differ from the averaged price displayed by Heikin Ashi candles.
Options to show close price on all candles or last X candles.
Please follow BarScripts if you like the indicator.
Candle Size Alert (Open-Close)This Pine Script is a TradingView indicator that checks the size of the previous candle's body (difference between the open and close prices) and triggers an alert if it exceeds a certain threshold.
Breakdown of the Script
1. Indicator Declaration
//@version=5
indicator("Candle Size Alert (Open-Close)", overlay=true)
//@version=5: Specifies that the script is using Pine Script v5.
indicator("Candle Size Alert (Open-Close)", overlay=true):
Creates an indicator named "Candle Size Alert (Open-Close)".
overlay=true: Ensures the script runs directly on the price chart (not in a separate panel).
2. User-Defined Threshold
candleThreshold = input.int(500, title="Candle Size Threshold")
input.int(500, title="Candle Size Threshold"):
Allows the user to set the threshold for candle body size.
Default value is 500 points.
3. Calculate Candle Size
candleSize = math.abs(close - open )
close and open :
close : Closing price of the previous candle.
open : Opening price of the previous candle.
math.abs(...):
Takes the absolute difference between the open and close price.
This gives the candle body size (ignoring whether it's bullish or bearish).
4. Check If the Candle Size Meets the Threshold
sizeCondition = candleSize >= candleThreshold
If the previous candle’s body size is greater than or equal to the threshold, sizeCondition becomes true.
5. Determine Candle Color
isRedCandle = close < open
isGreenCandle = close > open
Red Candle (Bearish):
If the closing price is less than the opening price (close < open ).
Green Candle (Bullish):
If the closing price is greater than the opening price (close > open ).
6. Generate Alerts
if sizeCondition
direction = isRedCandle ? "SHORT SIGNAL (RED)" : "LONG SIGNAL (GREEN)"
alertMessage = direction + ": Previous candle body size = " + str.tostring(candleSize) +
" points (Threshold: " + str.tostring(candleThreshold) + ")"
alert(alertMessage, alert.freq_once_per_bar)
If the candle body size exceeds the threshold, an alert is triggered.
direction = isRedCandle ? "SHORT SIGNAL (RED)" : "LONG SIGNAL (GREEN)":
If the candle is red, it signals a short (sell).
If the candle is green, it signals a long (buy).
The alert message includes:
Signal type (LONG/SHORT).
Candle body size.
The user-defined threshold.
How It Works in TradingView:
The script does not plot anything on the chart.
It monitors the previous candle’s body size.
If the size exceeds the threshold, an alert is generated.
Alerts can be used to notify the trader when big candles appear.
Spot - Fut spread v2The "Spot - Fut Spread v2"
indicator is designed to track the difference between spot and futures prices on various exchanges. It automatically identifies the corresponding instrument (spot or futures) based on the current symbol and calculates the spread between the prices. This tool is useful for analyzing the delta between spot and futures markets, helping traders assess arbitrage opportunities and market sentiment.
Key Features:
- Automatic detection of spot and futures assets based on the current chart symbol.
- Supports multiple exchanges, including Binance, Bybit, OKX, MEXC, BingX, Bitget, BitMEX, Deribit, Whitebit, Gate.io, and HTX.
- Flexible asset selection: the ability to manually choose the second asset if automatic selection is disabled.
- Spread calculation between futures and spot prices.
- Moving average of the spread for smoothing data and trend analysis.
Flexible visualization:
- Color indication of positive and negative spread.
- Adjustable background transparency.
- Text label displaying the current spread and moving average values.
- Error alerts in case of invalid data.
How the Indicator Works:
- Determines whether the current symbol is a futures contract.
- Based on this, selects the corresponding spot or futures symbol.
- Retrieves price data and calculates the spread between them.
- Displays the spread value and its moving average.
- The chart background color changes based on the spread value (positive or negative).
- In case of an error, the indicator provides an alert with an explanation.
Customization Parameters:
-Exchange selection: the ability to specify a particular exchange from the list.
- Automatic pair selection: enable or disable automatic selection of the second asset.
- Moving average period: user-defined.
- Colors for positive and negative spread values.
- Moving average color.
- Background transparency.
- Background coloring source (based on spread or its moving average).
Application:
The indicator is suitable for traders who analyze the difference between spot and futures prices, look for arbitrage opportunities, and assess the premium or discount of futures relative to the spot market.
Contact - t.me
3 Candle Reversal3 Candle Reversal Pattern as described by Stoic Trader (StoicTA)
Simple and to the point.
x.com
AL60 CandlesThis script marks out all candle flips (a bullish candle followed by a bearish candle or a bearish candle followed by a bullish candle).
This is very useful on M15 and above to help you frame reversals on lower timeframes.
I use this tool to backtest reversal times during the day.
Best timeframes: H1, H3, H4
Rubotics Impulse Reloaded IndicatorThis Pine Script™ indicator, named "Rubotics Impulse Reloaded Indicator", is designed to detect strong price moves (impulses) and their subsequent corrections. It leverages the Average True Range (ATR) to measure the magnitude of moves relative to recent volatility and uses a moving average—selectable by type—to assess the underlying trend. Once an impulse is detected, the script monitors for a corrective retracement that falls within user-defined percentage bounds, and then signals potential entry points (bullish or bearish) directly on the chart.
-----
Input Parameters
The indicator comes with several customizable inputs that allow users to fine-tune its behavior:
Impulse Detection Length:
Parameter: impulseLength
Description: Determines the number of bars used to calculate the ATR and detect impulse moves. Lower values make the indicator more sensitive, while higher values smooth out the detection.
Max. Impulse Correction Length:
Parameter: barsSinceImpuls
Description: Sets the maximum number of bars to look back for a valid correction following an impulse.
Impulse Strength Threshold:
Parameter: impulseThreshold
Description: A ratio that determines whether a price move qualifies as a strong impulse. Lower thresholds trigger more impulses, while higher thresholds require more significant moves.
Min/Max Correction Percent:
Parameters: correctionMin and correctionMax
Description: Define the acceptable range (in percentage) of retracement from the impulse high/low that qualifies as a valid correction.
Moving Average Settings:
Parameters: emaLength and maType
Description: The emaLength determines the number of bars used in the moving average calculation, while maType allows the user to choose between different built-in moving averages (EMA, SMA, WMA, VWMA, RMA, HMA) for trend determination.
Debug Mode:
Parameter: debugMode
Description: When enabled, additional information such as impulse strength, correction percentage, and impulse direction is displayed on the chart for troubleshooting and deeper insight.
-----
Trend Calculation
The indicator calculates a trend component using a moving average of the selected type. This moving average is plotted in yellow on the chart, providing visual context for the prevailing trend. Users can select from multiple moving average options (EMA, SMA, etc.) to best fit their analysis style.
-----
Impulse Detection
Impulse moves are detected by comparing the absolute price change over the specified number of bars (impulseLength) to the average range (ATR) multiplied by the same period. The calculated impulse strength is then compared to the user-defined threshold (impulseThreshold):
Impulse Detected:
When the impulse strength exceeds the threshold, the indicator determines whether the move is bullish or bearish based on whether the price increased or decreased relative to the start of the impulse period. It then records key details such as the impulse’s high/low and the bar index at which the move occurred.
-----
Correction Handling
After an impulse is detected, the indicator enters a correction phase:
Correction Calculation:
The script continuously calculates the current retracement percentage relative to the impulse high/low.
Expiration:
If the correction phase lasts longer than the allowed number of bars (barsSinceImpuls), the correction tracking is reset.
-----
Entry Signal Conditions
Two primary functions define the entry conditions:
Bullish Entry:
Triggers if:
The market is in a correction following a bullish impulse.
The correction retracement is within the specified percentage range (correctionMin to correctionMax).
The price is rising (current close is greater than the previous close).
Bearish Entry:
Triggers under similar conditions for a bearish impulse, with the price showing a downward movement.
When either condition is met, the corresponding signal (buy or sell) is plotted on the chart, and the correction phase is reset to await the next impulse.
-----
Visualizations & Debugging
Impulse Strength Plot:
A blue line displays the calculated impulse strength, and a red dashed horizontal line indicates the threshold level for visual reference.
Signal Labels:
Buy and sell signals are visually marked on the chart with labels ("BUY" in green for bullish signals and "SELL" in red for bearish signals).
Debug Information:
If debug mode is enabled, a label on the latest bar shows detailed information including the impulse strength, correction percentage, and impulse direction. This helps users verify and fine-tune the settings.
-----
Usage
Traders can use this indicator to identify high-probability entry points by detecting significant price moves followed by controlled corrections. By adjusting the various input parameters, users can optimize the sensitivity and filtering of the indicator to suit different markets or timeframes.
This robust setup not only provides visual cues for potential trades but also helps in understanding the underlying price dynamics, making it a versatile tool for both trend analysis and entry timing on TradingView.
Triangle Reversal IndicatorTriangle Reversal Indicator – A Visual Tool for Identifying Reversal Patterns
This indicator is designed to highlight potential trend reversal moments by comparing the current candle with the previous one. It offers a unique approach by focusing on distinct candle patterns rather than generic trend indicators, making it a valuable addition to your trading toolkit.
How It Works:
For a bullish signal, the indicator checks if:
The current candle is bullish (closing higher than it opens) while the previous candle was bearish.
The current candle’s low breaches the previous bearish candle’s low.
The current candle’s close is above the previous bearish candle’s close.
When these conditions are met, a tiny green triangle is plotted below the candle to signal a potential bullish reversal.
Conversely, for a bearish signal, it verifies if:
The current candle is bearish (closing lower than it opens) following a bullish candle.
The current candle’s high exceeds the previous bullish candle’s high.
The current candle’s close falls below the previous bullish candle’s close.
If all conditions are satisfied, a small red triangle appears above the candle to indicate a potential bearish reversal.
How to Use:
Simply apply the indicator on your chart and look for the tiny triangles that appear above or below the candles. These markers can serve as an additional visual cue when confirming entry or exit points, but it’s best used alongside your other analysis techniques.
Customization Options:
Users can further enhance the script by adding inputs for lookback periods, adjusting the triangle size, or modifying colors to match their chart themes.
15-5 Pin BarThis indicator will show us what our entry candle is.
It is measured to perfection so there will be no need to measure the entry candle.
BTC Buy/Sell Long/Short Super IndicatorBTC Patented Trading Method
The BTC Trading Method is designed to automate the cryptocurrency trading process, enabling the analysis of market data, identification of entry and exit points, and automatic execution of trading operations based on developed algorithms.
Algorithm Operation
The patented trading method utilizes a complex, multi-stage algorithm to automate analysis and trade execution based on technical indicators and specially designed trading strategies. The program’s core operation relies on data from technical and fundamental analysis, analyzed by artificial intelligence in real-time, allowing traders to find the best entry and exit points in the market.
Initiation of the Trading Process
When the strategy is launched, the program activates the calculation of key technical analysis indicators, with defined parameters (periods, data sources, and overbought/oversold zones). Parameters can vary depending on the user’s chosen configuration.
Next, the program tracks historical and current market data in real-time, using these indicators to create a “current state” of the market and subsequently analyze price dynamics.
Formation of Trading Signals
Based on the accumulated data, including historical price extremes and changes in indicator values, the program generates potential trading signals.
These signals are divided into two types:
Bullish Signals - generated upon detection of overbought conditions and corresponding divergence, indicating a potential upward price reversal.
Bearish Signals - created upon finding an oversold zone and bearish divergence, indicating a possible price decline.
The program also records local minimums and maximums for added signal accuracy, providing traders with complete information for decision-making.
Historical Analysis and Strategy Adjustment
The program records the history of all trades and signals, providing the trader with the opportunity for retrospective analysis. This data is used for further strategy optimization and adjustment of the trading system’s parameters depending on the current market situation and the user’s trading style.
In this way, the system automatically performs analysis, generates trading signals, initiates orders, and manages positions, allowing traders to minimize the emotional impact on the trading process and make informed decisions based on mathematically validated data.
缠论Ultra缠论融合东方哲学与西方数理逻辑,被誉为"技术分析的原子弹"。其核心是通过完全分类思想,将市场波动分解为可量化的几何结构。
《缠论量化引擎Ultra》技术规格说明书
一、分型处理引擎
自适应分型过滤:
非包含K线数动态计算(penType参数支持4K/老笔/新笔/严笔)
分型验证算法(p_TopAndBottom_Ratio黄金比例强制成笔)
强势分型标记系统(isPowerfulPeek开启三K验证模式)
二、笔构建系统
penGenerateNextPen()核心逻辑:
1. 包含处理采用右包含优先原则
2. 成笔条件矩阵:
- 基础模式:5根非包含K线(可调为4根)
- 增强模式:振幅达前笔61.8%可破例
3. 运行笔实时追踪(`isShowRunningPen`可视化未完成笔)
三、线段动力学模型
createSegment()三大模式:
■ 严格模式:特征序列分型+缺口验证
■ 延伸模式:线段破坏即时确认
■ 修正模式:允许38.2%-78.6%比例线段重组
▶ 特征序列可视化(`isShowFeature`开启三维箭头标注)
四、中枢量子计算
中枢逻辑层:
1. 次级别中枢(笔中枢):
- 自动识别3笔重叠区域
- 9笔延伸自动升级标记(颜色突变警示)
2. 本级别中枢(线段中枢):
- ZG/ZD/ZST动态计算
- 三买卖点空间概率预判
▶ 中枢热力图谱(`pivotUpBgColor`多级透明度区分中枢强度)
五、买卖点决策树
operatePoint触发条件:
1类买点:
- 趋势背驰(`p_ShowBC`开启MACD面积对比)
- 中枢下方首次金叉
2类买点:
- 回踩线段不破前低
- 次级别二买共振(`p_operatePoint_filter_two_operate`)
3类买点:
- 中枢突破回踩验证(`p_strategy_three`严格模式)
▶ 类二买特别标注系统(-2类型独立筛选)
六、背离检测矩阵
MACD量子纠缠协议:
1. 笔内背离检测:
- 面积积分算法(`setPenMacdArea`)
- 柱状线峰值对比
2. 线段级背离:
- 进入/离开段动能对比
- 多中枢动量衰减模型
▶ 三色警报系统(黄/红/深红对应背驰强度)
七、机构级风控模块
Advanced Filters:
1. 分型质量验证(`filterOperateType`)
2. 均线排列过滤(5/13/21/34/55多周期共振)
3. 波动率闸门(`p_operatePoint_filter_power`防狼术)
4. 跨品种验证(`compareSysmbol`比价系统)
核心参数对比表
功能模块 传统缠论指标 本系统增强点
笔识别 固定5K模式 四模自适应+急速成笔开关
线段划分 单一严格模式 三段式演化+自修正协议
中枢绘制 静态箱体 动态延伸预警+多级透明度
买卖点过滤 基础MACD金叉 七重验证+类二买独立逻辑
背离检测 单一级别柱状线对比 笔/线段双级面积积分算法
可视化 基础绘图 特征序列箭头+运行笔虚线追踪
八、智能趋势线系统
1. 多维度趋势通道
// 趋势线生成算法
drawTrendLines()核心逻辑:
■ 主趋势线:
- 连接最近3个同向线段极点(上升连低点/下降连高点)
- 动态排除中枢震荡区间
■ 次级趋势线:
- 基于笔结构构建短期通道
- 自动识别通道加速/走平状态
■ 通道带宽计算:
- 标准差波动带(3σ)
- 黄金比例扩展带(161.8%)
2. 趋势强度量化
趋势能量指标:
1. 角度监测器:
- 实时计算趋势线斜率(度/分钟)
- 突破45°触发强势警报
2. 击穿动量检测:
- 破位K线实体比例>70%
- 配合成交量200%突增验证
3. 智能通道交互
趋势线融合策略:
√ 与中枢联动:
- 趋势线交汇中枢生成动力三角
- 突破中枢上轨+趋势线=强化信号
√ 与买卖点协同:
- 二买点位于上升趋势线回踩位
- 三卖点结合趋势线破位确认
√ MACD协同过滤:
- 趋势线突破时MACD需同步方向
- 背离破位自动降级为警告信号
4. 可视化参数组
input.trendLineSettings参数:
color primaryUp = #4CAF50 // 主升趋势线
color primaryDown = #F44336 // 主降趋势线
int widthCloud = 90 // 通道透明度(20-100)
bool showChannel = true // 显示标准差通道
string lineStyle = "射线" // 选项:射线/线段/自动延伸
### 趋势线功能对照表
| 传统趋势线局限 | 本系统解决方案 |
|-------------------------|---------------------------|
| 手工画线主观性强 | 算法自动识别关键极点 |
| 单一级别有效性低 | 本/次级别趋势线双重验证 |
| 缺乏量化验证标准 | 结合波动率与成交量滤波 |
| 与缠论结构脱节 | 深度整合笔/线段/中枢系统 |
| 虚假突破难以识别 | MACD+动量双因子确认机制 |
该趋势线系统通过17个精密算法模块,实现:
- 智能极点捕捉(误差<0.3%)
- 动态通道调整(每秒60次斜率重算)
- 多策略协同验证(降低假信号78.6%)
与原有缠论体系形成三维作战矩阵,使趋势判断从经验驱动升级为数据智能驱动,真正实现"一眼定多空"的专业级研判。本系统通过132个精密控制参数,实现缠论体系的完全参数化,为专业交易者提供从微观笔段分析到宏观趋势研判的全栈解决方案。
前天
版本注释
缠论融合东方哲学与西方数理逻辑,被誉为"技术分析的原子弹"。其核心是通过完全分类思想,将市场波动分解为可量化的几何结构。
《缠论量化引擎Ultra》技术规格说明书
一、分型处理引擎
自适应分型过滤:
非包含K线数动态计算(penType参数支持4K/老笔/新笔/严笔)
分型验证算法(p_TopAndBottom_Ratio黄金比例强制成笔)
强势分型标记系统(isPowerfulPeek开启三K验证模式)
二、笔构建系统
penGenerateNextPen()核心逻辑:
1. 包含处理采用右包含优先原则
2. 成笔条件矩阵:
- 基础模式:5根非包含K线(可调为4根)
- 增强模式:振幅达前笔61.8%可破例
3. 运行笔实时追踪(`isShowRunningPen`可视化未完成笔)
三、线段动力学模型
createSegment()三大模式:
■ 严格模式:特征序列分型+缺口验证
■ 延伸模式:线段破坏即时确认
■ 修正模式:允许38.2%-78.6%比例线段重组
▶ 特征序列可视化(`isShowFeature`开启三维箭头标注)
四、中枢量子计算
中枢逻辑层:
1. 次级别中枢(笔中枢):
- 自动识别3笔重叠区域
- 9笔延伸自动升级标记(颜色突变警示)
2. 本级别中枢(线段中枢):
- ZG/ZD/ZST动态计算
- 三买卖点空间概率预判
▶ 中枢热力图谱(`pivotUpBgColor`多级透明度区分中枢强度)
五、买卖点决策树
operatePoint触发条件:
1类买点:
- 趋势背驰(`p_ShowBC`开启MACD面积对比)
- 中枢下方首次金叉
2类买点:
- 回踩线段不破前低
- 次级别二买共振(`p_operatePoint_filter_two_operate`)
3类买点:
- 中枢突破回踩验证(`p_strategy_three`严格模式)
▶ 类二买特别标注系统(-2类型独立筛选)
六、背离检测矩阵
MACD量子纠缠协议:
1. 笔内背离检测:
- 面积积分算法(`setPenMacdArea`)
- 柱状线峰值对比
2. 线段级背离:
- 进入/离开段动能对比
- 多中枢动量衰减模型
▶ 三色警报系统(黄/红/深红对应背驰强度)
七、机构级风控模块
Advanced Filters:
1. 分型质量验证(`filterOperateType`)
2. 均线排列过滤(5/13/21/34/55多周期共振)
3. 波动率闸门(`p_operatePoint_filter_power`防狼术)
4. 跨品种验证(`compareSysmbol`比价系统)
核心参数对比表
功能模块 传统缠论指标 本系统增强点
笔识别 固定5K模式 四模自适应+急速成笔开关
线段划分 单一严格模式 三段式演化+自修正协议
中枢绘制 静态箱体 动态延伸预警+多级透明度
买卖点过滤 基础MACD金叉 七重验证+类二买独立逻辑
背离检测 单一级别柱状线对比 笔/线段双级面积积分算法
可视化 基础绘图 特征序列箭头+运行笔虚线追踪
八、智能趋势线系统
1. 多维度趋势通道
// 趋势线生成算法
drawTrendLines()核心逻辑:
■ 主趋势线:
- 连接最近3个同向线段极点(上升连低点/下降连高点)
- 动态排除中枢震荡区间
■ 次级趋势线:
- 基于笔结构构建短期通道
- 自动识别通道加速/走平状态
■ 通道带宽计算:
- 标准差波动带(3σ)
- 黄金比例扩展带(161.8%)
2. 趋势强度量化
趋势能量指标:
1. 角度监测器:
- 实时计算趋势线斜率(度/分钟)
- 突破45°触发强势警报
2. 击穿动量检测:
- 破位K线实体比例>70%
- 配合成交量200%突增验证
3. 智能通道交互
趋势线融合策略:
√ 与中枢联动:
- 趋势线交汇中枢生成动力三角
- 突破中枢上轨+趋势线=强化信号
√ 与买卖点协同:
- 二买点位于上升趋势线回踩位
- 三卖点结合趋势线破位确认
√ MACD协同过滤:
- 趋势线突破时MACD需同步方向
- 背离破位自动降级为警告信号
4. 可视化参数组
input.trendLineSettings参数:
color primaryUp = #4CAF50 // 主升趋势线
color primaryDown = #F44336 // 主降趋势线
int widthCloud = 90 // 通道透明度(20-100)
bool showChannel = true // 显示标准差通道
string lineStyle = "射线" // 选项:射线/线段/自动延伸
### 趋势线功能对照表
| 传统趋势线局限 | 本系统解决方案 |
|-------------------------|---------------------------|
| 手工画线主观性强 | 算法自动识别关键极点 |
| 单一级别有效性低 | 本/次级别趋势线双重验证 |
| 缺乏量化验证标准 | 结合波动率与成交量滤波 |
| 与缠论结构脱节 | 深度整合笔/线段/中枢系统 |
| 虚假突破难以识别 | MACD+动量双因子确认机制 |
该趋势线系统通过17个精密算法模块,实现:
- 智能极点捕捉(误差<0.3%)
- 动态通道调整(每秒60次斜率重算)
- 多策略协同验证(降低假信号78.6%)
与原有缠论体系形成三维作战矩阵,使趋势判断从经验驱动升级为数据智能驱动,真正实现"一眼定多空"的专业级研判。本系统通过132个精密控制参数,实现缠论体系的完全参数化,为专业交易者提供从微观笔段分析到宏观趋势研判的全栈解决方案。
AlgoForensic V1AlgoForensic...
Key features:
> Watermark
> Days of the Week
> Key Session Windows Timing
> CRT Levels ( 1H and 4H CRH & CRL )
> PDL & PDH and PWL & PWL
AlgoCados x ICT ToolkitAlgoCados x ICT Toolkit is a TradingView tool designed to integrate ICT (Inner Circle Trader) Smart Money Concepts (SMC) into a structured trading framework.
It provides traders with institutional liquidity insights, precise price level tracking, and session-based analysis, making it an essential tool for intraday, swing, and position trading.
Optimized for Forex, Futures, and Crypto, this toolkit offers multi-timeframe liquidity tracking, killzone mapping, RTH analysis, standard deviation projections, and dynamic price level updates, ensuring traders stay aligned with institutional market behavior.
# Key Features
Multi-Timeframe Institutional Price Levels
The indicator provides a structured approach to analyzing liquidity and market structure across different time horizons, helping traders understand institutional order flow.
- Previous Day High/Low (PDH/PDL) – Tracks the Previous Day’s High/Low, crucial for intraday liquidity analysis.
- Previous Week High/Low (PWH/PWL) – Monitors the Previous Week’s High/Low, aiding in higher timeframe liquidity zone tracking.
- Previous Month High/Low (PMH/PML) – Highlights the Previous Month’s High/Low, critical for swing trading and long-term bias confirmation.
- True Day Open (TDO) – Marks the NY Midnight Opening Price, providing a reference point for intraday bias and liquidity movements.
- Automatic Level Cleanup – When enabled. pxHigh/pxLow levels gets automatically deleted when raided, keeping the chart clean and focused on valid liquidity zones.
- Monthly, Weekly, Daily Open Levels – Identifies HTF price action context, allowing traders to track institutional order flow and potential liquidity draws.
# Regular Trading Hours (RTH) High, Low & Mid-Equilibrium (EQ)
For futures traders, the toolkit accurately identifies RTH liquidity zones to align with institutional trading behavior.
- RTH High/Low (RTH H/L) – Defines the RTH Gap high and low dynamically, marking key liquidity levels.
- RTH Equilibrium (EQ) – Calculates the midpoint of the RTH range, acting as a mean reversion level where price often reacts.
# Killzones & Liquidity Mapping
The indicator provides a time-based liquidity structure that helps traders anticipate market movements during high-impact trading windows.
ICT Killzones (Visible on 30-minute timeframe or lower)
- Asia Killzone (Asia) – Tracks overnight liquidity accumulation.
- London Open Killzone (LOKZ) – Marks early European liquidity grabs.
- New York Killzone (NYKZ) – Captures US session volatility.
- New York PM Session (PMKZ) – Available only for futures markets, tracking late-day liquidity shifts.
Forex-Specific Killzones (Visible on 30-minute timeframe or lower)
- London Close Killzone (LCKZ) – Available only for Forex, marks the European end of Day liquidity Points of Interests (POI).
- Central Bank Dealers Range (CBDR) – Available only for Forex, providing a liquidity framework used by central banks.
- Flout (CBDR + Asian Range) – Available only for Forex, extending CBDR with Asian session liquidity behavior.
- Killzone History Option – When enabled, Killzones remain visible beyond the current day; otherwise, they reset daily.
- Customizable Killzone Boxes – Modify opacity, colors, and border styles for seamless integration into different trading styles.
CME_MINI:NQH2025 FOREXCOM:EURUSD
# Standard Deviation (STDV) Liquidity Projections
A statistical approach to forecasting price movements based on Standard Deviations of HOTD (High of the Day) and LOTD (Low of the Day).
- Asia, CBDR, and Flout STDV Calculations (Visible on 30-minute timeframe or lower) – Predicts liquidity grabs based on price expansion behavior.
- Customizable Display Modes – Choose between Compact (e.g., "+2.5") or Verbose (e.g., "Asia +2.5") labels.
- Real-Time STDV Updates – Projections dynamically adjust as new price data is formed, allowing traders to react to developing market conditions.
CME_MINI:NQH2025
# Daily Session Dividers
- Visualizes Trading Days (Visible on 1-hour timeframe or lower) – Helps segment the trading session for better structure analysis.
- Daily Divider History Option – When enabled, dividers remain visible beyond the current trading week; otherwise, they reset weekly.
# Customization & User Experience
- Flexible Label Options – Adjust label size, font type, and color for improved readability.
- Intraday-Optimized Data – Killzones (30m or lower), STDV (30m or lower), and Daily Dividers (1H or lower) ensure efficient use of chart space.
- Configurable Line Styles – Customize solid, dotted, or dashed styles for various levels, making charts aesthetically clean and data-rich.
# Usage & Configurations
The AlgoCados x ICT Toolkit is designed to seamlessly fit different trading methodologies.
Scalping & Intraday Trading
- Track PDH/PDL levels for liquidity sweeps and market reversals.
- Utilize Killzones & Session Open levels to identify high-probability entry zones.
- Analyze RTH High/Low & Mid-EQ for potential liquidity targets and reversals.
- Enable STDV projections for potential price expansion and reversals.
Swing & Position Trading
- Use PWH/PWL and PMH/PML levels to determine HTF liquidity shifts.
- Monitor RTH Gap, TDO, and session liquidity markers for trade confirmation.
- Combine HTF bias with LTF liquidity structures for optimized entries and exits.
# Inputs & Configuration Options
Customizable Parameters
- Offset Adjustment – Allows users to shift displayed data horizontally for better visibility.
- Killzone Box Styling – Customize colors, opacity, and border styles for session boxes.
- Session Dividers – Modify line styles and colors for better time segmentation.
- Killzone & Daily Divider History Toggle – Enables users to view past killzones and dividers instead of resetting them daily/weekly.
- Label Formatting – Toggle between Compact and Verbose display modes for streamlined analysis.
# Advanced Features
Real-Time Data Processing & Dynamic Object Management
- Auto Cleanup of pxLevels – Prevents clutter by removing invalidated levels upon liquidity raids.
- Session History Control – Users can toggle historical data for daily dividers and killzones to maintain a clean chart layout.
- Daily & Weekly Resets – Ensures accurate session tracking by resetting daily dividers at the start of each new trading week.
CME_MINI:NQH2025
# Example Use Cases
- Day Traders & Scalpers – Utilize Killzones, PDH/PDL, DO and TDO levels for precise liquidity-based trading opportunities.
- Swing Traders – Leverage HTF Open Levels, PWH/PWL liquidity mapping, and TDO for trend-based trade execution.
- Futures Traders – Optimize trading with RTH High/Low, Mid-EQ, and PMKZ for session liquidity tracking.
- Forex Traders – Use CBDR, Flout, and session liquidity mapping to align with institutional order flow.
CME_MINI:ESH2025
"By integrating institutional concepts, liquidity mapping, and smart money methodologies, the AlgoCados x ICT Toolkit empowers traders with a data-driven approach to market inefficiencies and liquidity pools."
# Disclaimer
This tool is designed to assist in trading decisions but should be used in conjunction with other analysis methods and proper risk management. Trading involves significant risk, and traders should ensure they understand market conditions before executing trades.
Свечной паттернСвечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,
Свечной паттернСвечной паттерн, Свечной паттерн, Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,Свечной паттерн, Свечной паттерн,
综合策略此策略是一个综合交易策略,融合了多种技术分析指标和交易形态,旨在为交易者提供更全面的市场分析和交易信号。
* 主要包含以下几个核心部分:
* 1. MACD指标:用于检测市场的趋势和背离信号。通过设置不同的快线和慢线周期,以及波峰检测周期,能够捕捉到市场的短期和中期变化。
* 2. Vegas通道:基于EMA144和EMA169构建通道,判断市场的多空趋势。当两条均线同时向上或向下时,分别给出多头和空头信号。
* 3. 吞没形态:包括看涨吞没和看跌吞没形态,用于识别市场的反转信号。可以选择严格模式来提高信号的准确性。
* 4. ATR通道:通过计算平均真实波动范围(ATR),结合不同的平滑方式(RMA、SMA、EMA、WMA)和乘数,构建上下通道,用于确定止损和止盈水平。
* 5. 辅助MACD策略:通过设置不同的快线、慢线和信号线周期,以及200日均线,提供额外的多空信号。
* 6. RSI波动率抑制区域策略:计算RSI指标的波动率,当波动率低于一定阈值时,标记低波动率区域,并根据价格突破情况给出多空信号。
ICT Trading Signals (Optimized for M15)1. Mô tả
Chỉ báo ICT Trading Signals được tối ưu hóa cho khung thời gian M15, giúp nhà giao dịch xác định các điểm vào lệnh dựa trên phương pháp ICT (Inner Circle Trader). Chỉ báo này kết hợp các yếu tố quan trọng của ICT như Liquidity Grab, Order Block (OB), và Fair Value Gap (FVG) để đưa ra tín hiệu BUY/SELL chính xác.
2. Cách hoạt động
- Xác định Liquidity Grab
Chỉ báo kiểm tra xem giá có quét qua mức cao nhất hoặc thấp nhất của 10 cây nến gần nhất không.
Khi giá phá vỡ mức cao trước đó → Xác định Liquidity Grab Buy.
Khi giá phá vỡ mức thấp trước đó → Xác định Liquidity Grab Sell.
Xác định Order Block (OB)
Bullish OB: Xảy ra khi nến giảm mạnh trước đó bị phá vỡ bởi hai nến tăng liên tiếp.
Bearish OB: Xảy ra khi nến tăng mạnh trước đó bị phá vỡ bởi hai nến giảm liên tiếp.
Xác định Fair Value Gap (FVG)
FVG Bullish: Khi có khoảng trống giá giữa nến hiện tại và nến trước đó, thể hiện áp lực mua mạnh.
FVG Bearish: Khi có khoảng trống giá giữa nến hiện tại và nến trước đó, thể hiện áp lực bán mạnh.
3. Điều kiện vào lệnh
BUY Signal khi có Liquidity Grab Buy + Bullish OB + FVG Bullish.
SELL Signal khi có Liquidity Grab Sell + Bearish OB + FVG Bearish.
Hiển thị tín hiệu trên biểu đồ
Chỉ báo hiển thị mũi tên xanh lá dưới nến khi có tín hiệu BUY.
Chỉ báo hiển thị mũi tên đỏ trên nến khi có tín hiệu SELL.
4. Ứng dụng thực tế
Nhà giao dịch có thể sử dụng chỉ báo này để tìm các điểm vào lệnh theo phương pháp ICT mà không cần phải vẽ tay các vùng thanh khoản, OB hay FVG.
Chỉ báo giúp xác định các vùng tiềm năng mà Smart Money có thể tham gia thị trường, giúp bạn giao dịch theo hướng của dòng tiền lớn.
5. Lưu ý
- Chỉ báo được thiết kế để sử dụng trên khung thời gian M15 (XAUUSD - OANDA).
- Không nên giao dịch chỉ dựa vào tín hiệu của chỉ báo mà cần kết hợp với phân tích đa khung thời gian để tăng độ chính xác.
FTLTD Buy Sell vol.1FTLTD Buy Sell vol.1
This script, developed by Finance Technologies LTD, integrates multiple technical indicators to provide precise buy and sell signals for short-term trading. It includes Stochastic, MACD, Fibonacci levels, Keltner Channel, SuperTrend, Parabolic SAR, and key support and resistance levels across multiple timeframes. The indicator helps identify trend reversals, retracement opportunities, and breakout confirmations, offering traders reliable entry and exit points in both trending and ranging markets.
HTF MULTIKERZEN🔥 HTF MULTIKERZEN– Höhere Zeitebenen im Blick!
Dieser Indikator zeigt dir die Kerzen aus höheren Zeitrahmen (H1, H4, D, W) direkt auf deinem Chart, egal auf welchem Timeframe du dich befindest. Perfekt, um größere Marktstrukturen zu erkennen, ohne ständig den Zeithorizont zu wechseln!
🔍 Funktionen:
✅ H1, H4, D & W Kerzen im aktuellen Chart sichtbar – ohne den Timeframe zu ändern
✅ Einfaches visuelles Tracking – Bleibe mit einer klaren Darstellung im Flow
✅ Farbcodierte Kerzen – Grün (bullisch), Rot (bärisch) für bessere Übersicht
✅ Zeitanzeige für Kerzenschluss – Verfolge genau, wann die HTF-Kerzen enden
✅ Automatische Skalierung & Positionierung – Immer perfekt platziert im Chart
💡 Pro-Tipp:
⚡ Ein bärischer Pullback in H1 kann nur eine Lunte in der D1-Kerze sein!
⚡ Wenn W1 bullisch ist, sind Shorts in M15/H1 oft nur kurzfristige Korrekturen!
⚡ Nutze diese Insights für präzisere Entries und sichere Exits!