Market Regime Storyline v6Title: Market Regime Storyline
Description:
The Market Regime Storyline indicator identifies and displays the current market condition or "regime" through a comprehensive framework that combines trend direction and volatility analysis.
The indicator classifies market conditions into four distinct regimes:
Uptrend: Price is above the trend moving average with short-term momentum confirming upward movement
Downtrend: Price is below the trend moving average with short-term momentum confirming downward movement
Squeeze: Low normalized volatility indicating a period of consolidation and potential impending breakout
Chop: Sideways, range-bound price action with no clear directional bias and normal volatility
Key features include:
• Clear identification of the dominant market regime with visual background coloring
• Continuous display of the current regime and normalized volatility level in the upper-left corner
• Labels marking transitions between different market regimes
• Subtle background coloring that provides visual context without visual clutter
The indicator combines trend determination (using an exponential moving average and momentum confirmation) with volatility normalization to provide a complete picture of the prevailing market environment. This regime identification helps traders adapt their strategies to the current market conditions, whether trending, consolidating, or ranging.
This approach recognizes that different trading strategies perform optimally in different market environments, allowing users to adjust their approach based on whether the market is exhibiting trending behavior, preparing for a volatility expansion, or trading in a range-bound manner.
Category: Trend Analysis
Tags: Market Regime, Trend Identification, Volatility Squeeze, Market Conditions, Consolidation, Trending, Range-Bound, Regime Change, Volatility Normalization, Market Environment
Recommended Publishing Information:
The Market Regime Storyline indicator is designed to provide traders with a clear, unambiguous identification of the prevailing market condition. By categorizing market behavior into distinct regimes, the indicator enables users to:
Determine whether the market is exhibiting directional trending behavior that favors trend-following strategies
Identify periods of low volatility consolidation (squeezes) that often precede significant directional moves
Recognize range-bound, non-directional market conditions where mean reversion or breakout strategies may be more appropriate
The indicator uses a combination of trend filtering through a primary moving average and momentum confirmation, along with normalized volatility measurement, to provide a robust regime classification system. The normalized volatility component helps distinguish between true consolidation periods (squeezes) and typical sideways movement (chop), providing additional context for anticipating potential changes in market behavior.
This regime-based approach acknowledges the reality that all trading strategies do not perform equally well in all market environments, and provides a framework for adapting trading approaches to the prevailing market conditions.
The combination of these classification elements and the clear visual presentation makes this indicator particularly useful for traders who need to adjust their strategy depending on whether the market is in a trending, consolidating, or range-bound state.
指标和策略
Moving Average 13 Exponential//@version=6
indicator(title="Moving Average 13 Exponential", shorttitle="EMA", overlay=true, timeframe="", timeframe_gaps=true)
len = input.int(9, minval=1, title="Length")
src = input(close, title="Source")
offset = input.int(title="Offset", defval=0, minval=-500, maxval=500, display = display.data_window)
out = ta.ema(src, len)
plot(out, title="EMA", color=color.yellow, offset=offset)
// Smoothing MA inputs
GRP = "Smoothing"
TT_BB = "Only applies when 'SMA + Bollinger Bands' is selected. Determines the distance between the SMA and the bands."
maTypeInput = input.string("None", "Type", options = , group = GRP, display = display.data_window)
var isBB = maTypeInput == "SMA + Bollinger Bands"
maLengthInput = input.int(14, "Length", group = GRP, display = display.data_window, active = maTypeInput != "None")
bbMultInput = input.float(2.0, "BB StdDev", minval = 0.001, maxval = 50, step = 0.5, tooltip = TT_BB, group = GRP, display = display.data_window, active = isBB)
var enableMA = maTypeInput != "None"
// Smoothing MA Calculation
ma(source, length, MAtype) =>
switch MAtype
"SMA" => ta.sma(source, length)
"SMA + Bollinger Bands" => ta.sma(source, length)
"EMA" => ta.ema(source, length)
"SMMA (RMA)" => ta.rma(source, length)
"WMA" => ta.wma(source, length)
"VWMA" => ta.vwma(source, length)
// Smoothing MA plots
smoothingMA = enableMA ? ma(out, maLengthInput, maTypeInput) : na
smoothingStDev = isBB ? ta.stdev(out, maLengthInput) * bbMultInput : na
plot(smoothingMA, "EMA-based MA", color=color.yellow, display = enableMA ? display.all : display.none, editable = enableMA)
bbUpperBand = plot(smoothingMA + smoothingStDev, title = "Upper Bollinger Band", color=color.green, display = isBB ? display.all : display.none, editable = isBB)
bbLowerBand = plot(smoothingMA - smoothingStDev, title = "Lower Bollinger Band", color=color.green, display = isBB ? display.all : display.none, editable = isBB)
fill(bbUpperBand, bbLowerBand, color= isBB ? color.new(color.green, 90) : na, title="Bollinger Bands Background Fill", display = isBB ? display.all : display.none, editable = isBB)
Burry Bubble DetectorThis indicator implements Michael Burry's bubble detection methodology, originally outlined in his famous 2020 analysis of GameStop (GME). Burry identified extreme bubble conditions when a stock's price significantly deviates from its fundamental book value, specifically when the Price-to-Book ratio exceeds extreme multiples.
The indicator creates valuation zones based on book value per share and identifies when a stock enters bubble territory according to Burry's criteria:
• Deep Value Zone: Price ≤ 0.5x Book Value (Burry's preferred buying area)
• Fair Value: Price between 0.5x and 1.5x Book Value
• Bubble Warning: Price exceeds user-defined multiple of book value (default 3x)
• Extreme Bubble: Price exceeds higher multiple of book value (default 5x)
Key features include:
Visual bubble zones with dynamic background coloring
Price-to-Book ratio monitoring
Speculation Score combining valuation extremes, volume spikes, and volatility
Entry signals when price enters the deep value zone
Comprehensive dashboard displaying current valuation zone and key metrics
The indicator requires user input of fundamental data (book value and shares outstanding) to establish the baseline valuation framework. Once configured, it continuously monitors whether the current price represents fair value or extreme speculation relative to the company's book value.
This methodology is particularly useful for identifying when stocks have detached from fundamental value and entered unsustainable bubble conditions, regardless of short-term price momentum. Additional Publishing Information:
When publishing, you may want to include the following notes in the description or as additional context:
"This indicator requires proper configuration of fundamental inputs (book value and shares outstanding) for accurate bubble detection. These values should be updated periodically to reflect the company's current financial position. The indicator is most effective when used with companies that have meaningful book value and where Price-to-Book serves as a relevant valuation metric.
The bubble detection framework is based on the principle that sustained prices significantly exceeding several multiples of book value represent speculative excess rather than fundamental value creation."
This description clearly explains the theoretical foundation of the indicator, its operational requirements, and the specific methodology it implements. The tags cover the key concepts and make the indicator discoverable for users specifically interested in value investing, bubble detection, and fundamental valuation analysis.
XAU Power Meter + HTF FVG SystemWhat is this?
XAU Power Meter + HTF FVG System is an execution-support tool for XAUUSD that combines:
Local trend & momentum on your entry timeframe (e.g. 5m)
Volatility regime (ATR)
Higher-timeframe FVG bias (e.g. 1H)
The goal is simple: filter out low-quality trades and size up only when the market actually moves.
Core Components
1. LTF Trend (MA Stack 20 / 50 / 200)
The indicator builds a “stacked trend” using three MAs:
Bullish trend → price > MA20 > MA50 > MA200
Bearish trend → price < MA20 < MA50 < MA200
Anything else → RANGE
This gives a clean directional bias for intraday execution.
2. CCI Impulse (“Power”)
The CCI block measures the strength of the current move via |CCI| and classifies it into 4 bands:
LOW – weak momentum, usually not worth it
MEDIUM – acceptable impulse
HIGH – strong impulse
EXTREME – very strong, potential blow-off / late entry zone
These bands are used both for signal quality (Grade) and for position size guidance.
3. ATR Volatility Regime
ATR(14) is compared against its own SMA(100) to classify volatility:
QUIET – ATR < K * ATR_slow
NORMAL
ACTIVE – ATR > K * ATR_slow
You don’t want to size up in a dead market. ATR regime is used inside the Grade calculation.
4. Grade System (A / B / C / X)
The indicator compresses Trend + CCI + ATR into a single Grade:
A – In trend, strong impulse (HIGH/EXTREME), active volatility → top setups
B – In trend, at least MEDIUM impulse, acceptable volatility → good setups
C – In trend, but weaker conditions → borderline, be selective
X – Out of trend or no momentum → avoid
Internally, execution signals require Grade ≥ B for two bars in a row, to avoid one-bar “fake” spikes.
5. HTF FVG Bias (e.g. 1H)
On a higher timeframe (default: 1H), the script runs a Fair Value Gap engine with:
EMA 50/200 trend filter
ATR-based body filter (minimum candle strength)
Wilder ADX filter (trend strength)
Deep retest requirement inside the FVG zone
Optional zone auto-expiry and delete-on-use
It returns:
BUY (bullish HTF FVG confirmed)
SELL (bearish HTF FVG confirmed)
NONE (no valid zone active)
You can control how strict this bias is used via a “Strict: require active HTF FVG for entry” checkbox:
Strict OFF (default) → HTF bias can block trades against a strong HTF signal, but allows trades when HTF is neutral.
Strict ON → LTF entries are allowed only when HTF has an active FVG in the same direction (very selective).
HTF events are shown on the chart as HTF BUY / HTF SELL markers.
Execution Signals (LTF LONG / SHORT)
On your entry timeframe (e.g. 5m), the script generates LONG / SHORT arrows when:
Trend is clearly bullish or bearish (MA stack aligned),
Grade ≥ B for two consecutive bars,
HTF bias conditions are satisfied (depending on the strict mode).
These arrows are not a full auto-strategy, but a high-quality execution cue:
“Trend OK + Momentum OK + Volatility OK + HTF not against you.”
Dashboard
A compact dashboard in the corner shows, in real time:
Trend – UP / DOWN / RANGE (20/50/200 stack)
Impulse (CCI) – LOW / MEDIUM / HIGH / EXTREME
Volatility (ATR) – QUIET / NORMAL / ACTIVE
Size Multiplier – suggested risk sizing factor based on impulse
Grade – A / B / C / X
HTF FVG – BUY / SELL / NONE
This lets you sanity-check the context before pressing the button, not after the loss.
Recommended Use
Instrument: XAUUSD
Timeframe: 5m (scalping / intraday), but can be tested on 15m/1H as well
HTF: 1H by default (can experiment with 4H)
Focus on:
Grade A/B only
Strict mode ON for more institutional, fewer but higher-quality trades
Size up only when both impulse and volatility are supportive
Disclaimer
This script is a decision-support tool, not financial advice and not a guarantee of profit.
Always forward-test, understand the logic, and use your own risk management.
Futures Position Size Calculator (NQ/ES)DISCLAIMER:
This indicator is provided solely for informational and educational purposes. It calculates position sizing based on user-defined inputs such as entry and stop-loss levels, but it does not provide trading signals, recommendations, or financial advice . All trading decisions are made at the sole discretion of the user.
By using this indicator, you acknowledge that you are fully responsible for your own trades and risk management . The developer/publisher of this indicator assumes no liability for any losses, damages, or financial consequences that may arise from its use.
Features:
• Position size calculator (based on Entry & Stop Loss)
• Reward ratio calculator (1R, 2R, 3R, etc.)
• Supports: NQ / MNQ / ES / MES
Usage:
When you first add the script to your chart (on any supported futures symbol), you will be prompted to set the Entry Price and Stop Loss Price on the chart using draggable lines .
After setup, you can freely move the price lines, and the indicator will automatically update:
• Position size
• Reward targets
• Direction (long/short is auto-detected)
RISK Settings:
You can calculate position size using either:
1. Account Percent
Select "Percent" in the Risk Method dropdown and enter the percent of your account you want to risk per trade.
2. Fixed Dollar Amount
Select "Fixed Dollar" in the Risk Method dropdown and enter the dollar amount you want to risk.
You may set separate values for: NQ, MNQ, ES, and MES.
Reward Calculator:
Enable the checkbox "Show Reward Targets" in the Reward Ratio section to display projected targets (1R, 2R, etc.).
You can also choose how many R-levels are displayed on the chart.
Pivot Hourly x EMA RibbonPivot Hourly & Moving Average Ribbon
If combined with the use of moving averages, it can be very powerful and profitable. Please do your own research before using it on a live account.
Volumen con línea promedio//@version=6
indicator("Volumen con línea promedio", overlay=false)
periodo = input.int(20, title="Período de media")
volumen = volume
mediaVolumen = ta.sma(volumen, periodo)
colorBarra = volumen > mediaVolumen ? color.green : color.red
plot(volumen, title="Volumen", style=plot.style_columns, color=colorBarra)
plot(mediaVolumen, title="Línea promedio", color=color.orange, linewidth=2, style=plot.style_line)
Myfxschool Trade Pick v25Introducing the MyFXSchool Leading Indicator™, a next-generation market prediction tool designed exclusively for traders who want accuracy, clarity, and early trend identification. Built using advanced price-action logic, institutional order-flow concepts, and dynamic volatility algorithms, this indicator gives you a true leading advantage—not just lagging signals.
Bark or BiteBark or Bite – Trend Confirmation Engine (Invite-Only)
Bark or Bite is a trend validation system designed to detect true momentum shifts rather than every crossover or touch of a moving average. The indicator does not act on a single signal. It requires multi-condition confirmation before displaying any output, reducing false entries during chop and sideways price action.
At its core, Bark or Bite combines two distinct forms of market analysis:
1. Momentum qualification
Rather than reacting every time momentum changes, Bark or Bite monitors internal momentum alignment and stores directional shifts in memory. Momentum alone does nothing until structure confirms.
2. Trend filtering with delayed confirmation
The indicator continuously evaluates whether price has meaningfully committed above or below its underlying trend structure. A signal is not created the moment price fluctuates around trend. It is only registered once the market proves direction.
Unique confirmation logic (what makes Bark or Bite different):
Unlike common indicators that require conditions to occur on the same candle, Bark or Bite uses sequential confirmation logic. This allows:
Structure to confirm after momentum
Momentum to confirm after structure without forcing both to occur in the same bar.
This design allows valid trend entries that traditional indicators miss and prevents early entries during fake breakouts or short-lived reversals.
Candle Interpretation
Yellow candle = confirmed bullish trend ignition
Blue candle = confirmed bearish trend ignition
These are not momentum alerts. They represent directional shifts that have already passed multiple logical checks .
Intended Use
Bark or Bite is NOT:
A scalping indicator
A crossover toy
A signal spam tool
It is built for:
Swing traders
Trend traders
Directional bias alignment
Avoiding false starts in chop
This indicator is intentionally restrained. It displays fewer, higher-quality signals by design.
Why it is invite-only
Bark or Bite is protected because its logic is not a simple application of public indicators. The system uses:
State-based signal memory
Delayed confirmation logic
Multi-stage validation rules
Releasing the source openly would immediately cause replication without attribution. Access is therefore controlled.
Final Note
Bark or Bite does not predict the market.
It filters it.
You are not told to trade every movement.
You are told when the market has committed.
2 EMA Cloud by LuigiTradez☁️ Dynamic Color EMA Cloud (v6) Indicator Description
This Pine Script v6 indicator creates a visually powerful EMA Cloud that dynamically changes color based on the prevailing short-term trend, making it an excellent tool for trend confirmation, support, and resistance identification.
Key Features
Dynamic Cloud Coloring: The cloud automatically changes its fill color when the Fast EMA crosses the Slow EMA.
Bullish Cloud: Activated when the **Fast EMA is above the Slow EMA** (uptrend).
Bearish Cloud: Activated when the **Fast EMA is below the Slow EMA** (downtrend).
Full Customization: All key parameters are exposed in the indicator settings for easy adjustment.
Trend Background: An optional, very light background color is plotted to reinforce the current trend direction across the entire chart.
🛠️ How to Use the Indicator
The EMA Cloud primarily serves as a visual filter and a dynamic zone of support/resistance.
1. Trend Confirmation: Use the cloud color to confirm the trend direction. A green (bullish) cloud suggests an uptrend is in effect, while a red (bearish) cloud suggests a downtrend.
2. Support and Resistance: The cloud itself acts as a dynamic zone.
* In an uptrend, prices pulling back into the Bullish Cloud often find support there.
* In a downtrend, prices rallying into the Bearish Cloud often find resistance there.
3. Crossover Signal: The moment the cloud color flips (e.g., from red to green), it signals a potential major trend shift as the fast-moving EMA has crossed the slower-moving EMA.
AUBANK Future-Spot % BasisThis indiacator tells Future asset diffrence of aubank future and aubank spot price
HoneG_SARBB v24開発中BB、SAR、ADX、RSI、RCIなどをベースにした1分取引用サインツールのver23開発中バージョンです。
1分足チャートに適用してお試しください。
内部的には秒足を見ているので、Premium以上のグレードが必要になります。
This is the development version of ver23 for a 1-minute trading signal tool based on indicators like B, SAR, ADX, RSI, and RCI.
Please apply it to a 1-minute chart for testing.
Internally, it monitors second-by-second data, so a Premium or higher grade is required.
AG Pro Dynamic Channels PremiumAG Pro Dynamic Channels Premium
The Gold Standard in Automated Market Structure.
AG Pro Dynamic Channels Premium is the culmination of advanced algorithmic development, designed specifically for professional traders who refuse to compromise on chart clarity.
While standard indicators flood your screen with noise, this Premium edition employs a proprietary "Smart Filtering Engine" to identify, validate, and project only the most statistically significant support and resistance channels. It transforms chaos into a clear, actionable roadmap.
🏆 Why Go Premium?
This is not just an update; it is a complete overhaul of the trend detection logic.
1. 🧠 Smart Quality Control (Exclusive) The core difference in the Premium version is its ability to "think" before it draws.
Volatility Filtering: The script analyzes the slope of every potential trend. It automatically rejects unsustainable "pump/dump" moves and flat ranges, keeping only tradeable structures.
Wick Exclusion Logic: An advanced algorithm that ignores extreme volatility spikes (wicks), drawing channels based on candle body consolidation for higher precision.
2. 🏷️ Intelligent Labeling System Instant situational awareness. Every channel is auto-labeled (e.g., Mj Ext Up), so you know exactly which market phase (Major or Minor, Internal or External) you are trading in without guessing.
3. ⚡ Zero-Lag Optimization The code has been refactored for maximum efficiency, ensuring faster load times and smoother performance even on lower timeframes.
💎 Key Features
Dual-Layer Architecture: Simultaneously tracks Major Trends (for bias) and Minor Trends (for entries).
Dynamic Support & Resistance: The dotted midline acts as a high-probability reversal zone.
Institutional Grade Alerts: Fully customizable alerts for Breakouts and Reactions, complete with metadata for automated trading systems.
Auto-Tuning: Default settings are optimized for a balance of sensitivity and reliability, but fully customizable for specific assets (Crypto, Forex, Indices).
⚙️ Methodology (How It Works)
To comply with TradingView House Rules, here is the technical logic behind the script:
Pivot Detection: The script scans price action using a highly sensitive lookback period to find raw Pivot Highs and Lows.
Structure Mapping: It processes these points to define the Market Structure (HH, LL, LH, HL).
Validation Layer: Before rendering, the Smart Filter calculates the channel's duration and slope coefficient. If the channel is too short or too steep (violating the user-defined Max Slope threshold), it is discarded as "Market Noise."
Projection: Validated channels are drawn with dynamic extensions and fill zones.
🔒 How to Get Access
This is an Invite-Only script. Access is restricted to authorized users.
To Request Access: Please send me a private message on TradingView or check the links in my profile signature for more information.
Existing Members: If you have active access, the script will load automatically.
Disclaimer: Technical analysis tools are for educational purposes. Past performance does not guarantee future results.
Developed by Ali Gurtuna (AG Pro Series).
Adaptive Support and Resistance LevelsAdaptive Support and Resistance Levels
This indicator is a comprehensive institutional-grade trading tool designed to visualize Auction Market Theory (AMT), Support and Resistance concepts directly on the price chart. It is built for traders who require a deep understanding of market structure without the visual clutter of standard retail indicators.
Key Features:
1] Fractal Adaptive Engine:
The indicator automatically adjusts its calculations based on your timeframe.
-Intraday (1m-15m): Displays Daily Levels.
-Swing/Positional (30m-1H): Displays Weekly Levels.
-Long Term (Daily+): Displays Monthly Levels.
2]Untested Levels:
-Identifies levels from previous sessions that have not been tested by price.
-Extends these levels forward as "Magnets" until price touches them.
-Touch-Delete Logic: Once price interacts with a magnet, the line is automatically removed to keep the chart clean.
3] Institutional Dashboard:
- A "Flight Deck" table in the top-right corner provides real-time metrics:
-Context: Are we inside, above, or below the previous value zone?
-Auction State: Is the current market balanced or imbalanced?
-IB Status: Initial Balance (first 60 mins) breakout/breakdown status.
-Fuel Gauge: Measures current range vs. ADR (Average Daily Range) to gauge exhaustion.
-Volume Flow: Detects high-aggression volume relative to the average.
How to Use:
Trend Following: Look for price breaking out of the (Static Lines) , Pullback rejection, Rejection from the lines.
Reversion: Use the lower lines for bulls reversal and Upper lines for bears reversal ( Kind of reversal candle formation )
Risk Management: Use the ADR Fuel Gauge to avoid buying extended markets (>100% ADR).
Disclaimer: This tool is only for educational and analytical purposes only. Not any recommendation.
🎯 APEX-SIGNAL PROAPEX-SIGNAL PRO System
This is a private indicator for members only. อินดิเคเตอร์นี้เป็นระบบปิดสำหรับสมาชิก APEX-SIGNAL PRO เท่านั้น
Features:
High accuracy trend following system.
Support & Resistance calculation.
Easy to use for beginners and professionals.
Access / วิธีการเข้าใช้งาน: Please contact admin for access permissions. กรุณาติดต่อแอดมินเพื่อขอสิทธิ์การใช้งาน Contact:
คำแนะนำ: หลังจากวางข้อความแล้ว กด Continue -> หน้าถัดไปอย่าลืมเลือก "Invite-only script" นะครับ!
ZENADX Momentum FlowZENADX Momentum Flow คืออินดิเคเตอร์ที่ออกแบบมาเพื่อช่วยเทรดเดอร์จับ “ทิศทาง + จังหวะ” ของตลาดด้วยความเรียบง่ายแบบเซน แต่ทรงพลังด้วยแกนวิเคราะห์จาก ADX, DI และ Stochastic Momentum
อินดิเคเตอร์นี้ผสมผสาน โครงสร้างเทรนด์ (Trend Structure) ด้วย ADX/DI และ โมเมนตัม (Momentum Timing) ด้วย Stochastic เพื่อค้นหาจุดเข้าออกที่ “นิ่ง คม และมีสติ” ตามหลัก Zen Flow Trading
สิ่งที่ ZENADX Momentum Flow ทำให้คุณ:
1.จับเทรนด์หลักด้วย ADX ที่ผ่านเกณฑ์ความแข็งแรง
2.ฟิลเตอร์จังหวะด้วย Stochastic เพื่อหลีกเลี่ยงสัญญาณหลอก
3.แสดงสัญญาณ BUY/SELL เฉพาะเมื่อน้ำหนักเทรนด์ + โมเมนตัมสอดคล้องกัน
เหมาะทั้งสาย Trend Following และ Swing Entry ที่ต้องการ Flow ที่เป็นระบบ
เหมาะกับใคร?
สายเทรนด์, เทรดเดอร์แบบ Flow, คนที่ชอบระบบที่เรียบง่ายแต่ให้ “ความมั่นใจ” เวลาเข้าออก
หลักการ Zen:
ไม่ใช่แค่การตามเทรนด์… แต่คือการ ไหลไปตามตลาด อย่างมีสติและไม่ฝืนตลาด
-------------------------------------------------------------------------
ZENADX Momentum Flow is a trend–momentum hybrid indicator designed for traders who want clarity, simplicity, and precision. Inspired by Zen principles, this tool helps you align with the market’s natural flow—without noise or over-complication.
This indicator blends trend strength from ADX/DI with momentum confirmation from Stochastic, producing clean BUY/SELL signals only when both market structure and momentum agree.
What ZENADX Momentum Flow provides:
Detects strong trend directions using ADX threshold logic
Filters noise with Stochastic momentum alignment
Generates precise BUY/SELL signals based on DI crossovers + momentum confirmation
Ideal for Trend Following and Swing Entry traders who want a smooth, systematic flow
Perfect for:
Traders who seek a calm, disciplined, and structured way to follow the market’s movement—without forcing trades.
Zen Philosophy:
You don’t fight the trend…
You flow with it.
Kaufman Adaptive Moving Average + ART**Kaufman Adaptive Moving Average (fixed TF) + ATR Volatility Bands**
This script is a Pine Script v5 extension of the original *Kaufman Adaptive Moving Average* by Alex Orekhov (everget).
It adds:
* a **fixed timeframe option** for KAMA
* a separate **ATR panel under the chart**
* **configurable ATR volatility levels** with dynamic coloring.
KAMA adapts its smoothing to market conditions: it speeds up in strong trends and slows down in choppy phases. Here, KAMA can be calculated on any timeframe (e.g. 1D) and overlaid on a lower-timeframe chart (e.g. 1H), so you can track higher-TF trend structure while trading intraday.
The ATR panel visualizes volatility in the same or a separate timeframe and highlights phases of high/low volatility based on user-defined thresholds.
---
### Features
**KAMA (on chart)**
* Standard KAMA parameters: `Length`, `Fast EMA Length`, `Slow EMA Length`, `Source`
* Input: **KAMA Timeframe**
* empty → uses chart timeframe
* any value (e.g. `60`, `240`, `D`, `W`) → calculates KAMA on that fixed TF and maps it to the chart
* Color-changing KAMA line:
* **green** when the selected-TF KAMA is rising
* **red** when it is falling
* Optional *Await Bar Confirmation* to avoid reacting to still-forming bars
* Built-in alert when the KAMA color changes (potential trend shift).
**ATR panel (separate window under the chart)**
* Own inputs: `Show ATR`, `ATR Length`
* **ATR Timeframe** input:
* empty → ATR uses the same TF as KAMA
* custom value → fully independent ATR timeframe
* Two user-defined volatility levels:
* `ATR High Vol Level` – threshold for **high volatility**
* `ATR Low Vol Level` – threshold for **low volatility**
* ATR line coloring:
* **red** when ATR > High Vol Level (high volatility regime)
* **green** when ATR < Low Vol Level (quiet market)
* **blue** in the normal range between the two levels.
---
### How to use
1. Add the script to your chart.
2. Choose a **KAMA Timeframe** (leave empty for chart TF, or set to a higher TF for multi-timeframe trend following).
3. Optionally set a different **ATR Timeframe** to monitor volatility on yet another TF.
4. Adjust `ATR High Vol Level` and `ATR Low Vol Level` to match the instrument and timeframe you trade.
5. Use:
* the **KAMA color changes** as trend / regime signals, and
* the **ATR colors & levels** to quickly see whether you’re trading in a low-, normal- or high-volatility environment.
This combination is designed to keep the chart itself clean (only KAMA on price) while giving you a dedicated volatility dashboard directly underneath.
Fibonacci Analytical System (FAS) – מייסד השיטה אביאור אביטל הThis script is an analytical tool designed to detect specific patterns in sequential data over different timeframes.
The script performs the following actions:
Retrieves numerical data from an external source, based on the current chart timeframe.
Compares the current value to the previous one to determine a binary state (true/false).
Displays this state clearly on the chart, allowing you to see when the condition is met.
Allows the creation of automatic alerts that trigger only when the condition occurs.
The script does not modify prices or data, but rather scans and analyzes existing information and highlights specific cases that may require attention. FPMARKETS:US100
Simple SuperTrend & MACD Trend Follow
📈 SuperTrend-MACD Trend Follow Indicator
This indicator is composed of the following two main components:
SuperTrend: A filter that shows the direction of the long-term trend and a trailing stop level. A green color indicates an uptrend, and a red color indicates a downtrend.
MACD (Moving Average Convergence Divergence): Captures changes in short-term momentum to determine entry and exit timings.
📈 SuperTrend-MACD Trend Follow Indicator
This indicator is composed of the following two main components:
SuperTrend: A filter that shows the direction of the long-term trend and a trailing stop level. A green color indicates an uptrend, and a red color indicates a downtrend.
MACD (Moving Average Convergence Divergence): Captures changes in short-term momentum to determine entry and exit timings.
■日本語(Japanese)
トレンドフォローをわかりやすく売買シグナルを出すようにカスタマイズ
1. トレンド方向の把握 (SuperTrend)チャート上に表示されるスーパートレンドラインの色を確認します。
🟢 緑色: 上昇トレンド(ロングを狙う)
🔴 赤色: 下降トレンド(ショートを狙う)
2. 売買シグナルの条件
・BUY (買い):
1.SuperTrendが緑色であること。(上昇トレンドフィルター)
2.MACDがゴールデンクロス(MACDラインがシグナルラインを上抜け)したこと。(エントリータイミング)
・SELL (売り):
1.SuperTrendが赤色であること。(下降トレンドフィルター)
2.MACDがデッドクロス(MACDラインがシグナルラインを下抜け)したこと。(エントリータイミング)
3. 設定調整のポイントご自身のトレードスタイルに合わせて、設定(Inputs)を調整できます。
1.設定項目デフォルト調整の方向性SuperTrend Factor3.0上げると感度が下がり、シグナルが減る(大きなトレンド重視)
2.SuperTrend ATR Period10上げると滑らかになり、シグナルが減る
3.MACD Lengths12, 26, 9基本はデフォルト推奨。より速いエントリーを求めるなら短くする
[Yorsh] BJN iFVG Model RC1 BJN iFVG Model - Mechanical Trading System
Description:
The BJN iFVG Model is not just an indicator; it is a full-scale, semi-automated trading architecture designed to mechanically execute the specific "BJN" Inverted FVG strategy.
Designed for precision traders operating on Lower Timeframes (1m to 5m), this script eliminates the cognitive load of manual analysis. It automates every single step of the mechanical model—from Higher Timeframe narrative building to tick-perfect structural validation and risk calculation.
This tool transforms your chart into a professional trading cockpit, split into three intelligent engines:
1. The Matrix (Context Engine)
Before looking for an entry, you must understand the narrative. The Matrix handles the heavy lifting of multi-timeframe analysis without cluttering your chart:
Real-Time Delivery State: Automatically detects if price is reacting from valid HTF PD Arrays (1H, 4H, Daily) to confirm a "Delivery" state.
Liquidity Sweeps: Tracks Fractals across three dimensions (1H, 15m, and Micro-Structure) to identify liquidity raids instantly.
Advanced SMT Divergence: A built-in, multi-mode SMT engine scans for correlation breaks (Pivot SMT, Adjacent Wick SMT, and FVG SMT) between NQ/ES (or custom tickers) in real-time.
Time & Macro Tracking: Automatically visualizes Killzones and highlights high-probability Macro windows.
2. The Executioner (Entry Engine)
Once the context is set, the Executioner handles the specific Inverted FVG (iFVG) entry model with strict mechanical rules:
Structural Integrity: Automatically identifies the Invalidation Point (IP), Floor/Ceiling, and Break-Even levels for every setup.
Hazard Detection: The script proactively scans the "Trading Leg" for opposing unmitigated FVGs (Hazards). If the path isn't clean, the trade is flagged or invalidated.
Composite Logic: Intelligently merges "noisy" price action into Composite FVGs to reduce false signals.
Integrated Position Sizer: When a trade is confirmed, a visual box appears showing your precise Entry, Stop Loss, Hard Stop, and Take Profit levels, along with a calculated Contract Quantity based on your risk tolerance.
3. The Ranking System (Quality Control)
Not all trades are created equal. This system grades every single confirmed setup in real-time based on confluence factors:
Grades: Ranges from A++ (Perfect Confluence) to C (Low Probability).
Confluence Check: Checks for Delivery, Sweeps (HTF/LTF), SMT, and Macro alignment at the exact moment of the trigger.
Live Status Panel: A dashboard on your chart displays the current live trade status (Armed, Triggered, Confirmed) and its Rank, so you never miss a beat.
Optimization & Performance
Trading on the 1-minute timeframe requires speed. This script has been rigorously optimized for high-frequency environments:
Smart Garbage Collection: The script manages its own memory, cleaning up old data arrays to prevent lag, ensuring the chart remains fluid even after days of data accumulation.
Tunnel Vision: Calculations are strictly focused on the relevant trading leg, ignoring historical noise to maximize execution speed.
Zero-Repaint: All historical analysis is strictly non-repainting to ensure backtesting reliability.
How to Use
Timeframes: Optimized for 1m, 2m, 3m, 4m, 5m execution.
Alerts: Configure the robust alert system to notify you only when setups meet your standards (e.g., "Alert only on Rank B+ or higher").
Strategy: Wait for the Status Panel to show a "CONFIRMED" signal. Use the on-screen Position Sizer to execute the trade with the displayed risk parameters.
Stop analyzing; start executing. Welcome to mechanical trading.
----------------------------------------------------------------------------------------------------------------
RISK DISCLAIMER:
The content, tools, and signals generated by this script are strictly for educational and informational purposes only. This script does not constitute financial advice, investment recommendations, or a solicitation to buy or sell any securities, futures, or other financial instruments.
Trading financial markets involves a high degree of risk and is not suitable for all investors. The "Position Sizer" and "Trade Setups" displayed are hypothetical simulations designed to demonstrate the mechanics of the BJN methodology; they do not guarantee future performance.
Use this tool at your own risk. The author assumes no responsibility or liability for any trading losses or damages incurred in connection with the use of this script. Always consult with a qualified financial advisor and practice proper risk management.
X-RAY v5.6 Ai⚡X-RAY v5.6 Ai is a state-of-the-art, non-repainting technical indicator designed to give traders a definitive edge in the market.
It goes beyond conventional oscillators by leveraging a proprietary algorithm that normalizes price momentum against a dynamically calculated volatility range. This allows X-RAY to filter market noise and pinpoint high-probability turning points with exceptional precision.
🧩 Core Methodology
At its core, X-RAY operates through a multi-layered computational engine that performs advanced mathematical and statistical analysis. It doesn’t just track price; it measures the energy of a price move relative to its recent volatility.
This involves:
Complex smoothing functions
Advanced statistical modeling
A real-time adaptive normalized oscillator
The outcome? A powerful tool that uncovers the true strength or weakness of a trend often before it becomes visible on the chart.
⚡ Signal Generation
X-RAY provides three actionable signals for systematic trading. All signals are confirmed at bar close and do not repaint.
🟢 BUY Signal
Generated at the end of a strong downtrend, this signal identifies:
Maximum bearish momentum exhaustion
A potential market capitulation
A high-probability entry for long positions
🎯 TP (Take Profit) Signal
Triggered when bullish momentum peaks, signaling:
The first signs of faltering after an upward move
The optimal zone to secure maximum gains
❌ EXIT Signal
A risk management alert activated when:
Momentum shifts decisively against your position
The trend loses structural integrity
Immediate position closure is required to protect capital
🚀 Optimized Performance & Best Use Cases
Through extensive backtesting, X-RAY proves most effective on the following timeframes:
Cryptocurrency: 15m Chart
Forex: 3h Chart
Gold (XAU/USD): 1m Chart
🧭 Conclusion
X-RAY v5.6 Ai is more than an indicator—it’s a complete analytical framework for traders seeking:
Precision ⚖️
Statistical rigor 📐
Non-repainting logic ⏱️
By focusing on momentum vs. volatility, X-RAY provides a clear and objective roadmap to navigate the markets confidently.
⚠️ Disclaimer:
This indicator is for educational and informational purposes only. It is not investment advice. Past performance is not indicative of future results. Always conduct your own analysis and trade responsibly.
MSS(5m) + HTF(1h) OB & Sweep Strategy (heuristic) v6My first (hopefully) working strategy. Have fun printing guys
HTF Scanner Pro | High Tight Flag | Leif Soreide📊 HTF Scanner Pro| High Tight Flag Pattern Detector
🎯 Overview
HTF Scanner Pro is a professional-grade pattern recognition indicator designed to identify one of the most powerful and rare chart patterns in technical analysis: the High Tight Flag (HTF). Based on the rigorous research of William O'Neil (founder of Investor's Business Daily and creator of CANSLIM) and refined by Leif Soreide's extensive pattern studies, this indicator provides institutional-level pattern detection with a premium visual experience.
The High Tight Flag pattern historically delivers 69-85% success rates when properly identified, making it one of the most reliable bullish continuation patterns. However, it's extremely rare—you might only see 2-5 valid setups per year across thousands of stocks. This indicator does the heavy lifting of scanning and scoring potential setups so you never miss an opportunity.
----------------------------------------------------------------------------------------------
⚡ Key Features
🔬 6-Component Scoring System (0-10 Scale)
Each potential HTF pattern is analyzed across six critical dimensions:
│ Pole │ 25% │ Explosive advance (90-120%+ in 4-8 weeks)
│ Flag │ 25% │ Tight consolidation (10-25% pullback, above 50-MA)
│ Volume │ 20% │ Heavy pole volume, dry flag volume, breakout surge
│ Technical │ 15% │ New highs, relative strength, MA positioning
│ Breakout │ 10% │ Proximity to pivot, R:R ratio, target potential
│ Catalyst │ 5% │ Fundamental catalyst proxy via price/volume action
📈 Pattern Detection Criteria (O'Neil/Soreide Standards)
THE POLE (Flagpole):
- ✅ Minimum 90% advance (100-120%+ is ideal)
- ✅ Occurs within 4-8 weeks (20-40 trading days)
- ✅ Heavy volume (40-100%+ above average)
- ✅ More up days than down days (clean advance)
- ✅ Usually triggered by fundamental catalyst
THE FLAG (Consolidation):
- ✅ Shallow pullback of only 10-25% from pole high
- ✅ Duration: 1-3 weeks ideal, max 5 weeks
- ✅ MUST stay above 50-day moving average
- ✅ Volume dries up significantly (supply exhaustion)
- ✅ Tight, low-volatility price action
BREAKOUT CONFIRMATION:
- ✅ Price breaks above flag high + $0.10 (classic O'Neil rule)
- ✅ Volume surges 50%+ above average
- ✅ Risk/Reward typically 3:1 or better
----------------------------------------------------------------------------------------------
🎨 Premium Visual Features
Interactive Dashboard
- Real-time pattern scoring with letter grades (A+ to F)
- Component-by-component breakdown with color coding
- Trade setup display (Entry, Target, Stop, R:R)
- Status indicators for flag tightness and pole recency
- Customizable position (6 locations)
Pattern Zone Highlighting
- Pole Zone: Subtle green/blue gradient background
- Flag Zone: Subtle gold/orange gradient background
- Ghost transparency to not obscure price action
Price Level Visualization
- Entry Line (Blue): Flag high + $0.10 breakout level
- Target Line (Green): Projected measured move target
- Stop Line (Red): Below flag low for risk management
Signal Labels
- Large green label for valid HTF signals
- Orange label for partial/forming setups
- Complete trade plan in label (Entry, Target, R:R)
----------------------------------------------------------------------------------------------
📊 How to Use
Signal Interpretation
┌─────────┬───────────────────────────┐
│ Score │ Grade │ Signal │ Action ├─────────┼─────────┼─────────────────┤
│ 8.0+ │ A-/A/A+ │ HIGH TIGHT FLAG │ Valid setup - prepare for entry │
├─────────┼───────────────────────────┤
│ 5.5-7.9 │ C/B │ PARTIAL SETUP │ Monitor - some criteria missing │
├─────────┼─────────┼─────────────────
│ <5.5 │ D/F │ NO SIGNAL │ Not an HTF pattern │
└─────────┴─────────┴────────────────┘
Entry Strategy
- Wait for Setup: Score reaches 8.0+ with all major criteria met
- Entry Point: Buy on breakout above the blue ENTRY line with volume confirmation
- Stop Loss: Place stop just below the red STOP line (flag low)
- Target: Use the green TARGET line as your profit objective
- Position Size: Calculate based on the displayed R:R ratio
Component Checklist
Before entering, verify in the dashboard:
- ✅ Pole shows ✓ with 90%+ gain
- ✅ Flag shows ✓ (above 50-MA)
- ✅ Volume shows ✓ (1.4x+ pole volume)
- ✅ Technical shows ✓ (above 50-MA)
- ✅ Footer shows "◆ TIGHT" and "◆ RECENT"
----------------------------------------------------------------------------------------------
⚙️ Input Settings
Pattern Detection
- Pole Min Period: Minimum pole duration (default: 20 days / 4 weeks)
- Pole Max Period: Maximum pole duration (default: 40 days / 8 weeks)
- Minimum Gain %: Minimum pole advance (default: 90%)
- Good Gain %: Strong pole advance (default: 100%)
- Excellent Gain %: Exceptional pole advance (default: 120%)
Flag Consolidation
- Min Pullback %: Minimum flag pullback (default: 10%)
- Max Pullback %: Maximum flag pullback (default: 25%)
- Min Duration: Minimum flag duration (default: 5 days)
- Max Duration: Maximum flag duration (default: 25 days)
Signal Thresholds
- HTF Signal: Score threshold for valid HTF (default: 8.0)
- Partial Setup: Score threshold for partial setup (default: 5.5)
Visual Settings
- Show Dashboard: Toggle analysis dashboard
- Show Pattern Zones: Toggle pole/flag highlighting
- Show Price Levels: Toggle entry/target/stop lines
- Show Signal Labels: Toggle pattern labels
- Show Moving Averages: Toggle 50 & 200 MA display
- Dashboard Position: Choose from 6 positions
Technical Parameters
- 50-day MA: Period for 50-day moving average
- 200-day MA: Period for 200-day moving average
- RS Period: Lookback for relative strength (default: 126 days / 6 months)
----------------------------------------------------------------------------------------------
🔔 Alerts
Four built-in alert conditions:
- 🚀 HTF BREAKOUT: Price breaks above entry level with volume confirmation
- ⚡ HTF Setup Ready: Valid HTF at pivot, watch for breakout
- ⚡ Early Entry Signal: Volume expanding near pivot (Leif's specialty)
- ◇ Partial Setup: Forming setup worth monitoring
----------------------------------------------------------------------------------------------
📚 Educational Notes
Why HTF Patterns Work
The High Tight Flag represents the ultimate supply/demand imbalance:
- Explosive Pole: Institutions aggressively accumulate, driving price up 100%+
- Tight Flag: Weak hands sell, but no significant supply emerges
- Breakout: Remaining supply absorbed, price explodes to new highs
Historical Performance
According to O'Neil's research and Soreide's studies:
- Success rate: 69-85% when all criteria are met
- Average gain from breakout: 100-200%+
- Failure rate increases significantly if criteria are relaxed
Common Mistakes to Avoid
❌ Buying before breakout confirmation
❌ Ignoring volume requirements
❌ Trading flags that broke below 50-MA
❌ Accepting pullbacks deeper than 25%
❌ Trading old poles (flag must form immediately afterpole)
----------------------------------------------------------------------------------------------
This indicator is a tool to assist with pattern identification and should not be considered financial advice. Always:
- Conduct your own due diligence
- Manage risk appropriately
- Use proper position sizing
- Consider fundamental analysis alongside technical signals
Past performance of the High Tight Flag pattern does not guarantee future results.
📝 Credits & References
- William O'Neil - "How to Make Money in Stocks", CANSLIM methodology
- Leif Soreide - HTF Masterclass, pattern refinement research
- Investor's Business Daily - Pattern recognition standards






















