Strat Failed 2-Up/2-Down Scanner v2**Strat Failed 2-Up/2-Down Scanner**
The Strat Failed 2-Up/2-Down Scanner is designed for traders using The Strat methodology, developed by Rob Smith, to identify key reversal patterns in any market and timeframe. This indicator detects two specific candlestick patterns: Failed 2-Up (bearish) and Failed 2-Down (bullish), which signal potential reversals when a directional move fails to follow through.
**What It Does**
- **Failed 2-Up**: Identifies a bearish candle where the low and high are higher than the previous candle’s low and high, but the close is below the open, indicating a failed attempt to continue an uptrend. These are marked with a red candlestick, a red downward triangle above the bar, and a table entry.
- **Failed 2-Down**: Identifies a bullish candle where the high and low are lower than the previous candle’s high and low, but the close is above the open, signaling a failed downtrend. These are marked with a green candlestick, a green upward triangle below the bar, and a table entry.
- A table in the top-right corner displays the signal type ("Failed 2-Up" or "Failed 2-Down") and the ticker symbol for quick reference.
- Alerts are provided for both patterns, making the indicator compatible with TradingView’s screener for automated scanning.
**How It Works**
The indicator analyzes each candlestick’s high, low, and close relative to the previous candle:
- Failed 2-Up: `low > low `, `high > high `, `close < open`.
- Failed 2-Down: `high < high `, `low < low `, `close > open`.
When these conditions are met, the indicator applies visual markers (colored bars and triangles) and updates the signal table. Alert conditions trigger notifications for integration with TradingView’s alert system.
**How to Use**
1. Apply the indicator to any chart (stocks, forex, crypto, etc.) on any timeframe (e.g., 1-minute, hourly, daily).
2. Monitor the chart for red (Failed 2-Up) or green (Failed 2-Down) candlesticks with corresponding triangles.
3. Check the top-right table for the latest signal and ticker.
4. Set alerts by selecting “Failed 2-Up Detected” or “Failed 2-Down Detected” in TradingView’s alert menu to receive notifications (e.g., via email or app).
5. Use the signals to identify potential reversal setups in conjunction with other Strat-based analysis, such as swing levels or time-based strategies.
**Originality**
Unlike other Strat indicators that may focus on swing levels or complex candlestick combinations, this scanner specifically targets Failed 2-Up and Failed 2-Down patterns with clear, minimalist visualizations (bars, triangles, table) and robust alert functionality. Its simplicity makes it accessible for both novice and experienced traders using The Strat methodology.
**Ideal For**
Day traders, swing traders, and scalpers looking to capitalize on reversal signals in trending or ranging markets. The indicator is versatile for any asset class and timeframe, enhancing trade decision-making with The Strat’s pattern-based approach.
Các mẫu biểu đồ
OB - MentorXOB - MentorX
Advanced OrderBlock Detection with Smart Alerts
🎯 Key Features:
- Smart OrderBlock Detection: Identifies bullish/bearish OrderBlocks using fractal breaks
- Multi-Timeframe Alerts: Get instant notifications on 1m, 3m, 5m, 15m, 30m, 1h, 4h
- Strength Filter: Only alerts on significant OrderBlocks (ATR-based strength)
- Visual Confirmation: Alerts sync perfectly with drawn OrderBlock lines
- Customizable Settings: Adjust line styles, colors, and alert preferences
🔔 Alert System:
How It Works:
- OrderBlock detected → Lines drawn → Alert triggered
- No false signals - only alerts when OrderBlock is visible on chart
- Strength filter prevents noise alerts on weak OrderBlocks
Alert Examples:
🔴 Bearish OrderBlock Created
Timeframe: 15m
High: 1.2345
Low: 1.2300
Strength: 2.45% ATR
🟢 Bullish OrderBlock Created
Timeframe: 1h
High: 1.2400
Low: 1.2350
Strength: 3.20% ATR
⚙️ Setup:
1. Enable "Enable Alerts" in settings
2. Select desired timeframes (1m, 3m, 5m, 15m, 30m, 1h, 4h)
3. Adjust "Minimum OB Strength" (0.1-5.0% ATR)
4. Create TradingView alert with "Any alert() function call"
🎨 Customization:
- Line styles: Solid, Dashed, Dotted
- Colors: Customize bearish/bullish line colors
- Fractal filters: 3-bar or 5-bar fractals
- FVG filtering: Optional Fair Value Gap confirmation
📊 Perfect for:
- Scalping
- Swing trading
- Multi-timeframe analysis
- Professional trading strategies
Perfect for scalping, swing trading, and multi-timeframe analysis!
Daily Start Vertical Lines (≤1H)This indicator automatically plots vertical lines at the start of each new trading day, based on the selected chart’s timezone. Unlike the default daily session boundaries (which often start at 17:00 New York time), this tool ensures that lines are drawn precisely at 00:00 midnight of the chart’s timezone.
🔹 Features:
Plots a vertical line at every new day start (midnight).
Fully time-zone aware → lines adjust automatically when you change the chart’s timezone.
Customizable line style, width, and color.
Option to limit plotting to specific timeframes (e.g., show only on ≤ 1H charts).
Lightweight & optimized (does not clutter higher-timeframe charts).
🔹 Use Cases:
Quickly identify daily boundaries for intraday analysis.
Helps scalpers and day traders align trades with new day opens.
Useful for strategies that depend on daily session resets.
This tool is especially helpful for traders who want clarity when working across different time zones.
Adaptive Rolling Quantile Bands [CHE] Adaptive Rolling Quantile Bands
Part 1 — Mathematics and Algorithmic Design
Purpose. The indicator estimates distribution‐aware price levels from a rolling window and turns them into dynamic “buy” and “sell” bands. It can work on raw price or on *residuals* around a baseline to better isolate deviations from trend. Optionally, the percentile parameter $q$ adapts to volatility via ATR so the bands widen in turbulent regimes and tighten in calm ones. A compact, latched state machine converts these statistical levels into high-quality discretionary signals.
Data pipeline.
1. Choose a source (default `close`; MTF optional via `request.security`).
2. Optionally compute a baseline (`SMA` or `EMA`) of length $L$.
3. Build the *working series*: raw price if residual mode is off; otherwise price minus baseline (if a baseline exists).
4. Maintain a FIFO buffer of the last $N$ values (window length). All quantiles are computed on this buffer.
5. Map the resulting levels back to price space if residual mode is on (i.e., add back the baseline).
6. Smooth levels with a short EMA for readability.
Rolling quantiles.
Given the buffer $X_{t-N+1..t}$ and a percentile $q\in $, the indicator sorts a copy of the buffer ascending and linearly interpolates between adjacent ranks to estimate:
* Buy band $\approx Q(q)$
* Sell band $\approx Q(1-q)$
* Median $Q(0.5)$, plus optional deciles $Q(0.10)$ and $Q(0.90)$
Quantiles are robust to outliers relative to means. The estimator uses only data up to the current bar’s value in the buffer; there is no look-ahead.
Residual transform (optional).
In residual mode, quantiles are computed on $X^{res}_t = \text{price}_t - \text{baseline}_t$. This centers the distribution and often yields more stationary tails. After computing $Q(\cdot)$ on residuals, levels are transformed back to price space by adding the baseline. If `Baseline = None`, residual mode simply falls back to raw price.
Volatility-adaptive percentile.
Let $\text{ATR}_{14}(t)$ be current ATR and $\overline{\text{ATR}}_{100}(t)$ its long SMA. Define a volatility ratio $r = \text{ATR}_{14}/\overline{\text{ATR}}_{100}$. The effective quantile is:
Smoothing.
Each level is optionally smoothed by an EMA of length $k$ for cleaner visuals. This smoothing does not change the underlying quantile logic; it only stabilizes plots and signals.
Latched state machines.
Two three-step processes convert levels into “latched” signals that only fire after confirmation and then reset:
* BUY latch:
(1) HLC3 crosses above the median →
(2) the median is rising →
(3) HLC3 prints above the upper (orange) band → BUY latched.
* SELL latch:
(1) HLC3 crosses below the median →
(2) the median is falling →
(3) HLC3 prints below the lower (teal) band → SELL latched.
Labels are drawn on the latch bar, with a FIFO cap to limit clutter. Alerts are available for both the simple band interactions and the latched events. Use “Once per bar close” to avoid intrabar churn.
MTF behavior and repainting.
MTF sourcing uses `lookahead_off`. Quantiles and baselines are computed from completed data only; however, any *intrabar* cross conditions naturally stabilize at close. As with all real-time indicators, values can update during a live bar; prefer bar-close alerts for reliability.
Complexity and parameters.
Each bar sorts a copy of the $N$-length window (practical $N$ values keep this inexpensive). Typical choices: $N=50$–$100$, $q_0=0.15$–$0.25$, $k=2$–$5$, baseline length $L=20$ (if used), adaptation strength $s=0.2$–$0.7$.
Part 2 — Practical Use for Discretionary/Active Traders
What the bands mean in practice.
The teal “buy” band marks the lower tail of the recent distribution; the orange “sell” band marks the upper tail. The median is your dynamic equilibrium. In residual mode, these tails are deviations around trend; in raw mode they are absolute price percentiles. When ATR adaptation is on, tails breathe with regime shifts.
Two core playbooks.
1. Mean-reversion around a stable median.
* Context: The median is flat or gently sloped; band width is relatively tight; instrument is ranging.
* Entry (long): Look for price to probe or close below the buy band and then reclaim it, especially after HLC3 recrosses the median and the median turns up.
* Stops: Place beyond the most recent swing low or $1.0–1.5\times$ ATR(14) below entry.
* Targets: First scale at the median; optional second scale near the opposite band. Trail with the median or an ATR stop.
* Symmetry: Mirror the rules for shorts near the sell band when the median is flat to down.
2. Continuation with latched confirmations.
* Context: A developing trend where you want fewer but cleaner signals.
* Entry (long): Take the latched BUY (3-step confirmation) on close, or on the next bar if you require bar-close validation.
* Invalidation: A close back below the median (or below the lower band in strong trends) negates momentum.
* Exits: Trail under the median for conservative exits or under the teal band for trend-following exits. Consider scaling at structure (prior swing highs) or at a fixed $R$ multiple.
Parameter guidance by timeframe.
* Scalping / LTF (1–5m): $N=30$–$60$, $q_0=0.20$, $k=2$–3, residual mode on, baseline EMA $L=20$, adaptation $s=0.5$–0.7 to handle micro-vol spikes. Expect more signals; rely on latched logic to filter noise.
* Intraday swing (15–60m): $N=60$–$100$, $q_0=0.15$–0.20, $k=3$–4. Residual mode helps but is optional if the instrument trends cleanly. $s=0.3$–0.6.
* Swing / HTF (4H–D): $N=80$–$150$, $q_0=0.10$–0.18, $k=3$–5. Consider `SMA` baseline for smoother residuals and moderate adaptation $s=0.2$–0.4.
Baseline choice.
Use EMA for responsiveness (fast trend shifts) and SMA for stability (smoother residuals). Turning residual mode on is advantageous when price exhibits persistent drift; turning it off is useful when you explicitly want absolute bands.
How to time entries.
Prefer bar-close validation for both band recaptures and latched signals. If you must act intrabar, accept that crosses can “un-cross” before close; compensate with tighter stops or reduced size.
Risk management.
Position size to a fixed fractional risk per trade (e.g., 0.5–1.0% of equity). Define invalidation using structure (swing points) plus ATR. Avoid chasing when distance to the opposite band is small; reward-to-risk degrades rapidly once you are deep inside the distribution.
Combos and filters.
* Pair with a higher-timeframe median slope as a regime filter (trade only in the direction of the HTF median).
* Use band width relative to ATR as a range/trend gauge: unusually narrow bands suggest compression (mean-reversion bias); expanding bands suggest breakout potential (favor latched continuation).
* Volume or session filters (e.g., avoid illiquid hours) can materially improve execution.
Alerts for discretion.
Enable “Cross above Buy Level” / “Cross below Sell Level” for early notices and “Latched BUY/SELL” for conviction entries. Set alerts to “Once per bar close” to avoid noise.
Common pitfalls.
Do not interpret band touches as automatic signals; context matters. A strong trend will often ride the far band (“band walking”) and punish counter-trend fades—use the median slope and latched logic to separate trend from range. Do not oversmooth levels; you will lag breaks. Do not set $q$ too small or too large; extremes reduce statistical meaning and practical distance for stops.
A concise checklist.
1. Is the median flat (range) or sloped (trend)?
2. Is band width expanding or contracting vs ATR?
3. Are we near the tail level aligned with the intended trade?
4. For continuation: did the 3 steps for a latched signal complete?
5. Do stops and targets produce acceptable $R$ (≥1.5–2.0)?
6. Are you trading during liquid hours for the instrument?
Summary. ARQB provides statistically grounded, regime-aware bands and a disciplined, latched confirmation engine. Use the bands as objective context, the median as your equilibrium line, ATR adaptation to stay calibrated across regimes, and the latched logic to time higher-quality discretionary entries.
Disclaimer
No indicator guarantees profits. Adaptive Rolling Quantile Bands is a decision aid; always combine with solid risk management and your own judgment. Backtest, forward test, and size responsibly.
The content provided, including all code and materials, is strictly for educational and informational purposes only. It is not intended as, and should not be interpreted as, financial advice, a recommendation to buy or sell any financial instrument, or an offer of any financial product or service. All strategies, tools, and examples discussed are provided for illustrative purposes to demonstrate coding techniques and the functionality of Pine Script within a trading context.
Any results from strategies or tools provided are hypothetical, and past performance is not indicative of future results. Trading and investing involve high risk, including the potential loss of principal, and may not be suitable for all individuals. Before making any trading decisions, please consult with a qualified financial professional to understand the risks involved.
By using this script, you acknowledge and agree that any trading decisions are made solely at your discretion and risk.
Enhance your trading precision and confidence 🚀
Best regards
Chervolino
Killzones High/Low [FD] - ENGKillzones High/Low - ENG
Advanced Pine Script v5 indicator designed for ICT (Inner Circle Trader) strategies that identifies trading killzones, key support/resistance levels and midnight prices with granular controls for every element.
SETTINGS
General controls that affect all indicator elements:
Session Drawings Limit (1): Determines how many historical sessions to keep on chart for each element type. Higher values show more history but may slow performance
Timeframe Limit (30): Drawings disappear on timeframes equal or higher to avoid visual overload
Time Zone: Select reference timezone for sessions. America/New_York automatically adjusts for daylight saving, GMT options are fixed
Label Size: Controls global size of all labels (from Tiny to Huge)
Drawings Cutoff Time: Stops extension of all pivots at specified time (useful for end of trading day)
KILLZONES
Manages critical trading sessions with colored boxes and pivot lines:
General Controls
Show Boxes/Text: Enables visualization and texts in session boxes
Transparency: Controls opacity of boxes and text (0=opaque, 100=transparent)
Available Sessions
Five configurable sessions with individual controls for enabling, custom text, times and colors:
Asia (18:00-00:00): Blue by default
London (02:30-05:30): Red by default
N.Y. AM (07:00-11:30): Green by default
Lunch (11:30-13:00): Golden yellow, enabled by default
N.Y. PM (13:00-16:00): Purple by default
PDH / PDL
Manages Previous Day High and Previous Day Low levels:
Show PDH/PDL: Enables previous day's maximum/minimum
Extension: "Until Mitigation" (stops when broken) or "Most Recent Candle" (continues always)
Colors/Thickness: Visual customization of lines (dark purple by default, 1px thickness)
Labels: Shows "PDH"/"PDL" texts with customizable color (white by default)
PWH / PWL
Manages Previous Week High and Previous Week Low levels:
Show PWH/PWL: Enables previous week's maximum/minimum
Extension: Independent control of line extension
Colors/Thickness: Orange by default for both, 2px thickness
Labels: Configurable "PWH"/"PWL" texts
PMH / PML
Manages Previous Month High and Previous Month Low levels:
Show PMH/PML: Enables previous month's maximum/minimum using security()
Extension: Independent control like other systems
Colors/Thickness: Blue by default for both, 1px thickness
Labels: Customizable "PMH"/"PML" texts
MIDNIGHT PRICE LEVEL
Advanced system for multiple midnight prices:
Base Controls
Show Midnight Price: Enables line at pre-00:00 closing price (ICT strategy)
Midnight -2/-3 Days: Extends system to 2 and 3 days prior
Extension/Mitigation: "Until Mitigation" or "Most Recent Candle" with "Once" or "Multiple" mode
Customization
Separate Colors: D-1, D-2, D-3 with progressive transparency (gold by default)
Style/Thickness: Customizable lines (Solid, Dotted, Dashed)
Labels: Configurable texts (🌙1, 🌙2, 🌙3) with customizable background/text colors
Alerts: Alerts when mitigated during active killzones
KILLZONE LEVEL
Controls pivot lines and killzone labels:
Line Controls
Show Lines: Enables horizontal lines on killzone highs/lows
Break Alerts: Alerts when pivots are exceeded
Midpoints: Dashed lines at range center with stop option after mitigation
Label Offset: Moves labels ahead by 5 candles (0-20 configurable), rejoining when mitigated
Label Controls
Text Customization: Configurable labels for each session (Asia_H/L, London_H/L, etc.)
Background/Colors: Transparent or visible labels with customizable colors
Broken Labels: Additional text (❌ by default) and special colors when pivots mitigated
Extension: "Until Mitigation" or "Beyond Mitigation" with session filter ("Most Recent" or "All")
LABEL STYLES
Four dedicated sections to customize label graphic shapes:
Killzone Line Label Styles: Separate controls for killzone High/Low
PDH/PDL Label Styles: Customizable shapes for Previous Day levels
PWH/PWL Label Styles: Customizable shapes for Previous Week levels
PMH/PML Label Styles: Customizable shapes for Previous Month levels
Each section offers 15+ shape options (Arrows, Center, Circle, Square, Diamond, Triangles, Crosses, Flags, etc.)
MIDNIGHT LINES
System for vertical lines at 00:00:
Show Lines/Labels: Vertical lines with upward arrow labels
Customization: Color (gray by default), style, thickness of vertical lines
Labels: Configurable text ("00:00" by default) with customizable text color (black by default)
Label Offset: Percentage control (-10000% to +10000%) for vertical positioning
Extension: Configurable directions (None, Above, Below, Both)
Limit: Maximum number of lines maintained (4 by default, max 50)
The indicator offers granular control over every visual and functional aspect, making it possible to adapt it to any ICT trading strategy or personal setup.
Chanlun MACD中国股票期货类比较常用的macd版本,比系统自带的参考性强这边做个适配
The more commonly used MACD version for Chinese stock and futures markets is more referenceable than the one built into the system, and an adaptation is made here.
Volume profile time marker12 AM -12 AM marking used for volume profile tool and no trading zone showing manipulation
ChanLun FBFD PEN# 🏆 **缠中说禅FBFD专业指标(严格版) - TradingView旗舰版**
---
## 🚀 **限时发布优惠**
> ### ✨ **新版震撼发布 - 全网用户免费试用!**
> ### 🎯 **首批前100名用户专享早鸟价格 - 永久锁定优惠,后期也是这个价格**
> ### ⏰ **机会有限,错过后期价格将不定期上调**
---
## 📚 **产品背景**
### **十年匠心,重磅升级**
这套**缠中说禅FBFD指标**历经**近10年**的精心打磨与持续优化,从2015年初版设计至今,已在多个交易平台经过实战验证。现**全新升级登陆TradingView**,功能更加完善,性能更加卓越。
**真正实现了缠论原文中的所有核心理论**,包括K线包含、分型识别、笔段分析、中枢理论、买卖点定位、背离背驰等完整体系,为缠论爱好者提供**业界最专业、最全面**的技术分析工具。
---
## 🎯 **核心优势**
### **🔥 1. 全方位缠论原文功能覆盖**
- ✅ **实时K线包含处理** - 智能识别包含关系
- ✅ **精准分型标记** - 顶底分型自动识别
- ✅ **多维笔段分析** - 笔、线段完整体系
- ✅ **多级中枢联立** - K线中枢、笔中枢、线段中枢
- ✅ **智能买卖点** - 三类买卖点精准定位
- ✅ **背离背驰预警** - 独家背离背驰算法
- ✅ **走势结构递归** - 独家走势递归功能
### **⚙️ 2. 多样化笔段算法引擎**
- 🎨 **三大笔算法**: "传统笔"、"新笔"、"顶底分型笔"
- 🔧 **海量参数调节**: 次高低笔、分型区间判断等精细化控制
- 📊 **双重段划分**: 原文纯分段 + 大级别递归分段
- 🎯 **个性化定制**: 满足不同缠友的理解需求与交易风格,优化算法,加载速度飞快!
### **🌟 3. 多级别智能联立系统**
- 📈 **同步计算显示**: 笔、线段、递归高级段联动分析
- 🏗️ **独家递归算法**: 高级递归段精准识别
- 🎪 **多级中枢体系**: 三重中枢级别完整覆盖
- 📊 **全景市场分析**: 提供最全面的市场动态洞察
### **🎨 4. 专业视觉定制**
- 🌈 **自定义配色方案** - 完美匹配个人图表风格
- 💰 **价格标识显示** - 笔、段、中枢关键价位标注
- 📐 **专业辅助工具** - 均线、布林线等实用功能
- 🎁 **免费赠送MACD** - 购买用户专享配套附图指标
### **⏰ 5. 完美K线回放支持**
- 🔄 **历史数据回顾** - 完美支持TradingView回放功能
- 📚 **市场研究利器** - 提升历史走势分析能力
- 🧠 **决策能力增强** - 深化市场洞察与判断水平
---
## 📦 **产品版本**
### **🥇 版本一:专业分段版**
> **适合:传统缠论爱好者,追求经典分段算法**
**核心功能:**
- 🔸 **多种笔算法**: 分型笔、新旧笔、次高低点笔
- 🔸 **笔段细节调整**: 海量参数支持各种笔划分方案
- 🔸 **完整中枢体系**: K线中枢、笔中枢、段中枢
- 🔸 **智能预警系统**: 背离背驰提示及报警功能
- 🔸 **递归大级别**: 大级别分段递归分析
**📊
> 💡 **同行对比**: 其他平台的专业版、高级版功能,在我们这里只是基础配置
### **🥈 版本二:高级递归版** ⭐ **独家算法**
> **适合:高阶缠友,追求极致走势分析**
**独家特色:**
- 🚀 **全网罕见算法**: 纯递归版本,其他家最多只能设计到分段级别就是极限了
- 🎯 **优化高低点**: 走势结束点精准定位最高最低点
- 🏆 **自然走势结构**: 高低点分布更加自然合理
- 💎 **完整缠论元素**: 涵盖所有缠论核心要素
- ⚡ **超丰富笔细节**: 笔的处理细节极其丰富
> 🌟 **客户反馈**: 众多资深缠友首选版本,实战效果卓越
## 💎 **选择我们的理由**
- ✨ **技术领先**: 10年技术积淀,行业标杆级产品
- 🏆 **功能最全**: 业界最完整的缠论指标体系
- 🔧 **高度定制**: 海量参数,满足个性化需求
- 💪 **独家算法**: 多项独创功能,竞品无法复制
- 🛡️ **品质保证**: 经过多平台实战验证
- 🎯 **专业服务**: 提供完善的技术支持与指导
---
**🎊 立即体验,开启专业缠论分析之旅!**
售前说明:缠中说禅理论,相对比较复杂,软件尽量实现原文的功能,但是也难免有些瑕疵地方,无法处理到位,这边后期会陆续完善,介意的客户可以先试用几天,觉得合适再买,不合适就当测试下,欢迎大家反馈问题和bug,掌柜有空会后期更新修改和优化
以下是部分功能展示:
1.多级别递归
2.K线包含
3.面积统计+中枢高低点价格显示
4.多级别盘整背离背驰
5.叠加实用均线
6.分型笔
7。k线中枢
8.几十个可选参数调整
9,可选的一些报警功能,后期陆续完善,更丰富
10.走势结构标志
clanlun pen macd czsc Channel Chanlun Ultra Chan Theory chanlunzhibiao chanlunbi chanlunk
# 🏆 **Chan Zhong Shuo Chan FBFD Professional Indicator - TradingView Flagship Edition**
---
## 🚀 **Limited-Time Launch Offer**
> ### ✨ **New Version Launched - Free Trial for All Users Worldwide!**
> ### 🎯 **First 100 Users Get Exclusive Early Bird Pricing - Locked Forever**
> ### ⏰ **Limited Opportunity - Prices Will Increase Periodically After Launch**
---
## 📚 **Product Background**
### **A Decade of Craftsmanship, Major Upgrade**
This **Chan Zhong Shuo Chan FBFD Indicator** has been meticulously refined over **nearly 10 years** of continuous development and optimization. From the initial design in 2015 to today, it has been battle-tested across multiple trading platforms. Now **fully upgraded for TradingView**, featuring enhanced functionality and superior performance.
**Truly implements all core theories from the original Chan Theory texts**, including K-line containment, fractal identification, stroke-segment analysis, central pivot theory, buy/sell point positioning, divergence analysis, and complete systematic approach, providing Chan Theory enthusiasts with **the industry's most professional and comprehensive** technical analysis tools.
---
## 🎯 **Core Advantages**
### **🔥 1. Complete Chan Theory Original Text Functions**
- ✅ **Real-time K-line Containment Processing** - Intelligent containment relationship identification
- ✅ **Precise Fractal Marking** - Automatic top-bottom fractal recognition
- ✅ **Multi-dimensional Stroke-Segment Analysis** - Complete stroke and segment system
- ✅ **Multi-level Central Pivot Integration** - K-line pivots, stroke pivots, segment pivots
- ✅ **Intelligent Buy/Sell Points** - Precise positioning of three types of trading points
- ✅ **Divergence Alert System** - Proprietary divergence algorithm
- ✅ **Trend Structure Recursion** - Exclusive recursive trend analysis
### **⚙️ 2. Diversified Stroke-Segment Algorithm Engine**
- 🎨 **Three Major Stroke Algorithms**: "Traditional Stroke", "New Stroke", "Top-Bottom Fractal Stroke"
- 🔧 **Massive Parameter Control**: Sub-high/low strokes, fractal interval judgment, and fine-tuned control
- 📊 **Dual Segment Classification**: Original pure segments + high-level recursive segments
- 🎯 **Personalized Customization**: Meeting different Chan Theory practitioners' understanding and trading styles
### **🌟 3. Multi-level Intelligent Integration System**
- 📈 **Synchronized Calculation Display**: Strokes, segments, recursive high-level segments working in harmony
- 🏗️ **Proprietary Recursive Algorithm**: Precise identification of advanced recursive segments
- 🎪 **Multi-level Central Pivot System**: Complete coverage of three pivot levels
- 📊 **Panoramic Market Analysis**: Most comprehensive market dynamics insights
### **🎨 4. Professional Visual Customization**
- 🌈 **Custom Color Schemes** - Perfect match with personal chart styles
- 💰 **Price Label Display** - Key price annotations for strokes, segments, and pivots
- 📐 **Professional Auxiliary Tools** - Moving averages, Bollinger Bands, and practical features
- 🎁 **Free MACD Bonus** - Complimentary MACD sub-chart for all purchasers
### **⏰ 5. Perfect K-line Replay Support**
- 🔄 **Historical Data Review** - Perfect support for TradingView replay functionality
- 📚 **Market Research Tool** - Enhanced historical trend analysis capabilities
- 🧠 **Decision-Making Enhancement** - Deepened market insights and judgment skills
---
## 📦 **Product Versions**
### **🥇 Version One: Professional Segment Edition**
> **Suitable for: Traditional Chan Theory enthusiasts seeking classic segment algorithms**
**Core Features:**
- 🔸 **Multiple Stroke Algorithms**: Fractal strokes, old/new strokes, sub-high/low point strokes
- 🔸 **Stroke-Segment Detail Adjustment**: Massive parameters supporting various stroke classification schemes
- 🔸 **Complete Central Pivot System**: K-line pivots, stroke pivots, segment pivots
- 🔸 **Intelligent Alert System**: Divergence alerts and alarm functionality
- 🔸 **Recursive High-level**: High-level segment recursive analysis
*
> 💡 **Competitive Comparison**: What others call "Professional" or "Advanced" versions are just our basic configurations
### **🥈 Version Two: Advanced Recursive Edition** ⭐ **Exclusive Algorithm**
> **Suitable for: Advanced Chan Theory practitioners seeking ultimate trend analysis**
**Exclusive Features:**
- 🚀 **Rare Algorithm Worldwide**: Pure recursive version, industry-leading
- 🎯 **Optimized High/Low Points**: Precise positioning of trend endpoints at extreme highs/lows
- 🏆 **Natural Trend Structure**: More natural and reasonable high/low point distribution
- 💎 **Complete Chan Theory Elements**: Covers all core Chan Theory components
- ⚡ **Ultra-Rich Stroke Details**: Extremely detailed stroke processing capabilities
> 🌟 **Customer Feedback**: Preferred version by many experienced Chan Theory practitioners, proven in live trading
---
## 💎 **Why Choose Us**
- ✨ **Technical Leadership**: 10 years of technical accumulation, industry benchmark product
- 🏆 **Most Complete Features**: Industry's most comprehensive Chan Theory indicator system
- 🔧 **Highly Customizable**: Massive parameters meeting personalized needs
- 💪 **Proprietary Algorithms**: Multiple innovative features that competitors cannot replicate
- 🛡️ **Quality Assurance**: Battle-tested across multiple platforms
- 🎯 **Professional Service**: Complete technical support and guidance
---
## 🌟 **What Makes This Indicator Unique**
### **📈 Advanced Technical Implementation**
- **Real-time Processing**: All calculations update in real-time with market data
- **Memory Optimization**: Efficient handling of up to 1 million K-lines
- **Perfect Integration**: Seamless TradingView platform integration
- **Professional Visualization**: Clear, intuitive visual representation
### **🎓 Educational Value**
- **Learning Tool**: Perfect for studying Chan Theory principles
- **Historical Analysis**: Comprehensive replay functionality for backtesting
- **Pattern Recognition**: Helps identify market structures and patterns
- **Decision Support**: Provides clear buy/sell signals based on Chan Theory
### **🔧 Technical Specifications**
- **Platform**: TradingView Pine Script v6
- **Performance**: Optimized for real-time market analysis
- **Compatibility**: Works with all TradingView chart types and timeframes
- **Customization**: 20+ parameters for fine-tuning analysis
---
**🎊 Start Your Professional Chan Theory Analysis Journey Today!**
> **Ready to experience the most advanced Chan Theory indicator available?**
> **Join thousands of satisfied traders who have transformed their analysis with our professional tools.**
ChanLun ZSLX PEN
📚 产品背景
十年匠心,重磅升级
这套缠中说禅指标历经近10年的精心打磨与持续优化,从2015年初版设计至今,已在多个交易平台经过实战验证。现全新升级登陆TradingView,功能更加完善,性能更加卓越。
真正实现了缠论原文中的所有核心理论,包括K线包含、分型识别、笔段分析、中枢理论、买卖点定位、背离背驰等完整体系,为缠论爱好者提供业界最专业、最全面的技术分析工具。
🎯 核心优势
🔥 1. 全方位缠论原文功能覆盖
● ✅ 实时K线包含处理 - 智能识别包含关系
● ✅ 精准分型标记 - 顶底分型自动识别
● ✅ 多维笔段分析 - 笔、线段完整体系
● ✅ 多级中枢联立 - K线中枢、笔中枢、线段中枢
● ✅ 智能买卖点 - 三类买卖点精准定位
● ✅ 背离背驰预警 - 独家背离背驰算法
● ✅ 走势结构递归 - 独家走势递归功能
⚙️ 2. 多样化笔段算法引擎
● 🎨 三大笔算法: "传统笔"、"新笔"、"顶底分型笔"
● 🔧 海量参数调节: 次高低笔、分型区间判断等精细化控制
● 📊 双重段划分: 原文纯分段 + 大级别递归分段
● 🎯 个性化定制: 满足不同缠友的理解需求与交易风格
🌟 3. 多级别智能联立系统
● 📈 同步计算显示: 笔、线段、递归高级段联动分析
● 🏗️ 独家递归算法: 高级递归段精准识别
● 🎪 多级中枢体系: 三重中枢级别完整覆盖
● 📊 全景市场分析: 提供最全面的市场动态洞察
🎨 4. 专业视觉定制
● 🌈 自定义配色方案 - 完美匹配个人图表风格
● 💰 价格标识显示 - 笔、段、中枢关键价位标注
● 📐 专业辅助工具 - 均线、布林线等实用功能
● 🎁 免费赠送MACD - 购买用户专享配套附图指标
⏰ 5. 完美K线回放支持
● 🔄 历史数据回顾 - 完美支持TradingView回放功能
● 📚 市场研究利器 - 提升历史走势分析能力
● 🧠 决策能力增强 - 深化市场洞察与判断水平
📦 产品版本
🥇 版本一:专业分段版
适合:传统缠论爱好者,追求经典分段算法
核心功能:
● 🔸 多种笔算法: 分型笔、新旧笔、次高低点笔
● 🔸 笔段细节调整: 海量参数支持各种笔划分方案
● 🔸 完整中枢体系: K线中枢、笔中枢、段中枢
● 🔸 智能预警系统: 背离背驰提示及报警功能
● 🔸 递归大级别: 大级别分段递归分析
**📊
快照
💡 同行对比: 其他平台的"专业版"功能,在我们这里只是基础配置
🥈 版本二:高级递归版 ⭐ 独家算法
🏆 缠中说禅ZSLX专业指标 - TradingView旗舰版
🚀 限时发布优惠
✨ 新版震撼发布 - 全网用户免费试用!
🎯 首批前100名用户专享早鸟价格 - 永久锁定优惠,后期也是这个价格
⏰ 机会有限,错过后期价格将不定期上调
📚 产品背景
十年匠心,重磅升级
这套缠中说禅指标历经近10年的精心打磨与持续优化,从2015年初版设计至今,已在多个交易平台经过实战验证。现全新升级登陆TradingView,功能更加完善,性能更加卓越。
真正实现了缠论原文中的所有核心理论,包括K线包含、分型识别、笔段分析、中枢理论、买卖点定位、背离背驰等完整体系,为缠论爱好者提供业界最专业、最全面的技术分析工具。
🎯 核心优势
🔥 1. 全方位缠论原文功能覆盖
● ✅ 实时K线包含处理 - 智能识别包含关系
● ✅ 精准分型标记 - 顶底分型自动识别
● ✅ 多维笔段分析 - 笔、线段完整体系
● ✅ 多级中枢联立 - K线中枢、笔中枢、线段中枢
● ✅ 智能买卖点 - 三类买卖点精准定位
● ✅ 背离背驰预警 - 独家背离背驰算法
● ✅ 走势结构递归 - 独家走势递归功能
⚙️ 2. 多样化笔段算法引擎
● 🎨 三大笔算法: "传统笔"、"新笔"、"顶底分型笔"
● 🔧 海量参数调节: 次高低笔、分型区间判断等精细化控制
● 📊 双重段划分: 原文纯分段 + 大级别递归分段
● 🎯 个性化定制: 满足不同缠友的理解需求与交易风格
🌟 3. 多级别智能联立系统
● 📈 同步计算显示: 笔、线段、递归高级段联动分析
● 🏗️ 独家递归算法: 高级递归段精准识别
● 🎪 多级中枢体系: 三重中枢级别完整覆盖
● 📊 全景市场分析: 提供最全面的市场动态洞察
🎨 4. 专业视觉定制
● 🌈 自定义配色方案 - 完美匹配个人图表风格
● 💰 价格标识显示 - 笔、段、中枢关键价位标注
● 📐 专业辅助工具 - 均线、布林线等实用功能
● 🎁 免费赠送MACD - 购买用户专享配套附图指标
⏰ 5. 完美K线回放支持
● 🔄 历史数据回顾 - 完美支持TradingView回放功能
● 📚 市场研究利器 - 提升历史走势分析能力
● 🧠 决策能力增强 - 深化市场洞察与判断水平
📦 产品版本
🥇 版本一:专业分段版
适合:传统缠论爱好者,追求经典分段算法
核心功能:
● 🔸 多种笔算法: 分型笔、新旧笔、次高低点笔
● 🔸 笔段细节调整: 海量参数支持各种笔划分方案
● 🔸 完整中枢体系: K线中枢、笔中枢、段中枢
● 🔸 智能预警系统: 背离背驰提示及报警功能
● 🔸 递归大级别: 大级别分段递归分析
**📊
💡 同行对比: 其他平台的"专业版"功能,在我们这里只是基础配置
🥈 版本二:高级递归版 ⭐ 独家算法
适合:高阶缠友,追求极致走势分析
独家特色:
● 🚀 全网罕见算法: 纯递归版本,其他家最多只能设计到分段级别就是极限了
● 🎯 优化高低点: 走势结束点精准定位最高最低点
● 🏆 自然走势结构: 高低点分布更加自然合理
● 💎 完整缠论元素: 涵盖所有缠论核心要素
● ⚡ 超丰富笔细节: 笔的处理细节极其丰富
🌟 客户反馈: 众多资深缠友首选版本,实战效果卓越
快照
---
💎 选择我们的理由
● ✨ 技术领先: 10年技术积淀,行业标杆级产品
● 🏆 功能最全: 业界最完整的缠论指标体系
● 🔧 高度定制: 海量参数,满足个性化需求
● 💪 独家算法: 多项独创功能,竞品无法复制
● 🛡️ 品质保证: 经过多平台实战验证
● 🎯 专业服务: 提供完善的技术支持与指导
🎊 立即体验,开启专业缠论分析之旅!
售前说明:缠中说禅理论,相对比较复杂,软件尽量实现原文的功能,但是也难免有些瑕疵地方,无法处理到位,这边后期会陆续完善,介意的客户可以先试用几天,觉得合适再买,不合适就当测试下,欢迎大家反馈问题和bug,掌柜有空会后期更新修改和优化
1.多级别递归
2.K线包含
3.面积统计+中枢高低点价格显示
4.多级别盘整背离背驰
5.叠加实用均线
6.分型笔
7。k线中枢
8.几十个可选参数调整
9,可选的一些报警功能,后期陆续完善,更丰富
10.走势结构标志
clanlun pen macd czsc Channel Chanlun Ultra Chan Theory
🏆 Chan Zhong Shuo Chan ZSLX Professional Indicator - TradingView Flagship Edition
🚀 Limited-Time Launch Offer
✨ New Version Launched - Free Trial for All Users Worldwide!
🎯 First 100 Users Get Exclusive Early Bird Pricing - Locked Forever
⏰ Limited Opportunity - Prices Will Increase Periodically After Launch
📚 Product Background
A Decade of Craftsmanship, Major Upgrade
This Chan Zhong Shuo Chan FBFD Indicator has been meticulously refined over nearly 10 years of continuous development and optimization. From the initial design in 2015 to today, it has been battle-tested across multiple trading platforms. Now fully upgraded for TradingView, featuring enhanced functionality and superior performance.
Truly implements all core theories from the original Chan Theory texts, including K-line containment, fractal identification, stroke-segment analysis, central pivot theory, buy/sell point positioning, divergence analysis, and complete systematic approach, providing Chan Theory enthusiasts with the industry's most professional and comprehensive technical analysis tools.
🎯 Core Advantages
🔥 1. Complete Chan Theory Original Text Functions
● ✅ Real-time K-line Containment Processing - Intelligent containment relationship identification
● ✅ Precise Fractal Marking - Automatic top-bottom fractal recognition
● ✅ Multi-dimensional Stroke-Segment Analysis - Complete stroke and segment system
● ✅ Multi-level Central Pivot Integration - K-line pivots, stroke pivots, segment pivots
● ✅ Intelligent Buy/Sell Points - Precise positioning of three types of trading points
● ✅ Divergence Alert System - Proprietary divergence algorithm
● ✅ Trend Structure Recursion - Exclusive recursive trend analysis
⚙️ 2. Diversified Stroke-Segment Algorithm Engine
● 🎨 Three Major Stroke Algorithms: "Traditional Stroke", "New Stroke", "Top-Bottom Fractal Stroke"
● 🔧 Massive Parameter Control: Sub-high/low strokes, fractal interval judgment, and fine-tuned control
● 📊 Dual Segment Classification: Original pure segments + high-level recursive segments
● 🎯 Personalized Customization: Meeting different Chan Theory practitioners' understanding and trading styles
🌟 3. Multi-level Intelligent Integration System
● 📈 Synchronized Calculation Display: Strokes, segments, recursive high-level segments working in harmony
● 🏗️ Proprietary Recursive Algorithm: Precise identification of advanced recursive segments
● 🎪 Multi-level Central Pivot System: Complete coverage of three pivot levels
● 📊 Panoramic Market Analysis: Most comprehensive market dynamics insights
🎨 4. Professional Visual Customization
● 🌈 Custom Color Schemes - Perfect match with personal chart styles
● 💰 Price Label Display - Key price annotations for strokes, segments, and pivots
● 📐 Professional Auxiliary Tools - Moving averages, Bollinger Bands, and practical features
● 🎁 Free MACD Bonus - Complimentary MACD sub-chart for all purchasers
⏰ 5. Perfect K-line Replay Support
● 🔄 Historical Data Review - Perfect support for TradingView replay functionality
● 📚 Market Research Tool - Enhanced historical trend analysis capabilities
● 🧠 Decision-Making Enhancement - Deepened market insights and judgment skills
📦 Product Versions
🥇 Version One: Professional Segment Edition
Suitable for: Traditional Chan Theory enthusiasts seeking classic segment algorithms
Core Features:
● 🔸 Multiple Stroke Algorithms: Fractal strokes, old/new strokes, sub-high/low point strokes
● 🔸 Stroke-Segment Detail Adjustment: Massive parameters supporting various stroke classification schemes
● 🔸 Complete Central Pivot System: K-line pivots, stroke pivots, segment pivots
● 🔸 Intelligent Alert System: Divergence alerts and alarm functionality
● 🔸 Recursive High-level: High-level segment recursive analysis
●
💡 Competitive Comparison: What others call "Professional" or "Advanced" versions are just our basic configurations
🥈 Version Two: Advanced Recursive Edition ⭐ Exclusive Algorithm
Suitable for: Advanced Chan Theory practitioners seeking ultimate trend analysis
Exclusive Features:
● 🚀 Rare Algorithm Worldwide: Pure recursive version, industry-leading
● 🎯 Optimized High/Low Points: Precise positioning of trend endpoints at extreme highs/lows
● 🏆 Natural Trend Structure: More natural and reasonable high/low point distribution
● 💎 Complete Chan Theory Elements: Covers all core Chan Theory components
● ⚡ Ultra-Rich Stroke Details: Extremely detailed stroke processing capabilities
🌟 Customer Feedback: Preferred version by many experienced Chan Theory practitioners, proven in live trading
💎 Why Choose Us
● ✨ Technical Leadership: 10 years of technical accumulation, industry benchmark product
● 🏆 Most Complete Features: Industry's most comprehensive Chan Theory indicator system
● 🔧 Highly Customizable: Massive parameters meeting personalized needs
● 💪 Proprietary Algorithms: Multiple innovative features that competitors cannot replicate
● 🛡️ Quality Assurance: Battle-tested across multiple platforms
● 🎯 Professional Service: Complete technical support and guidance
🌟 What Makes This Indicator Unique
📈 Advanced Technical Implementation
● Real-time Processing: All calculations update in real-time with market data
● Memory Optimization: Efficient handling of up to 1 million K-lines
● Perfect Integration: Seamless TradingView platform integration
● Professional Visualization: Clear, intuitive visual representation
🎓 Educational Value
● Learning Tool: Perfect for studying Chan Theory principles
● Historical Analysis: Comprehensive replay functionality for backtesting
● Pattern Recognition: Helps identify market structures and patterns
● Decision Support: Provides clear buy/sell signals based on Chan Theory
🔧 Technical Specifications
● Platform: TradingView Pine Script v6
● Performance: Optimized for real-time market analysis
● Compatibility: Works with all TradingView chart types and timeframes
● Customization: 20+ parameters for fine-tuning analysis
🎊 Start Your Professional Chan Theory Analysis Journey Today!
Ready to experience the most advanced Chan Theory indicator available?
Join thousands of satisfied traders who have transformed their analysis with our professional tools.
MaxAlgo - HTF Bias TableHTF Bias Tracker
Overview
The HTF Bias Tracker is a custom indicator designed to help traders monitor higher time frame (HTF) market biases while trading on lower time frames. It provides a clear visual table displaying the bias (bullish, bearish, mixed, or neutral) based on whether the current HTF candle has broken the high or low of the previous HTF candle. Additionally, it shows the current candle's condition (bullish or bearish based on close relative to open). This tool is particularly useful for multi-timeframe analysis, allowing traders to align lower time frame entries with higher time frame trends without switching charts.
The indicator does not generate buy/sell signals but offers contextual bias information to inform trading decisions. It is built for flexibility, supporting up to 5 customizable time frames (default: 1H, 4H, Daily, Weekly, Monthly) and can be used on any chart time frame.
How It Works
For each selected higher time frame (HTF):
Bias Calculation (H/L Break Column):
The indicator checks if the current HTF candle's high has exceeded the previous HTF candle's high (bullish break) or if the low has fallen below the previous HTF candle's low (bearish break).
Bullish: Current high > previous high (no low break).
Bearish: Current low < previous low (no high break).
Mixed: Both high and low breaks occur.
Neutral: No breaks yet. In this case, the text is colored based on the last completed break from the prior candle (green for bullish, red for bearish, orange for mixed) to maintain context.
Candle Condition (Candle Column):
Determines if the current HTF candle is bullish (close > open) or bearish (close <= open).
The results are displayed in a table with arrows (↑ for bullish, ↓ for bearish, ↔ for mixed) and color-coded text for quick readability.
The bias updates in real-time as the HTF candle develops, but final confirmation occurs at the HTF candle close.
This logic is rooted in price action principles: breaking a previous candle's extreme often indicates momentum. For example, historical data across various markets shows that when a candle takes the low of the previous candle, there's approximately a 70% probability it closes bearish (and vice versa for highs closing bullish). This can help gauge the likelihood of trend continuation, but results vary by asset, time frame, and market conditions—always backtest for your setup.
Features
Customizable Time Frames: Select up to 5 HTFs via inputs (e.g., "60" for 1H, "D" for Daily). Leave blank to disable.
Table Display: A compact table shows TF, H/L Break bias, and Candle condition. Includes headers for clarity.
Visual Enhancements: Color-coded text (green for bullish, red for bearish, orange for mixed, gray for neutral without prior bias). Arrows provide at-a-glance direction.
User Options:
Table Background Color: Adjust transparency and color for better visibility.
Table Position: Choose from 9 positions (e.g., Bottom Right default).
Border Width (Padding): Increase for more spacing around the table (min 0).
No Overlays: The indicator appears as a non-overlay pane, keeping your chart clean.
Supports all symbols and time frames, but best on lower TFs (e.g., 1m-15m) for monitoring HTFs.
How to Use It
Add to Chart: Search for "HTF Bias Tracker" in TradingView's indicator library and add it to your chart.
Configure Inputs: Set your desired HTFs, position, and colors.
Interpret the Table:
Look for alignment across multiple HTFs (e.g., multiple "Bullish ↑" biases suggest upward momentum).
Use the H/L Break as a directional filter: Enter long trades only when HTF bias is bullish or neutral with a prior bull break.
Combine with Candle Condition for confirmation: A bearish bias with a bearish candle might signal short opportunities.
Trading Example:
On a 1m chart, if the 1H bias shows "Bearish ↓" (low of previous 1H broken), there's ~70% chance the 1H closes lower. Wait for lower TF pullbacks to enter shorts, aligning with the HTF downtrend.
For scalping: If Daily is "Bullish ↑" but 4H is "Neutral ↓" (prior bear break), consider fading minor pullbacks but avoid counter-trend trades.
Risk Management: Always use stop-losses based on recent highs/lows and position size appropriately. This indicator aids bias assessment but should be combined with other tools like support/resistance or oscillators.
Strategy Ideas:
Trend Alignment: Trade in the direction of the majority HTF biases.
Breakout Confirmation: When a break occurs, monitor for volume or price action confirmation on your trading TF.
Reversion Plays: In ranging markets, a "Mixed ↔" bias might signal indecision—avoid trades until resolution.
Backtest the probability edge (e.g., via Pine Script strategies) to quantify performance in your markets.
Limitations and Disclaimer
The ~70% probability mentioned is a general observation from historical price action studies (e.g., across forex and indices); it is not a guarantee and should be verified with your own data. No backtesting results are provided here—users are encouraged to test independently.
The indicator relies on request.security() for HTF data, which may have minor delays in real-time.
This is not financial advice. Trading involves risk, and past performance does not predict future results. Use at your own discretion and consult a professional advisor if needed.
RLMC TMAS ALPHABOT by SAMOEDEFITrading the moving averages snipes
TMAS
an indicator that is a collection of a variety of things you can choose to look for whether its bos or order blocks this indicator truly does it all
created by samoedefi
how we doing?
RLMCHILL COLDZONE PYROS [SAMOEDEFI, M.O.E.]RLMC"S OWN VERSION of WHAT I CALL
MONEY ON EMAS
M>O)E
produced by samoedefi,,,
continuing to drop gems per usual
RLMC "AT BOT"by SAMOEDEFI
🎁 <174> 25_0825 ATR Pips — Zero-Centered BB2ATR (Average True Range) is a volatility indicator that measures how much price typically moves per period—not direction, just magnitude.
Calculation:
True Range (TR) = max( high–low, |high–prev close|, |low–prev close| ).
ATR = a moving average (Wilder’s smoothing by default) of TR over N periods (commonly 14).
What it tells you: Bigger ATR ⇒ higher volatility; smaller ATR ⇒ quieter market.
Common uses:
• Position sizing (risk per trade)
• Volatility-based stops/targets (e.g., stop = entry − 1.5×ATR)
• Breakout filters and trailing stops (Chandelier Exit, Supertrend).
Notes: ATR is in price units; to compare across assets or time, use ATR% = ATR / price. It spikes on gaps and doesn’t predict direction.
NY Session Candle (09:30-16:00 ET, Mon-Fri)This indicator plots one synthetic candle per day that represents the official New York trading session (09:30–16:00 ET).
It aggregates the open, high, low, and close across the entire session and draws a single candle on your chart, making it easier to compare session ranges, direction, and volatility.
Features
Aggregates intraday OHLC into one candle per session.
Colors the candle green/red depending on close vs. open.
Excludes weekends (Sat/Sun) automatically.
Adjustable timezone and session window in settings.
Works on any intraday chart.
Use case
Helps traders visually analyze how each New York session behaved without changing chart timeframes. It is a visualization tool only and does not generate trading signals or predictions.
Notes
The script does not repaint and does not use lookahead.
It is for analysis purposes only, not a trading strategy.
Original code; no third-party scripts reused.
STBBT 📘 STBBT (Simple Two Bar Break Through)
Overview
STBBT plots breakout signals whenever the current bar breaks above or below the previous bar’s high/low.
It is a **simple and transparent breakout indicator**, designed to highlight every breakout event without complex filters.
If both directions are broken in the same bar, both signals are shown.
- "H" → Current bar’s high > Previous bar’s high
- "L" → Current bar’s low < Previous bar’s low
- Both can appear simultaneously on the same candle
---
Key Features
1. **Clear Breakout Logic**
• Detects when price moves beyond the previous candle’s range.
• High and Low breakouts are handled separately.
2. **Confirmation Options**
• Real-time mode: signals appear intrabar as soon as break occurs.
• Close-confirmation mode: signals appear only after bar close beyond previous high/low (reduces repainting).
3. **Visualization**
• "H" label above bars when high is broken.
• "L" label below bars when low is broken.
• Labels are gray with 60% transparency for a clean look.
• Optional guide lines for previous bar’s high/low.
4. **Dual Signal Support**
• If both high and low are broken in one bar, both H and L are displayed.
5. **Alerts**
• Alerts are available for both High and Low breakouts.
• Works in both real-time and close-confirmed modes.
---
How to Use
• Add STBBT to your TradingView chart.
• Choose between real-time or close-confirmed signals.
• Watch for H and L signals to identify momentum breakouts of the previous bar.
• Combine with other filters (trend, volume, higher timeframe) for stronger confirmation.
---
👉 In short:
**STBBT highlights simple, clean breakouts of the previous bar’s range.**
It shows H for high breaks, L for low breaks, and both if a candle breaks in both directions.
Hitu - MTF High/Low Marker
This indicator is a powerful tool for traders, designed to display the high and low levels from multiple significant timeframes directly on your chart. It helps you quickly identify key support, resistance, and liquidity levels at a glance, improving your understanding of the market structure.
Key Features:
* Multi-Timeframe Support: Visualize high and low levels from Monthly, Weekly, Daily, 4H, 1H, 15M, and 5M timeframes.
* Full Customization: Each timeframe's line can be customized with your preferred color and style (Solid, Dashed, or Dotted) directly from the settings.
* Toggle On/Off: You have complete control to enable or disable any timeframe level to match your specific trading strategy.
How It Helps:
The MTF High/Low Marker simplifies the process of finding crucial price zones. By seeing key highs and lows from higher timeframes on your current chart, you can make more informed decisions about your entries, exits, and overall risk management.
Market Imbalance Tracker (Inefficient Candle + FVG)# 📊 Overview
This indicator combines two imbalance concepts:
• **Squared Up Points (SUP)** – midpoints of large, "inefficient" candles that often attract price back.
• **Fair Value Gaps (FVG)** – 3-candle gaps created by strong impulse moves that often get "filled."
Use them separately or together. Confluence between a SUP line and an FVG boundary/midpoint is high-value.
---
# ⚡ Quick Start (2 minutes)
1. **Add to chart** → keep defaults (Percentile method, 80th percentile, 100-bar lookback).
2. **Watch** for dashed SUP lines to print after large candles.
3. **Toggle Show FVG** → see green/red boxes where gaps exist.
4. **Turn on alerts** → New SUP created, SUP touched, New FVG.
5. **Trade the reaction** → look for confluence (SUP + FVG + S/R), then manage risk.
---
# 🛠 Features
## 🔹 Squared Up Points (SUP)
• **Purpose:** Midpoint of a large candle → potential support/resistance magnet.
• **Detection:** Choose *Percentile* (adaptive) or *ATR Multiple* (absolute).
• **Validation:** Only plots if the preceding candle does not touch the midpoint (with tolerance).
• **Lifecycle:** Line auto-extends into the future; it's removed when touched or aged out.
• **Visual:** Horizontal dashed line (color/width configurable; style fixed to dashed if not exposed).
## 🔹 Fair Value Gaps (FVG)
• **Purpose:** 3-candle gaps from an impulse; price often revisits to "fill."
• **Detection:** Requires a strong directional candle (Marubozu threshold) creating a gap.
• **Types:**
- **Bullish FVG (Green):** Gap below; expectation is downward fill.
- **Bearish FVG (Red):** Gap above; expectation is upward fill.
• **Close Rules (if implemented):**
- *Full Fill:* Gap closes when the opposite boundary is tagged.
- *Midpoint Fill:* Gap closes when its midpoint is tagged.
• **Visual:** Colored boxes; optional split-coloring to emphasize the midpoint.
> **Note:** If a listed FVG option isn't visible in Inputs, you're on a lighter build; use the available switches.
---
# ⚙️ Settings
## SUP Settings
• **Candle Size Method:** Percentile (top X% of recent ranges) or ATR Multiple.
• **Candle Size Percentile:** e.g., 80 → top 20% largest candles.
• **ATR Multiple & Period:** e.g., 1.5 × ATR(14).
• **Percentile Lookback:** Bars used to compute percentile.
• **Lookback Period:** How long SUP lines remain eligible before auto-cleanup.
• **Touch Tolerance (%):** Buffer based on the inefficient candle's range (0% = exact touch).
## Line Appearance
• **Line Color / Width:** Customizable.
• **Style:** Dashed (fixed unless you expose a style input).
## FVG Settings (if present in your build)
• **Show FVG:** On/Off.
• **Close Method:** Full Fill or Midpoint.
• **Marubozu Wick Tolerance:** Max wick % of the impulse bar.
• **Use Split Coloring:** Two-tone box halves around midpoint.
• **Colors:** Bullish/Bearish, and upper/lower halves (if split).
• **Max FVG Age:** Auto-remove older gaps.
---
# 📈 How to Use
## Trading Applications
• **SUP Lines:** Expect reaction on first touch; use as S/R or profit-taking magnets.
• **FVG Fills:** Price frequently tags the midpoint/boundary before continuing.
• **Confluence:** SUP at an FVG midpoint/boundary + higher-timeframe S/R = higher quality.
• **Bias:** Clusters of unfilled FVGs can hint at path of least resistance.
## Best Practices
• **Timeframe:** HTFs for swing levels, LTFs for execution.
• **Volume:** High volume at level = stronger signal.
• **Context:** Trade with broader trend or at least avoid counter-trend without confirmation.
• **Risk:** Always pre-define invalidation; structures fail in chop.
---
# 🔔 Alerts
• **New SUP Created** – When a qualifying inefficient candle prints a SUP midpoint.
• **SUP Touched/Invalidated** – When price touches within tolerance.
• **New FVG Detected** – When a valid gap forms per your rules.
> **Tip:** Set alerts *Once Per Bar Close* on HTFs; *Once* on LTFs to avoid noise.
---
# 🧑💻 Technical Notes
• **Percentile vs ATR:** Percentile adapts to volatility; ATR gives consistency for backtesting.
• **FVG Direction Logic:** Gap above price = bearish (expect up-fill); below = bullish (expect down-fill).
• **Performance:** Limits on lines/boxes and auto-aging keep things snappy.
---
# ⚠️ Limitations
• Imbalances are **context tools**, not signals by themselves.
• Works best with trend or clear impulses; expect noise in narrow ranges.
• Lower-timeframe gaps can be plentiful and lower quality.
---
# 📌 Version & Requirements
• **Pine Script v6**
• Heavy drawings may require **TradingView Pro** or higher (object limits).
---
*For best results, combine with your existing trading strategy and proper risk management.*
Fear & Greed Oscillator — LEAP Puts (v6, manual DMI/ADX)Fear & Greed Oscillator — LEAP Puts (v6, manual DMI/ADX) is a Puts-focused mirror of the Calls version, built to flag top risk and momentum rollovers for timing LEAP Put entries. It outputs a smoothed composite from −100 to +100 using slower MACD, manual DMI/ADX (Wilder), RSI and Stoch RSI extremes, OBV distribution vs. accumulation, and volume spike & direction, with optional Put/Call Ratio and IV Rank inputs. All thresholds, weights, and smoothing match the Calls script for 1:1 customization, and a component table shows what’s driving the score. Reading is simple: higher values = rising top-risk (red shading above “Top-Risk”); lower values = deep dip / bounce risk (green shading). Built-in alerts cover Top-Risk, Deep Dip, and zero-line crosses for clear, actionable cues.
Volume Weighted Average Price HPSIt helps you to get to know about the volume basis on monthly , yearly and so on.
Killzones High/Low [FD] - ITADESCRIPTION ENGLISH - ITALIAN
Killzones High/Low - ITA - Indicator Description
Advanced Pine Script v5 indicator designed for ICT (Inner Circle Trader) strategies that identifies trading killzones, key support/resistance levels and midnight prices with granular controls for every element.
SETTINGS
General controls that affect all indicator elements:
Session Drawings Limit (1): Determines how many historical sessions to keep on chart for each element type. Higher values show more history but may slow performance
Timeframe Limit (30): Drawings disappear on timeframes equal or higher to avoid visual overload
Time Zone: Select reference timezone for sessions. America/New_York automatically adjusts for daylight saving, GMT options are fixed
Label Size: Controls global size of all labels (from Tiny to Huge)
Drawings Cutoff Time: Stops extension of all pivots at specified time (useful for end of trading day)
KILLZONES
Manages critical trading sessions with colored boxes and pivot lines:
General Controls
Show Boxes/Text: Enables visualization and texts in session boxes
Transparency: Controls opacity of boxes and text (0=opaque, 100=transparent)
Available Sessions
Five configurable sessions with individual controls for enabling, custom text, times and colors:
Asia (18:00-00:00): Blue by default
London (02:30-05:30): Red by default
N.Y. AM (07:00-11:30): Green by default
Lunch (11:30-13:00): Golden yellow, enabled by default
N.Y. PM (13:00-16:00): Purple by default
PDH / PDL
Manages Previous Day High and Previous Day Low levels:
Show PDH/PDL: Enables previous day's maximum/minimum
Extension: "Until Mitigation" (stops when broken) or "Most Recent Candle" (continues always)
Colors/Thickness: Visual customization of lines (dark purple by default, 1px thickness)
Labels: Shows "PDH"/"PDL" texts with customizable color (white by default)
PWH / PWL
Manages Previous Week High and Previous Week Low levels:
Show PWH/PWL: Enables previous week's maximum/minimum
Extension: Independent control of line extension
Colors/Thickness: Orange by default for both, 2px thickness
Labels: Configurable "PWH"/"PWL" texts
PMH / PML
Manages Previous Month High and Previous Month Low levels:
Show PMH/PML: Enables previous month's maximum/minimum using security()
Extension: Independent control like other systems
Colors/Thickness: Blue by default for both, 1px thickness
Labels: Customizable "PMH"/"PML" texts
MIDNIGHT PRICE LEVEL
Advanced system for multiple midnight prices:
Base Controls
Show Midnight Price: Enables line at pre-00:00 closing price (ICT strategy)
Midnight -2/-3 Days: Extends system to 2 and 3 days prior
Extension/Mitigation: "Until Mitigation" or "Most Recent Candle" with "Once" or "Multiple" mode
Customization
Separate Colors: D-1, D-2, D-3 with progressive transparency (gold by default)
Style/Thickness: Customizable lines (Solid, Dotted, Dashed)
Labels: Configurable texts (🌙1, 🌙2, 🌙3) with customizable background/text colors
Alerts: Alerts when mitigated during active killzones
KILLZONE LEVEL
Controls pivot lines and killzone labels:
Line Controls
Show Lines: Enables horizontal lines on killzone highs/lows
Break Alerts: Alerts when pivots are exceeded
Midpoints: Dashed lines at range center with stop option after mitigation
Label Offset: Moves labels ahead by 5 candles (0-20 configurable), rejoining when mitigated
Label Controls
Text Customization: Configurable labels for each session (Asia_H/L, London_H/L, etc.)
Background/Colors: Transparent or visible labels with customizable colors
Broken Labels: Additional text (❌ by default) and special colors when pivots mitigated
Extension: "Until Mitigation" or "Beyond Mitigation" with session filter ("Most Recent" or "All")
LABEL STYLES
Four dedicated sections to customize label graphic shapes:
Killzone Line Label Styles: Separate controls for killzone High/Low
PDH/PDL Label Styles: Customizable shapes for Previous Day levels
PWH/PWL Label Styles: Customizable shapes for Previous Week levels
PMH/PML Label Styles: Customizable shapes for Previous Month levels
Each section offers 15+ shape options (Arrows, Center, Circle, Square, Diamond, Triangles, Crosses, Flags, etc.)
MIDNIGHT LINES
System for vertical lines at 00:00:
Show Lines/Labels: Vertical lines with upward arrow labels
Customization: Color (gray by default), style, thickness of vertical lines
Labels: Configurable text ("00:00" by default) with customizable text color (black by default)
Label Offset: Percentage control (-10000% to +10000%) for vertical positioning
Extension: Configurable directions (None, Above, Below, Both)
Limit: Maximum number of lines maintained (4 by default, max 50)
The indicator offers granular control over every visual and functional aspect, making it possible to adapt it to any ICT trading strategy or personal setup.
---ITALIANO---
Killzones High/L ow - ITA
Indicatore avanzato per Pine Script v5 progettato per strategie ICT (Inner Circle Trader) che identifica killzones di trading, livelli chiave di supporto/resistenza e prezzi di mezzanotte con controlli granulari per ogni elemento.
IMPOSTAZIONI
Controlli generali che influenzano tutti gli elementi dell'indicatore:
-Limite Disegni Sessione (1): Determina quante sessioni storiche mantenere sul grafico per ogni tipo di elemento. Valori più alti mostrano più cronologia ma possono rallentare le prestazioni
-Limite Timeframe (30): I disegni scompaiono su timeframe uguali o superiori per evitare sovraccarico visivo
-Fuso Orario: Seleziona il fuso di riferimento per le sessioni. America/New_York si regola automaticamente per l'ora legale, le opzioni GMT sono fisse
-Dimensione Etichette: Controlla la dimensione globale di tutte le etichette (da Minuscola a Enorme)
-Orario Limite Disegni: Ferma l'estensione di tutti i pivot all'orario specificato (utile per fine giornata di trading)
KILLZONES
Gestisce le sessioni di trading critiche con riquadri colorati e linee pivot:
Controlli Generali
-Mostra Riquadri/Testo: Abilita visualizzazione e testi nei riquadri delle sessioni
-Trasparenza: Controlla opacità di riquadri e testo (0=opaco, 100=trasparente)
Sessioni Disponibili
Cinque sessioni configurabili con controlli individuali per abilitazione, testo personalizzato, orari e colori:
Asia (18:00-00:00): Blu di default
London (02:30-05:30): Rosso di default
N.Y. AM (07:00-11:30): Verde di default
Lunch (11:30-13:00): Giallo dorato, abilitata di default
N.Y. PM (13:00-16:00): Viola di default
PDH / PDL
Gestisce i livelli Previous Day High e Previous Day Low:
-Mostra PDH/PDL: Abilita massimo/minimo del giorno precedente
-Estensione: "Fino a Mitigazione" (si ferma quando rotto) o "Candela Più Recente" (continua sempre)
-Colori/Spessore: Personalizzazione visiva delle linee (viola scuro di default, spessore 1px)
-Etichette: Mostra testi "PDH"/"PDL" con colore personalizzabile (bianco di default)
PWH / PWL
Gestisce i livelli Previous Week High e Previous Week Low:
-Mostra PWH/PWL: Abilita massimo/minimo della settimana precedente
-Estensione: Controllo indipendente dell'estensione delle linee
-Colori/Spessore: Arancione di default per entrambi, spessore 2px
-Etichette: Testi "PWH"/"PWL" configurabili
PMH / PML
Gestisce i livelli Previous Month High e Previous Month Low:
-Mostra PMH/PML: Abilita massimo/minimo del mese precedente utilizzando security()
-Estensione: Controllo indipendente come gli altri sistemi
-Colori/Spessore: Blu di default per entrambi, spessore 1px
-Etichette: Testi "PMH"/"PML" personalizzabili
MIDNIGHT PRICE LEVEL
Sistema avanzato per prezzi di mezzanotte multipli:
Controlli Base
-Mostra Midnight Price: Abilita linea al prezzo di chiusura pre-00:00 (strategia ICT)
-Midnight -2/-3 Giorni: Estende il sistema a 2 e 3 giorni precedenti
-Estensione/Mitigazione: "Fino a Mitigazione" o "Candela Più Recente" con modalità "Una Volta" o "Multipla"
Personalizzazione
-Colori separati: D-1, D-2, D-3 con trasparenza progressiva (giallo oro di default)
-Stile/Spessore: Linee personalizzabili (Solida, Punteggiata, Tratteggiata)
-Etichette: Testi configurabili (🌙1, 🌙2, 🌙3) con colori sfondo/testo personalizzabili
-Avvisi: Alert quando mitigati durante killzones attive
KILLZONE LEVEL
Controlla linee pivot e etichette delle killzones:
Controlli Linee
-Mostra Linee: Abilita linee orizzontali sui massimi/minimi delle killzones
-Avvisi Rottura: Alert quando pivot vengono superati
-Punti Medi: Linee tratteggiate al centro del range con opzione di stop dopo mitigazione
-Offset Etichette: Sposta etichette avanti di 5 candele (0-20 configurabile), ricongiungendole quando mitigate
Controlli Etichette
-Personalizzazione Testi: Etichette configurabili per ogni sessione (Asia_H/L, London_H/L, ecc.)
-Sfondo/Colori: Etichette trasparenti o visibili con colori personalizzabili
-Etichette Rotte: Testo aggiuntivo (❌ di default) e colori speciali quando pivot mitigati
-Estensione: "Fino a Mitigazione" o "Oltre Mitigazione" con filtro sessioni ("Più Recente" o "Tutte")
STILI ETICHETTE
Tre sezioni dedicate per personalizzare la forma grafica delle etichette:
-Stili Etichette Linee Killzones: Controlli separati per High/Low delle killzones
-Stili Etichette PDH/PDL: Forme personalizzabili per Previous Day levels
-Stili Etichette PWH/PWL: Forme personalizzabili per Previous Week levels
-Stili Etichette PMH/PML: Forme personalizzabili per Previous Month levels
Ogni sezione offre 15+ opzioni di forma (Frecce, Centro, Cerchio, Quadrato, Diamante, Triangoli, Croci, Bandiere, ecc.)
LINEE MEZZANOTTE
Sistema per linee verticali alle ore 00:00:
-Mostra Linee/Etichette: Linee verticali con etichette freccia verso l'alto
-Personalizzazione: Colore (grigio di default), stile, spessore delle linee verticali
-Etichette: Testo configurabile ("00:00" di default) con colore testo personalizzabile (nero di default)
-Offset Etichette: Controllo percentuale (-10000% a +10000%) per posizionamento verticale
-Estensione: Direzioni configurabili (Nessuna, Sopra, Sotto, Entrambe)
-Limite: Numero massimo linee mantenute (4 di default, max 50)
L'indicatore offre controllo granulare su ogni aspetto visivo e funzionale, rendendo possibile adattarlo a qualsiasi strategia di trading ICT o setup personale.
Timeframe Shift AlertIf the higher timeframe flips bullish, you’ll get a notification like:
“✅ Higher TF (240) just flipped from Bearish → Bullish”
• If it flips bearish, you’ll get:
“❌ Higher TF (240) just flipped from Bullish → Bearish”