Vantage Protocol [JOAT]Vantage Protocol
Introduction
Vantage Protocol is an advanced open-source execution strategy that integrates regime classification, adaptive momentum filtering, volume confirmation, session timing, and ATR-based risk management into a unified NNFX-aligned trading engine. Rather than relying on a single entry signal, the strategy requires alignment across five independent subsystems — regime state, momentum direction, cumulative volume delta, volume presence, and session timing — before entering a trade. This multi-gate architecture is designed to filter out low-probability setups and only execute when multiple independent factors converge.
This strategy exists because most retail strategies fail for a predictable reason: they use one or two conditions for entry and ignore the broader market context. A moving average crossover in a choppy market produces losses. A momentum signal during a low-volume session lacks follow-through. An entry outside the active institutional window misses the liquidity needed for clean execution. Vantage Protocol addresses each of these failure modes with a dedicated subsystem, and only enters when all subsystems agree.
Important Note on Strategy Results
Backtesting results shown with this strategy are historical simulations and do not guarantee future performance. Markets change, and strategies that performed well historically may not perform well in the future. The default settings use realistic parameters: 2% of equity per trade, $100,000 initial capital, no pyramiding, and zero margin. Users should add commission and slippage appropriate for their broker and instrument in the strategy Properties dialog before evaluating results. The strategy is published with these defaults to provide a transparent starting point — users are expected to adjust parameters for their specific trading conditions.
Strategy Architecture
The strategy follows an NNFX (No Nonsense Forex) inspired architecture where each subsystem acts as an independent gate. A trade is only entered when all gates are open simultaneously.
Gate 1: Regime Engine
The regime engine determines whether the market is trending or ranging. It combines three independent measures:
H-Infinity Filter: An adaptive filter from control theory that tracks price under worst-case noise assumptions. The filter's slope determines directional bias — positive slope = bullish, negative slope = bearish
R-Squared Efficiency Gate: Measures how well price fits a linear regression. When R-squared exceeds an auto-calibrating threshold (rolling mean plus k standard deviations), the efficiency gate opens, indicating a trending market. A hysteresis band prevents flickering
Chop Score: Measures path efficiency — the ratio of net movement to total path length. High chop scores indicate choppy, non-directional markets where trend-following strategies fail
The regime is classified as trending (bullish or bearish) only when R-squared confirms efficiency AND chop score confirms directional movement. If either condition fails, the regime is classified as ranging and no entries are allowed.
bool regimeTrend = effOK and not isChoppy
int regimeBias = regimeTrend ? (hinfSlope >= 0 ? 1 : -1) : 0
Gate 2: Momentum Core
The momentum subsystem uses a Laguerre RSI processed through JMA adaptive smoothing. The Laguerre filter provides a smoother, less laggy momentum reading than standard RSI, and the JMA smoothing further reduces noise while preserving responsiveness to genuine momentum shifts.
Momentum must confirm the regime direction:
For long entries: JMA-smoothed Laguerre RSI must be above the bull threshold (default: 62)
For short entries: JMA-smoothed Laguerre RSI must be below the bear threshold (default: 38)
This prevents entries when momentum is neutral or contradicts the regime bias.
Gate 3: Volume Filter (CVD)
Cumulative Volume Delta tracks net buying versus selling pressure. The strategy requires the CVD slope (smoothed with an EMA) to confirm the trade direction:
For long entries: CVD slope must be positive (net buying pressure increasing)
For short entries: CVD slope must be negative (net selling pressure increasing)
Additionally, the current bar's volume must exceed a minimum ratio relative to the 50-bar average (default: 0.7x). This filters out entries during thin-liquidity periods where price moves lack conviction and slippage risk is elevated.
Gate 4: Session Filter
An optional session window filter restricts entries to a configurable time window (default: 0200-1200 New York time). This aligns trading with the London and New York sessions where institutional liquidity is deepest. Entries outside this window are blocked because low-liquidity sessions produce unreliable price action and wider spreads.
Gate 5: Cooldown
After any exit (whether by stop loss, take profit, or regime exit), a configurable cooldown period (default: 5 bars) must pass before a new entry is allowed. This prevents revenge trading and allows the market to establish a new setup after a position closes.
Entry and Exit Logic
Entry Conditions:
All five gates must be open simultaneously, and the strategy must be flat (no existing position):
bool longSetup = regimeBias == 1 and momBull and cvdBull and volOK and sessOK and cooldownOK
bool shortSetup = regimeBias == -1 and momBear and cvdBear and volOK and sessOK and cooldownOK
Stop Loss and Take Profit:
SL and TP levels are calculated using ZEMA-smoothed ATR multiplied by configurable factors:
Stop Loss: Entry price minus (ZEMA-ATR x SL Multiplier) for longs, plus for shorts (default SL multiplier: 1.8)
Take Profit: Entry price plus (ZEMA-ATR x TP Multiplier) for longs, minus for shorts (default TP multiplier: 2.8)
The default risk-reward ratio is approximately 1:1.56 (1.8 SL to 2.8 TP). ZEMA smoothing on the ATR removes noise from the volatility measure, producing more stable SL/TP levels than raw ATR.
Regime Exit:
If the regime flips to ranging or the opposite direction while a position is open, the strategy closes the position immediately with a "Regime Exit" comment. Additionally, if momentum deteriorates significantly (Laguerre RSI crossing back toward neutral), the position is closed. This prevents holding positions through regime changes where the original thesis is no longer valid.
Band Structure Visualization
The strategy plots a JMA baseline with regime-colored glow, and SL/TP bands around it:
SL bands (inner) shown in muted scarlet with fill zones
TP bands (outer) shown in muted jade with cross-style plotting
The baseline color shifts based on regime: green for bullish trend, red for bearish trend, purple for ranging
Bar coloring reflects the current position state: green when long, red when short, purple when ranging (no position allowed), and grey when flat in a trending regime.
Default Strategy Properties
These are the default values used in the strategy's Properties dialog:
Initial Capital: $100,000
Order Size: 2% of equity per trade
Pyramiding: 0 (no adding to positions)
Margin: Long 0%, Short 0% (cash account simulation)
Commission: Not set by default — users should configure this for their broker (typical values: 0.01-0.1% for crypto, $1-5 per contract for futures, 1-3 pips for forex)
Slippage: Not set by default — users should configure this for their instrument (typical values: 1-3 ticks for liquid instruments, more for illiquid ones)
Users are strongly encouraged to set realistic commission and slippage values before evaluating backtesting results. Results without commission and slippage will overstate performance.
Input Parameters
Regime Engine:
R-Squared Length (default: 30), R-Squared Threshold k (default: 0.8), Chop Length (default: 20), Chop Threshold (default: 0.55)
H-Infinity Order (default: 3), Noise (default: 0.5), Disturbance (default: 1.0)
Momentum Core:
Laguerre Alpha (default: 0.07), JMA Smooth Period (default: 8), Bull Threshold (default: 62), Bear Threshold (default: 38)
Volume Filter:
CVD Smoothing (default: 14), Min Volume Ratio (default: 0.7)
Band Structure:
JMA Period (default: 21), ATR Length (default: 14), SL Multiplier (default: 1.8), TP Multiplier (default: 2.8)
Session Filter:
Session Filter toggle (default: on), Active Window (default: 0200-1200), Timezone (default: America/New_York)
Risk Management:
Risk % (default: 1.5), Re-entry Cooldown (default: 5 bars)
How to Use This Strategy
Step 1: Configure for Your Instrument
Open the strategy Properties dialog and set commission and slippage values appropriate for your broker and instrument. Adjust the session window if you trade instruments with different liquidity patterns than the default London/NY window.
Step 2: Evaluate on Sufficient Data
Run the strategy on a dataset that produces at least 100 trades for statistical significance. Short datasets with few trades produce unreliable performance metrics. Use the strategy tester's detailed trade list to review individual trades.
Step 3: Monitor the Dashboard
The 9-row dashboard shows the state of every subsystem in real-time: regime classification, momentum reading, CVD direction, volume ratio, session status, current position, ATR value, and cooldown status. This transparency lets you understand exactly why the strategy is or is not entering trades.
Step 4: Understand the Regime Exit
The strategy will close positions when the regime changes, even if the SL/TP has not been hit. This is by design — holding a trend-following position through a regime change to ranging is a common source of losses. Regime exits may result in small wins or small losses, but they prevent the larger losses that come from ignoring changing conditions.
Step 5: Adjust Parameters Thoughtfully
If the strategy produces too few trades, consider lowering the momentum thresholds (bull from 62 to 58, bear from 38 to 42) or reducing the minimum volume ratio. If it produces too many losing trades, consider increasing the R-squared threshold k or the chop threshold. Each parameter change affects the trade-off between signal frequency and signal quality.
Strategy Limitations and Compromises
Trade Frequency: The five-gate architecture is deliberately selective. On many instruments and timeframes, the strategy may only produce a handful of trades per month. This is by design — fewer, higher-quality trades — but it means the strategy is not suitable for traders who need frequent activity
Regime Detection Lag: The regime engine uses lookback-based measures (R-squared, chop score) and persistence requirements. Regime changes are identified with a delay, which means the strategy may miss the first portion of a new trend or hold slightly into a regime change
CVD Approximation: The volume delta calculation (close > open = buying) is an approximation. True order flow requires Level 2 data not available in Pine Script. On instruments with unreliable volume data (forex with tick volume), the CVD gate may be less effective
Fixed SL/TP: Stop loss and take profit are set at entry and do not trail. In strong trends, the strategy may exit at the TP while the trend continues. A trailing stop modification could capture more of extended moves but would also increase the risk of giving back profits during pullbacks
Session Dependency: The default session filter is optimized for forex and futures with distinct London/NY sessions. Crypto and other 24/7 markets may benefit from disabling the session filter or adjusting the window
No Pyramiding: The strategy does not add to winning positions. This limits profit potential in strong trends but also limits risk exposure
Backtesting vs Live: Backtesting assumes fills at the close of the signal bar. In live trading, slippage, requotes, and execution delays may produce different results. Always paper trade before committing real capital
Originality Statement
This strategy is original in its multi-gate architecture that synthesizes five independent subsystems into a unified execution engine. While individual components (regime detection, Laguerre RSI, CVD, session filtering, ATR-based risk management) are established concepts, this strategy is justified because:
The five-gate entry architecture (regime + momentum + CVD + volume + session) provides a systematic approach to filtering low-probability setups that is not available in single-indicator strategies
The H-Infinity filter for regime detection applies control theory to market classification, providing a theoretically grounded alternative to simple moving average crossover regime detection
The triple-measure regime engine (R-squared + chop + H-Infinity slope) provides more robust regime classification than any single measure
The regime exit mechanism actively manages positions based on changing market conditions rather than relying solely on fixed SL/TP levels
The NNFX-inspired architecture with clearly separated subsystems (baseline, confirmation, volume, exit, session) provides a modular framework that traders can understand, evaluate, and modify
The cooldown mechanism prevents revenge trading after exits, addressing a common behavioral trading error
All subsystem states are displayed transparently in the dashboard, allowing traders to understand exactly why trades are or are not being taken
Disclaimer
This strategy is provided for educational and informational purposes only. It is not financial advice or a recommendation to buy or sell any financial instrument. Trading involves substantial risk of loss and is not suitable for all investors.
Backtesting results are historical simulations based on past data. Past performance does not guarantee future results. The strategy's historical performance was generated under specific market conditions that may not repeat. Markets are dynamic, and strategies that worked historically may fail in the future.
The default strategy properties do not include commission or slippage. Users must configure these values for their specific broker and instrument to obtain realistic performance estimates. Results without commission and slippage will overstate actual trading performance.
Always use proper risk management, including position sizing appropriate for your account and risk tolerance. Never risk more than you can afford to lose. Consider paper trading this strategy extensively before using real capital. The author is not responsible for any losses incurred from using this strategy.
-Made with passion by officialjackofalltrades
Strategi

Indikator

CCI Stoic Continuation - Crossing SignalsDescription
The CCI Stoic Continuation is a refined take on the classic Commodity Channel Index, designed specifically for traders who prioritize clarity and trend persistence over chasing volatile swings. Instead of viewing the CCI as a simple overbought/oversold oscillator, this indicator treats it as a momentum thermometer .
By utilizing a multi-layered threshold system, the indicator helps traders distinguish between a nascent trend (Early Momentum) and a confirmed, high-velocity move (Strong Momentum).
How It Works
The script visualizes four distinct phases of price action based on the relationship between the CCI and key threshold levels ($10$ and $80$):
1 Early Bullish (Teal) : CCI crosses above $+10$. This suggests momentum is beginning to shift upward.
2 Strong Bullish (Cyan) : CCI crosses above $+80$. This indicates high-velocity trend continuation.
3 Early Bearish (Light Orange) : CCI crosses below $-10$. The first sign of downside pressure.
4 Strong Bearish (Red) : CCI crosses below $-80$. Indicates significant conviction in the downward move.
Key Features
• Heat Fills : The background of the indicator pane is shaded to provide an immediate psychological "feel" for the current market environment.
• Bar Coloring : Trend colors are applied directly to your price bars, allowing you to stay focused on the price action while monitoring momentum shifts.
• Transition Markers : Vertical dashed lines appear in the indicator pane whenever a momentum state changes, highlighting the exact moment a "Stoic" entry or exit might be considered.
• Precision Alerts : Built-in alert logic for both "Early" and "Strong" signals in both directions.
Usage Tips
• Trend Alignment (CRITICAL) : Do not take every signal. Only execute entries aligned with the higher-timeframe trend or overall market bias. This indicator is designed for continuation, not reversals.
• The Stoic Entry : Use the "Early" signal to prepare, and look for "Strong" confirmation to enter once the trend is clearly established.
• The Zero Line : The yellow zero line acts as the "Neutral Zone." Price action staying consistently above or below this line validates the broader trend bias.
• Timeframes : While optimized for standard settings, it performs exceptionally well on the 15m, 1h, and 4h timeframes.
Technical Settings
• CCI Length : Default 20 (Adjustable for sensitivity).
• Early Level: 10 (Customizable for tighter or looser entries).
• Strong Level: 80 (The threshold for confirmed momentum).
Author : Konstantinos Trovas
Version : 6.0 (Pine Script)
Indikator

AG Pro HTF Bias Dashboard [AGPro Series]AG Pro HTF Bias Dashboard
Overview / What it does
AG Pro HTF Bias Dashboard is a higher-timeframe context tool built for traders who want a fast, structured view of directional conditions across multiple larger timeframes without crowding the chart with extra signals, zones, or decision noise.
The script summarizes higher-timeframe bias in a compact dashboard and presents each selected row as Bull, Bear, or Neutral, together with a mode-specific status readout. The goal is not to predict the next candle or replace a full trade plan. The goal is to make larger-timeframe context easier to read at a glance.
This indicator is designed to answer a simple but important workflow question: "What is the broader directional environment across the higher timeframes I care about right now?" Instead of forcing the user to manually flip through multiple charts and compare structure or trend conditions one by one, the dashboard keeps that information visible in a single panel.
The script supports multiple bias engines so the same dashboard can be adapted to different styles of chart reading. Users can evaluate higher-timeframe context through EMA Stack alignment, confirmed Swing Structure, SuperTrend direction, or MACD Momentum agreement. This makes the tool flexible enough for trend-following traders, structure-based traders, and users who prefer momentum-style confirmation.
Unlike many overlays that try to combine entries, exits, alerts, pattern detection, and signal generation inside one study, this script stays focused on one task: higher-timeframe directional context. That single-purpose design is intentional. It keeps the output clean, readable, and easier to integrate into an existing process.
Unique Edge
The main strength of this script is not signal generation. Its edge is structured context compression.
Instead of plotting a large number of higher-timeframe elements directly on the chart, AG Pro HTF Bias Dashboard converts higher-timeframe conditions into a compact visual matrix. This makes it possible to assess multi-timeframe agreement quickly while keeping the chart itself relatively clean.
A second differentiator is the ability to switch the bias engine. The dashboard is not locked to one interpretation framework. Users can work with:
- EMA Stack, for ribbon-style alignment
- Swing Structure, for confirmed HH/HL and LH/LL progression
- SuperTrend, for ATR-based directional trend state
- MACD Momentum, for momentum agreement between line, signal, and histogram
Another important detail is the higher-timeframe validity filter. Rows that are not actually higher than the current chart timeframe are marked as Lower/EQ instead of being treated as valid higher-timeframe context. This helps keep the dashboard aligned with its intended purpose.
The script also includes confluence logic, so the user can see not only the state of each row, but also the dominant higher-timeframe bias and how many valid rows support that direction. In practice, this helps users distinguish between broad directional agreement and mixed conditions.
Methodology
The dashboard can display three to five higher-timeframe rows, depending on user settings. Each row evaluates one selected timeframe and classifies it into Bull, Bear, or Neutral.
Bias Mode options:
1) EMA Stack
This mode evaluates directional alignment using a three-EMA structure. A bullish state requires price and the EMA ribbon to be aligned in bullish order. A bearish state requires the opposite alignment. When the full sequence is not aligned, the row can remain neutral and display a partial status such as 2/3 or 1/3 rather than forcing a directional label.
2) Swing Structure
This mode uses confirmed pivot logic to read higher-timeframe structure. It looks for confirmed higher highs / higher lows or lower highs / lower lows, and then evaluates position relative to the active swing range. Because this logic depends on confirmed pivots, structure changes are naturally more selective and may appear later than faster trend models.
3) SuperTrend
This mode reads directional state using an ATR-based trend framework. It is intended for users who prefer a cleaner directional state model rather than ribbon alignment.
4) MACD Momentum
This mode classifies bias through agreement between the MACD line, signal line, and histogram. It is useful for traders who prefer momentum confirmation over structure or moving-average ordering.
The dashboard then calculates:
- the number of valid bullish rows
- the number of valid bearish rows
- the dominant higher-timeframe state
- the confluence count across valid rows
Optional chart context features are also included. Depending on settings, the script can color candles according to the active chart bias, plot the active EMA ribbon or SuperTrend on the chart, apply a subtle background tint when confluence is strong enough, and show a compact mini context tag on the chart.
States / Context Output
This indicator is a context dashboard, not an alert engine.
It does not generate buy or sell alerts, does not mark trade entries, and does not claim to identify optimal execution points. Its outputs are state-based and contextual:
- Bull
- Bear
- Neutral
- Confluence summary
- Mode-specific status text
The mini chart tag, when enabled, is only a compact summary of dominant higher-timeframe direction and current confluence. It should be read as context, not as a trade instruction.
Key Inputs
Higher Timeframes
Users can select three to five rows and define the exact higher timeframes to monitor.
Bias Mode
Choose between EMA Stack, Swing Structure, SuperTrend, and MACD Momentum.
Engine Parameters
The script exposes relevant inputs for each engine, including EMA lengths, Swing Strength, SuperTrend ATR settings, and MACD settings.
HUD Controls
The panel position and panel scale can be customized so the dashboard can fit different layouts and chart styles.
Style Controls
Users can adjust theme and directional colors for bullish, bearish, and neutral states.
Chart Context Controls
Optional features include candle coloring, active indicator plotting for EMA / SuperTrend, strong-confluence background tinting, mini context tag visibility, tag anchor, tag offset, and tag font size.
Limitations & Transparency
This script is not a prediction model. It summarizes directional context from user-selected higher-timeframe logic.
Higher-timeframe tools can update only when data from those larger intervals updates. Because of that, the dashboard should be understood as a context layer rather than a real-time trigger engine.
Swing Structure mode uses confirmed pivots. That means structure changes may appear later than faster directional methods, because confirmation requires completed pivot information.
Neutral states do not necessarily mean the market is untradeable. They simply indicate that the selected bias engine does not currently show clear directional alignment under the chosen rules.
The confluence count is a summary statistic, not a quality score. A larger number of aligned rows does not automatically mean a better trade. It only means more selected higher-timeframe rows currently point in the same direction.
Rows marked Lower/EQ are excluded from valid higher-timeframe confluence because they are not above the active chart timeframe.
This script is intended to support discretionary analysis and chart organization. It should be combined with the user’s own execution framework, risk model, and market understanding.
Risk Disclosure
This indicator is provided for analysis and educational use. It does not provide financial advice, investment advice, or guaranteed outcomes.
Market conditions can change quickly, and no single indicator or dashboard can remove uncertainty from trading or investing. Users should evaluate higher-timeframe context together with price action, liquidity, volatility, risk management, and their own decision process.
Past behavior, historical alignment, or current confluence does not guarantee future performance.
Indikator

_Trinity Matrix_
Short description
A structured multi-layer oscillator built around a refined Trinity Wave core, MFI regime columns, confidence scoring, divergence filtering, and TF / HTF context.
Full publication description
Trinity Matrix is a multi-layer oscillator designed to read continuation, reversal quality, regime strength, and divergence context inside a single panel.
It combines a refined Trinity Wave core, MFI regime structure, confidence scoring, mode-based signal filtering, divergence logic, and a compact TF / HTF dashboard into a unified workflow.
The name is a nod to layered market context: not a single signal, but a structured matrix of wave state, regime strength, confidence, and divergence.
Core Structure
Trinity Wave core with additional smoothing and soft limiting to reduce extreme spikes while preserving directional character
MFI Columns to separate baseline participation from stronger expansion phases
Strong zone highlighting to visually distinguish stronger bullish and bearish regime expansion
Confidence engine that blends Trinity Wave continuation and MFI continuation into a normalized directional score
Signal modes for different levels of selectivity: None, Early, Standard, and Strict
ATR-gated divergence filtering for cleaner divergence structures
TF / HTF confidence dashboard for comparing active timeframe conviction against a selected higher timeframe
Built-in alerts for buy, strong buy, elite buy, sell, strong sell, and elite sell conditions
How to Read It
Trinity Wave is the main directional layer. Green indicates bullish state, red indicates bearish state.
MFI Columns show regime participation.
White columns = baseline MFI flow
Shiny white columns = stronger bullish expansion
Orange columns = stronger bearish expansion
Average MFI bands help show where positive or negative regime strength is building relative to recent memory.
Confidence Dashboard summarizes directional conviction on both the active timeframe and the selected higher timeframe.
Row 1 = TF / HTF labels
Row 2 = confidence percentage
Row 3 = qualitative tag: Weak / Moderate / Strong
Signal Modes
None hides signal output
Early is faster and more aggressive
Standard is more balanced
Strict applies the strongest filtering and usually produces the fewest signals
Divergence Module
The divergence layer uses Trinity Wave turning points, confidence filtering, pivot distance control, and optional ATR gate filtering.
It can draw on the oscillator and, if enabled, on price as well.
The goal is not to maximize divergence count, but to keep the structures more selective and readable.
Alerts
This script includes separate alert conditions for:
TW Buy
TW Buy Strong
TW Buy Elite
TW Sell
TW Sell Strong
TW Sell Elite
Suggested Use
Trinity Matrix works best as a structured reading tool rather than a one-click decision engine.
A practical workflow is:
Read Trinity Wave direction and location
Check whether MFI is in baseline flow or strong expansion
Use confidence and HTF context to judge continuation or reversal quality
Use signal mode based on your desired aggressiveness
Use divergence as a contextual filter, not as a standalone trigger
Important Notes
Signal frequency changes significantly with the selected signal mode
HTF confidence reflects the live state of the selected higher timeframe
Divergence output is intentionally filtered and selective
This is an indicator framework, not a full trading strategy
Attribution
Core WaveTrend-style formulation was adapted from the open-source WaveTrend Oscillator by LazyBear, then extended with additional smoothing, soft limiting, MFI regime logic, confidence scoring, divergence filtering, dashboard structure, and alert workflow.
Acknowledgement
Built through many rounds of testing, refinement, and iteration — with a little help from ChatGPT and CodeGPT along the way.
Disclaimer
For educational and analytical use only. Not financial advice. Indikator

Saga System [LB]
hello friend here is
Saga System
The Saga System is an advanced algorithmic trend-following tool designed to detect phases of institutional accumulation and distribution . By combining Relative Volume Analysis with Price Momentum , it filters out low-quality market noise and highlights only the most meaningful directional moves through dynamic Action Zones .
Overview
The core idea behind the Saga System is simple:
Identify when abnormal volume enters the market.
Confirm that this volume aligns with directional price momentum.
Display the result as a visual zone to help traders read market intent more clearly.
This allows traders to quickly identify whether the market is under strong buying pressure or selling pressure , while keeping the chart clean and readable.
📈 Buy Setup (Long Entries)
Conditions:
Wait for a Green Saga Zone to appear.
This confirms a bullish impulse supported by an institutional volume expansion.
Make sure price remains structurally above the system’s internal EMA trend line.
Key observations:
Zone size matters: the larger the green zone, the stronger the underlying buying pressure.
Momentum stacking: two separate consecutive green zones often indicate stronger continuation potential than a single isolated signal.
Entry precision: for better timing, combine the signal with horizontal support levels, discount zones, or RSI oversold conditions.
📉 Sell Setup (Short Entries)
Conditions:
Wait for a Red Saga Zone to form.
This reflects an aggressive bearish impulse confirmed by elevated volume.
Confirm that price is trading below the system’s fast control line.
Key observations:
Zone expansion: a wide red zone often reflects strong directional volatility and can mark the start of a sustained bearish leg.
Trend confirmation: multiple consecutive red zones show that sellers remain in control of market psychology.
Risk control: the system is designed to capture the core part of the move; a close back through the opposite side of the zone often signals momentum neutralization.
before reading any other text here are somme other screen
How to Read the Zones
The Action Zones are not just visual markers — they represent moments where volume and momentum align in the same direction .
Green Zone: bullish pressure, accumulation, and potential continuation.
Red Zone: bearish pressure, distribution, and potential continuation to the downside.
Large zones: stronger conviction and greater directional intent.
Repeated zones: increased probability that the trend is strengthening rather than fading.
⚙️ Technical Methodology
The Saga System is built on three core calculation layers:
1. Institutional Volume Filter
The script calculates a Simple Moving Average (SMA) of volume over a user-defined lookback period. A zone is triggered only when current volume exceeds a predefined threshold:
Current Volume > (SMA Volume * Multiplier)
This condition helps eliminate low-liquidity noise and improves the quality of detected impulses.
2. Directional Bias Confirmation
The system uses a reactive Exponential Moving Average (EMA) to determine short-term directional bias. For a zone to remain valid, price must move in agreement with the EMA slope.
In other words:
Bullish zones require price to remain aligned with upward momentum.
Bearish zones require price to remain aligned with downward momentum.
This ensures that volume is not analyzed in isolation , but in direct relation to trend direction.
3. Dynamic State Engine
Unlike static indicators, the Saga System updates zone coordinates in real time. Each zone evolves with market structure and automatically ends when momentum weakens, typically when price crosses the ultra-fast EMA used as the internal momentum control.
This creates a clean and adaptive block-style visualization, helping the trader focus only on relevant expansion phases.
Best Use Cases
The Saga System performs best when used in confluence with other high-quality tools or structural references:
Support and resistance levels
Market structure breaks
RSI exhaustion zones
Trend continuation setups
High-volume breakout environments
It is especially useful for traders looking to isolate high-conviction trend continuation phases rather than random short-term fluctuations.
Disclaimer
Disclaimer: Trading involves substantial risk. The Saga System is a decision-support tool only and does not constitute financial advice. Past performance does not guarantee future results.
Indikator

Trend Energy Filter
🚀 Trend Energy Filter
Introducing a new dimension in trend analysis: Trend Energy.
In automotive systems (like ECU sensor data), we use hysteresis and noise-gates to prevent "jitter" from triggering false responses.
This script applies that same logic to Momentum (Trend Energy):
ENERGY: Measures the "Engine Load" of the trend by calculating the distance from a long-term SMA.
NOISE FILTER: Uses an ATR-based threshold. The Energy value only updates if the change is significant, effectively filtering out the "market static" that causes false signals.
EXHAUSTION: Detects when the "Fuel" is running out by identifying peaks in energy and subsequent cooling.
While this type of signal processing is often hidden inside expensive commercial "black box" tools, this script provides it as a transparent, open-source engineering solution.
While standard indicators look at price in isolation, the Trend Energy Filter analyzes the "tension" between price and its long-term baseline (SMA). By focusing on the Surface Area of this tension, we gain a visual representation of market conviction that has been largely overlooked by traditional technical analysis.
The Innovation of the "Energy Surface"
Most traders view moving averages as simple static lines. The Trend Energy Filter reimagines the gap between price and the SMA as a dynamic surface.
Volumetric Visualization: Instead of thin lines, the indicator uses a neon-glow "Surface" with vertical gradients. This represents the total "Energy" currently held by the trend.
Volatility-Adjusted Noise Filter: Unlike standard oscillators that whipsaw during consolidation, this script utilizes a state-persistent ATR filter. It only updates the "Surface" when market energy moves significantly, effectively silencing the noise of minor price fluctuations.
XAUUSD 15min
Peak-Based Exhaustion Logic: By tracking the Highest energy peaks over a lookback period, the script identifies when a trend's "batteries" are running low—turning the surface blue when momentum begins to stall.
How to Trade with the Energy Surface:
1. Entering the Energy Flow (Momentum Resumption)
Watch for the "Surface" to break above its previous peak. When the color shifts from the "Exhaustion Blue" back to a vibrant Bullish Green or Bearish Red, it signals that the market has finished its rest and is ready to expand the surface area again.
NAS100 15min
Signal: Momentum Increasing alert.
2. Spotting the Blow-Off (Exhaustion Detection)
When the "Surface" is high but begins to contract (falling below its recent high), the trend is becoming "over-extended" or "exhausted." This is the ideal time to take profits or tighten trailing stops.
Visual: The surface turns blue (#5b9cf6) while still at high levels.
NAS100 15 min
3. The Squeeze (Energy Compression)
When the Energy Surface is exceptionally low and the Noise Filter prevents it from fluctuating, the market is in a "coiled spring" state. A sudden expansion of the surface from a flat baseline often precedes a massive directional breakout.
NAS100 15min
4. Baseline Context
Green Surface: Price is above the 200 SMA (Bullish Energy).
Red Surface: Price is below the 200 SMA (Bearish Energy).
Blue Surface: Trend is pausing or mean-reverting (Exhaustion). Indikator

Institutional Flow Scalper [IFS] v4Institutional Flow Scalper
The Institutional Flow Scalper reconstructs institutional-grade order flow analysis using only price and volume data available on TradingView. Instead of relying on traditional lagging indicators, IFS detects the footprints that large players leave in the market through volume delta imbalances, liquidity sweeps, and order absorption patterns.
HOW IT WORKS
IFS uses a multi-pillar confirmation system. A signal only fires when 2 or more independent pillars align in the same direction, reducing false signals and filtering noise.
The 7 Pillars:
1. Synthetic Volume Delta: Reconstructs buying vs selling pressure by analyzing where price closes within each bar's range, weighted by volume. This approximates what institutional platforms like Bookmap show through actual order flow.
2. Momentum Divergence: Compares the rate of change between price and cumulative volume delta. When price moves one direction but volume pressure shifts the opposite way, it signals exhaustion before the chart reflects it.
3. Liquidity Sweep Detection: Identifies stop hunts where price sweeps beyond a recent swing high/low with a volume spike, then fails to hold. This is the "smart money" concept of grabbing liquidity before reversing.
4. Order Absorption: Detects bars with abnormally high volume but small bodies, indicating a large player is absorbing aggressive orders without letting price move. This is what footprint chart traders look for as "stacked imbalances."
5. VWAP Cross & Band Bounce: Monitors price interaction with session VWAP and its standard deviation bands. Crosses and bounces from the 1-sigma bands serve as mean-reversion confirmation.
6. EMA Trend Alignment: Uses 9/21 EMA structure. Signals are strengthened when a strong directional candle appears in alignment with the EMA trend, or when an EMA crossover occurs.
7. POC Breakout: Tracks a dynamic Point of Control (volume-weighted price center) and flags when price breaks through it, indicating acceptance of a new price level.
SIGNAL FILTERS
Choppiness Index Filter: Measures whether the market is trending or ranging using the Choppiness Index. When chop is high (above threshold), all signals are suppressed to avoid overtrading in sideways conditions.
Session Filter: Signals are restricted to high-liquidity sessions (NY Morning, NY Afternoon, London) where institutional activity is concentrated and price moves have follow-through.
Confidence Score: Each bar receives a composite score from 0 to 100 based on all pillar inputs. Only bars exceeding the minimum confidence threshold generate signals.
Position Management: Only one trade can be active at a time. No new signal fires until the current trade closes via TP or SL. This prevents signal stacking and overtrading.
VISUAL FEATURES
Clear entry labels showing direction (LONG/SHORT), confidence percentage, and which pillars confirmed the trade. On entry, colored zones project forward showing the risk area (red box from entry to SL) and reward area (green box from entry to TP), with exact price levels and point distances on the labels.
Exit labels display the outcome: TP HIT, SL HIT, or MOM EXIT. All visual elements are limited to the current day's session to keep the chart clean as you scroll through history.
The dashboard displays real-time metrics: Confidence Score, Volume Delta direction, Pressure Index, VWAP distance, ATR, Session status, Chop Index, directional Bias, and current Position state.
SETTINGS OVERVIEW
Signal Engine: Sensitivity mode (Low/Medium/High/Adaptive), minimum confidence threshold.
Volume Delta Engine: CVD lookback and smoothing periods.
Liquidity Sweep: Swing point lookback, volume spike threshold.
VWAP: Band multipliers, POC lookback.
Anti-Chop Filter: Chop Index length and threshold.
Session Awareness: Configurable session windows for NY, PM, and London.
Risk Management: ATR-based TP and SL multipliers, visual line extension length.
Visual Style: Fully customizable colors for bull, bear, entry, TP, and SL elements.
RECOMMENDED USE
Designed for scalping and day trading on futures (ES, NQ, MNQ, GC, CL) and high-liquidity instruments. Optimized for 1-minute, 5-minute, and 15-minute timeframes. Works on any instrument with reliable volume data.
Use with proper risk management. Position sizing should reflect your account size and risk tolerance. Past indicator signals do not guarantee future performance.
WHAT MAKES THIS DIFFERENT
Most scalping indicators on TradingView are variations of RSI + EMA + MACD. IFS takes a fundamentally different approach by reconstructing order flow concepts (volume delta, absorption, liquidity sweeps) that institutional traders use on specialized platforms, and making them accessible within TradingView's ecosystem. The multi-pillar confirmation system ensures signals only fire when multiple independent factors align, not just when a single oscillator crosses a threshold. Indikator

Quant Grade StochasticThe Quant Grade Stochastic is an institutional-level momentum workstation designed to solve the primary flaw of traditional oscillators: static overbought and oversold levels. In modern markets, static 80/20 or 70/30 levels often lead to "premature fading" in strong trends or missed entries during low-volatility regimes.
This script replaces fixed levels with Adaptive Volatility Zones—dynamic bands that expand and contract based on the market's standard deviation. This allows traders to identify true momentum extremes relative to current market conditions, not arbitrary numbers.
🚀 Key Quant Features
1. Adaptive Volatility Zones (Mean Reversion)
Unlike the standard Stochastic, the OB/OS levels are calculated using a volatility-adjusted engine. When volatility spikes, the zones expand to prevent "false" overbought signals. When volatility drops, the zones contract to catch micro-extremes.
2. Momentum Heatmap (Acceleration Analysis)
The %K line is color-coded based on its internal slope and acceleration.
Bright Colors: Indicate strong momentum and acceleration.
Dull Colors: Indicate momentum deceleration—a quant-grade "early warning" that a trend is tiring even before a crossover occurs.
3. Institutional Dashboard
A real-time status table that provides a high-level overview of market mechanics:
Trend Filter: Instant identification of the primary trend using a 200 EMA.
Volatility State: Quantifies if current market volatility is High or Low relative to its 50-period average.
Position State: Classifies the oscillator’s current location (Overbought, Oversold, or Neutral).
4. Dual Divergence Engine
Detects two distinct types of momentum anomalies:
Regular Divergence: Traditional reversal signals where price and momentum disconnect.
Hidden Divergence: Quant-grade trend continuation signals, identifying high-probability pullbacks in a trending market.
5. Smart Fade Signals
Markers specifically designed for the "Return-to-Range" strategy. When the %K line exits an extreme volatility zone and crosses back inside, a FADE signal is generated. These signals are visually filtered by the 200 EMA trend engine to prioritize "With-Trend" opportunities.
💡 How to Trade
The Fade Strategy: Wait for the %K line to go above the Adaptive Upper Zone. When it crosses back under that zone, look for a short entry. The "FADE" marker highlights this exact moment.
The Trend Follower: Use Hidden Divergence markers during pullbacks in a Bullish Trend (confirmed by the Dashboard) to find low-risk continuation entries.
Volatility Squeeze: When the Adaptive Zones are extremely tight (indicated by "Low" Volatility on the Dashboard), look for a Momentum Heatmap breakout to signify the start of a new expansion.
🛠️ Settings
Engine: Choose from 5 different smoothing types (SMA, EMA, WMA, HMA, ALMA).
Adaptive Zones: Customize the Standard Deviation multiplier to tighten or loosen your extremes.
Multi-Timeframe: Sync your momentum analysis with higher timeframes without leaving your current chart.
Quant Filter: Toggle the 200 EMA trend filter to clean up counter-trend noise. Indikator

Indikator

[uPaSKaL] Momentum Structure CandlesMomentum Structure Candles
Momentum Structure Candles is an intrabar-based framework built to show how momentum develops inside each higher timeframe bar.
Instead of reducing momentum to a single line or value, the script reconstructs the internal structure of the bar using lower timeframe data and displays it as a momentum candle. The result is a structural view of direction, stability, expansion, and internal pressure.
🔹 What It Shows
Traditional momentum tools focus on outcome.
Momentum Structure Candles focuses on formation.
Two bars can close in the same direction while having completely different internal behavior:
one builds smoothly
one expands early and fades
one confirms late
one remains internally mixed
This script helps reveal:
whether momentum is building cleanly or fragmenting
whether pressure is stable or unstable
whether late-bar activity confirms or weakens the move
whether the bar is structurally directional or internally rotational
🔹 Intrabar Momentum Reconstruction
The script requests lower timeframe OHLC data and converts it into momentum-relative values using a configurable lookback.
Those intrabars are then aggregated into a synthetic momentum candle that represents the internal structure of the active bar.
This allows you to read:
momentum range
internal pullbacks
final position within the structure
balance versus expansion
🔹 Last-Bar Magnifier
The magnifier expands the current bar into its lower timeframe momentum structure, making it easier to read how the candle is forming in real time.
Useful for:
tracking acceleration or slowdown during bar development
spotting late confirmation versus late failure
avoiding over-reliance on the final candle close
🔹 Volume-Weighted Momentum
Momentum can optionally be weighted by volume to distinguish between:
low-participation movement
stronger momentum backed by active participation
similar structures with different internal conviction
🔹 Anchored Mode
The script can also run in anchored cumulative mode.
In this mode, momentum is accumulated and reset on a selected anchor period, creating a session-style structural model similar to a cumulative flow framework.
This is useful for:
tracking persistent directional pressure
identifying compounding momentum
spotting early loss of structure after expansion
🔹 Heatmap Context
An optional heatmap normalizes current momentum strength relative to recent conditions, helping highlight:
strong expansion versus ordinary movement
active versus passive conditions
high-energy momentum regimes
🔹 Phase Analysis
The current bar can be split into:
Early
Mid
Late
This helps answer a key question:
When was momentum strongest inside the bar?
It can reveal:
early push followed by failure
late expansion after consolidation
internal transitions hidden by the final close
🔹 Additional Notes
Built from lower timeframe structure, not standard price candles
Includes optional Light and Dark visual themes
Best used for structural reading, timing, and execution context
🔹 Practical Use Cases
confirm whether a move is structurally strong or only visually strong
detect weakening momentum before price structure shifts
evaluate continuation versus exhaustion
analyze pullbacks as corrective or structural
monitor the live development of the active bar
combine with liquidity, structure, or SMC-based execution models
🔹 Final Note
Momentum Structure Candles is not built to replace price.
It is built to expose the internal momentum architecture that standard candles hide.
By reconstructing intrabar structure, optionally weighting by volume, supporting anchored cumulative behavior, and providing a real-time magnifier, the script turns momentum into a readable structural process rather than a compressed output.
Indikator

Indikator

Indikator

AG Pro ROC Momentum Shift Map [AGPro Series]AG Pro ROC Momentum Shift Map
Overview / What it does
AG Pro ROC Momentum Shift Map is a momentum-regime tool built around the Rate of Change (ROC) concept, but organized as a transition map rather than a standalone oscillator. Instead of treating ROC as a simple line that moves above or below zero, this script tracks how momentum shifts from one regime to another, whether that transition is strengthening or fading, and whether the current phase is fresh, mature, or beginning to stall.
The script is designed to help users read momentum behavior in a more structured way. It separates bullish and bearish momentum into shift and expansion phases, then adds context through transition-zone logic, baseline separation, freshness tracking, and exhaustion risk. This allows the chart to show not only direction, but also the condition of that direction.
This publication is not intended to forecast tops, bottoms, or future price movement. It is a context tool that organizes ROC behavior into states that may help users evaluate whether momentum is attempting to change character, continue, or lose efficiency.
Unique Edge
The main difference between this script and many ROC-based publications is that it does not present ROC as a raw crossing signal. It reframes ROC as a regime map with state logic, quality scoring, and momentum-stage classification.
Within the AG Pro series, this script also has a different purpose than the previously published tools. It is not a breakout-quality model, not a pullback validator, not a support/resistance reaction map, not a relative-strength rotation framework, and not a correlation-stress tool. Those scripts focus on structure, levels, cross-asset comparison, reclaim behavior, or directional pressure. This script focuses on internal momentum state transitions derived from ROC behavior itself.
More specifically:
- It differs from breakout or retest-oriented scripts because it does not judge price interaction with a key level.
- It differs from reaction-map scripts because it does not score how price behaves around predefined structures such as pivots, support/resistance, or moving-average reclaim zones.
- It differs from pressure or trend-strength tools because its goal is not to estimate directional force in isolation, but to classify whether momentum is transitioning, expanding, contracting, or stalling.
- It differs from relative-strength tools because it does not compare one symbol against another symbol or benchmark.
That distinction is the core of the script’s originality: it uses ROC to map momentum regime transitions, not merely to display momentum magnitude.
Methodology
The script begins with a Rate of Change calculation over a user-defined length and optionally smooths that series to reduce small fluctuations. A regime baseline is then derived from the ROC series to establish whether current momentum is operating above or below its local equilibrium.
A dynamic transition zone is built from ROC volatility. This zone is used to identify areas where momentum is attempting to move from one regime into another. Instead of using a rigid zero-line interpretation alone, the script evaluates whether ROC is operating inside or outside this transition area and whether slope supports the move.
The internal state engine classifies momentum into five main conditions:
- Bull Shift
- Bull Expansion
- Bear Shift
- Bear Expansion
- Neutral / Compression
To add structure beyond simple state assignment, the script estimates Shift Quality using a combination of zone positioning, slope behavior, separation from the regime baseline, and acceleration. A whipsaw-sensitive penalty reduces the score when repeated zero-line crossings suggest unstable momentum behavior.
The script also tracks how long the current state has been active. That information is used to classify the move as Fresh, Active, Mature, Stale, or Stalling. Expansion and contraction logic are then layered on top to provide a clearer view of whether momentum is broadening or fading. Finally, an exhaustion-risk estimate is derived from adverse slope, adverse acceleration, and contraction behavior against the current state.
Signals & Alerts
This script provides state-based informational events rather than trade promises. The built-in alert set is designed to mark notable momentum transitions in a deterministic way:
- Bull Shift Detected
- Bull Expansion Active
- Bear Shift Detected
- Bear Expansion Active
- Momentum Stalling
These alerts are best interpreted as momentum-context events. They are not guarantees of continuation, reversal, or trade outcome.
Key Inputs
Important inputs include:
- ROC Length: defines the main lookback used for Rate of Change.
- ROC Smoothing: reduces short-term noise in the raw ROC series.
- Regime Baseline Length: sets the local reference used for momentum separation.
- Transition Zone Length and Multiplier: control the width and sensitivity of the transition area.
- Quality Normalization Length: affects how the quality model normalizes slope and ROC magnitude.
- Whipsaw Lookback: influences how aggressively unstable zero-line rotation is penalized.
- Freshness thresholds: define how quickly a state progresses from fresh to mature or stale.
Users can also customize visual behavior such as histogram visibility, transition-zone display, background shading, labels, and panel presentation.
Limitations & Transparency
This script is an analytical indicator, not a prediction engine. ROC is a momentum derivative, so it can react quickly but can also become unstable in choppy or mean-reverting environments. During low-quality market conditions, momentum may rotate repeatedly around the transition zone and generate less reliable state changes.
Shift Quality is an internal scoring framework created to organize momentum transitions more clearly. It is not an objective universal measure of trade quality, and it should not be interpreted as proof of future performance.
Freshness, expansion, contraction, and exhaustion labels are contextual classifications based on the script’s internal logic. They are intended to help users structure momentum analysis, not to replace broader chart reading, trend assessment, market structure work, or risk management.
As with any indicator, outputs can vary depending on symbol characteristics, volatility regime, timeframe, and user settings. This script should be used as one analytical layer within a broader decision process.
Risk Disclosure
This indicator is for chart analysis and educational use. It does not provide investment advice, trading advice, or guaranteed results. Financial markets involve risk, and no indicator can ensure favorable outcomes. Users should evaluate the script in their own workflow, test settings carefully, and apply independent judgment before making trading decisions.
Indikator

Indikator

Indikator

Magnet Map + Delta Concentration: IndicesMagnet Map: Index Edition (Institutional Flow)
Overview
The Magnet Map: Index Edition is an adjunct to my previous Magnet Map Indicators but with preset inputs geared for trading index options without manually adjusting the inputs for each chart with the previous version. This is a high-precision order flow tool specifically tuned for the high-liquidity environment of Major Indices and Futures. Unlike standard volume profiles that show all historical data, the Magnet Map uses a v6 Footprint Engine to identify Delta-Concentrated Magnets—price levels where institutional buyers or sellers have created significant imbalances.
Key Features:
Dynamic Session Lookback: Toggle between a fixed historical lookback or a Session-Only mode that automatically resets at the 9:30 AM open to focus only on today's intraday battle.
Institutional Delta Filtering: Optimized with a 1,000 Delta Threshold to filter out retail "noise" and only plot levels where true institutional conviction is present.
Index-Tuned Intervals: Defaulted to a 100-Tick Interval, grouping volume into meaningful $1.00 "Power Zones" (perfect for SPY and QQQ).
Real-Time POC Tracking: A dashed, high-visibility Point of Control (POC) that tracks the most aggressive institutional interest in the current candle.
Absorption Alerts: Built-in alerts for Bullish/Bearish Absorption, signaling when price is moving in one direction while the "Big Money" is aggressively buying or selling against that move.
How to Trade It:
The Springboard: When price is above the Blue VWAP and retraces to a Cyan (Bullish) Magnet, look for long entries as the "Magnet" acts as institutional support.
The Wall: When price is below VWAP and rallies into a Magenta (Bearish) Magnet, look for rejection/short opportunities as sellers defend their "Wall."
The Absorption Flip: Watch for Absorption alerts near Magnets; this often signals the end of a trend and a high-probability reversal.
Requirements: TradingView Premium or Ultimate (to access Footprint data).
Best For:
Assets: SPY, QQQ, /ES, /NQ, /YM.
Timeframes: 1m, 5m, 15m, and 30m.
Settings Recommendation for Indices:
Ticks Per Row: 100 (for $1.00 zones) or 200 (for $2.00 zones).
Delta Threshold: 1,000 – 2,500 (adjust based on daily volatility).
Lookback: Use Session-Only for day trading; use 750 Manual for swing levels.
---Note: Given the dynamic focus of this indicator, I have also created a backtracking Magnet Map that plots levels of significant buying/selling pressure that have been untouched. It can be found directly below:
Script by TylerisTrading Indikator

Strategi

EMA Color Plus [ChartWhizzperer]EMA Colour Plus PRO | Momentum Guard by ChartWhizzperer
The clinical approach to momentum filtering.
Moving averages are the foundation of trend analysis, but standard EMAs are inherently flawed. They fall victim to market noise, consume valuable indicator slots on your chart, and frequently suffer from toxic higher-timeframe repainting.
As a system architect, I engineered the EMA Colour Plus to eradicate these inefficiencies. This open-source script is not just a moving average; it is a multi-dimensional momentum guard designed for uncompromising precision and chart hygiene.
CORE ARCHITECTURE (Why this filter outperforms standard EMAs):
Repaint-Proof MTF Protocol: When utilising the higher-timeframe (HTF) functionality, the algorithm strictly locks onto confirmed historical closures. There are no real-time illusions and no retrospective repainting. The line is carved in stone.
The Slot-Saver Integration: Free users are heavily restricted by indicator limits. This script integrates a dynamic EMA, Bollinger Bands, RSI momentum gating, and ROC filtering into a single, highly optimised mathematical unit.
Data-Vacuum Failsafe: Standard Volume Weighted Moving Averages (VWMA) crash when broker feeds temporarily drop volume data (common in Forex). This script features a custom fallback injection that simulates baseline volume during data vacuums, ensuring the indicator never disappears from your chart.
Mathematical Symmetry: Momentum thresholds (like RSI) are perfectly mirrored against the median, reducing input clutter while maintaining strict logic for both bullish and bearish state transitions.
Examine the source code: You will find clean, single-line compiled logic and a flawless security protocol for MTF data retrieval.
However, an EMA does not pull the trigger. Ask me for more!
Disclaimer
Signals and alerts are provided for informational purposes only and do not constitute financial advice or a recommendation to buy or sell.
Trading involves substantial risk and may result in the total loss of capital. Execution via third-party tools may differ from alerts. Past performance is not indicative of future results. Indikator

Case's Modern MACD-Volatility Normalized MomentumCase's Modern MACD-Volatility Normalized Momentum
Based on the award-winning academic research of Alex Spiroglou, CFTe, MSTA — NAAIM Founders Award & Charles H. Dow Award (2022)
📄 Original paper: SSRN #4099617
What Is MACD-V?
The standard MACD has a fundamental flaw: its raw values are denominated in price, making them incomparable across assets, timeframes, and volatility regimes. A MACD reading of 5.0 means something completely different on NVDA vs. SPY vs. BTC.
MACD-V solves this by dividing the MACD by ATR × 100, producing a volatility-normalized momentum oscillator that is:
Comparable across all tickers and timeframes
Centered around fixed, meaningful thresholds (±50, ±150, ±200)
Regime-aware — you know exactly where you stand in the momentum lifecycle at all times
This script extends the core MACD-V framework with a full Momentum Lifecycle Road Map, Trend Regime Filter, Regime-Aware Opportunity Zones, Acceleration (2nd Derivative), and several supporting systems.
Core Components
1. MACD-V Line
The volatility-normalized momentum line. Default parameters: Fast EMA 12, Slow EMA 26, ATR 26 — the same as classic MACD, but normalized. The line is color-coded by momentum state (see Momentum Lifecycle below).
2. Signal Line
A 9-period EMA of MACD-V. Crossovers and the MACD-V's position relative to the signal define sub-states within each momentum zone.
3. MACD-VH Histogram
The difference between MACD-V and its Signal Line. Color-coded by direction and growth:
Teal (growing positive) — bullish momentum expanding
Light teal (shrinking positive) — bullish momentum fading
Light red (rising negative) — bearish momentum fading
Red (falling negative) — bearish momentum expanding
Extreme histogram readings beyond ±40 signal short-term overextension.
4. Acceleration (2nd Derivative)
A smoothed EMA of the bar-to-bar change in MACD-V, scaled for visibility. Think of it as the rate of change of momentum. When acceleration is positive (teal), momentum is building. When negative (red), it's waning — even if the MACD-V line itself is still rising. This is particularly powerful for timing entries and exits.
The Momentum Lifecycle Road Map
MACD-V's fixed thresholds carve price momentum into 8 distinct states, each with a precise behavioral expectation:
StateMACD-V Rangevs. SignalColorInterpretationRisk (Overbought)> 150—🔴 RedMomentum extended; risk of reversal or correctionRallying50 to 150Above🟢 GreenStrong bullish momentum with trend confirmationRetracing50 to 150Below🟠 OrangeBullish zone but losing momentum; cautionRanging (Bullish)-50 to 50Above🩵 TealConsolidation with bullish biasRanging (Bearish)-50 to 50Below🔴 RedConsolidation with bearish biasRebounding-150 to -50Above🟢 Light GreenRecovering from oversold; potential reversalReversing-150 to -50Below🟣 PurpleBearish zone, still decliningRisk (Oversold)< -150—🔴 RedMomentum deeply negative; exhaustion risk/opportunity
A status table in the top-right corner always shows the current state, trend regime, opportunity zone, and acceleration direction — no squinting at the chart required.
Trend Regime Filter (200 EMA Slope)
A row of dots plotted below the oscillator, colored by the slope of the 200-period EMA:
🟢 Green — Rising 200 EMA → Bullish Regime
🔴 Red — Falling 200 EMA → Bearish Regime
⚫ Gray — Flat → Neutral Regime
This single filter dramatically changes how you interpret every other signal on the indicator.
Regime-Aware Opportunity Zones
This is where the indicator gets powerful for active traders. The trend regime context transforms oversold/overbought readings into actionable setups:
🟢 Bull Regime Signals (200 EMA rising)
SignalConditionMeaningBuy the Dip ZoneMACD-V between -50 and -150Normal pullback in an uptrend — historically high-probability long entryRare Buy!MACD-V ≤ -100Deep dip in bull trend — a rarer, higher-conviction setupExtreme OB WarningMACD-V > 200Even in a bull regime, this level of extension warrants caution
🔴 Bear Regime Signals (200 EMA falling)
SignalConditionMeaningShort the Rip ZoneMACD-V between 50 and 150Counter-trend bounce in a downtrend — potential short entryRare Short!MACD-V ≥ 100Extended rip in a bear regime — rarer, higher-conviction short setupExtreme OS OpportunityMACD-V < -200Even in a bear regime, this extreme may offer a tradeable bounce
Zones are highlighted with background color fills and shape markers (triangles for zone entries, diamonds for rare signals) at the pane edges.
How to Use It: Practical Examples
Example 1: Buying the Dip in a Bull Trend
Scenario: SPY, daily chart. 200 EMA is rising (green dots). MACD-V drops from +80 (Rallying) into the -50 to -150 range.
Regime dots turn green → confirmed bull regime
Status table shows "Buy the Dip Zone" with green background
MACD-V hits -90, acceleration flips positive (teal area)
MACD-V crosses above signal line → state transitions from Reversing to Rebounding
Entry signal: long on the Rebounding transition with acceleration confirming. Stop below the prior swing low. Target: return to Rallying zone (+50 to +150)
Example 2: Shorting the Rip in a Bear Trend
Scenario: QQQ, daily chart. 200 EMA is falling (red dots). After a sharp decline, price bounces and MACD-V pushes up toward +80.
Regime dots are red → confirmed bear regime
MACD-V enters the 50–150 range → "Short the Rip Zone" activates
Histogram begins shrinking (light teal → light red)
Acceleration turns negative while MACD-V is still above +50
MACD-V crosses below signal line → Rallying → Retracing state change
Entry signal: short on the Retracing state entry. Target: return to Ranging or lower
Example 3: Identifying Exhaustion at Extremes
Scenario: Individual stock surges — MACD-V blows past +150 into Risk (Overbought) and then crosses +200 (Extreme OB).
Status table shows "Risk (Overbought)" — position sizing should be reduced
MACD-V crosses +200 → Extreme OB background activates (dark red)
If in a bull regime: the "Extreme OB Warning" marker fires at the pane ceiling — this is a warning to tighten stops or take partial profits, not necessarily to go short outright
Acceleration turns negative while MACD-V is still above 150 → divergence between price extension and momentum rate-of-change
Watch for MACD-V to turn down and re-enter the 50–150 Rallying zone — that first pullback often offers the next long entry
Example 4: Reading the Histogram for Short-Term Timing
Scenario: You've identified a bullish setup but want better entry timing.
MACD-V is in Ranging (Bullish) (-50 to 50, above signal)
Histogram is positive but shrinking (light teal) — don't chase yet
Wait for histogram to grow again (dark teal bars) → momentum is re-accelerating
Acceleration area flips from red to teal → confirmation
This sequence often pinpoints within 1-2 bars of the optimal entry
Example 5: The Bearish Divergence Setup
Scenario: A stock is below its daily 200 SMA but MACD-V is in the Rebounding or Reversing zone.
Price is in a longer-term downtrend (below 200 SMA)
A light blue background appears — this is the bearish divergence warning: short-term momentum is recovering, but the bigger picture remains weak
Use this signal to fade bounces or simply avoid longs until the regime and trend realign
Supporting Systems (Optional)
LBR 3/10 Oscillator (Sardine)
Linda Bradford Raschke's classic short-term momentum oscillator, volatility-normalized using the same MACD-V methodology. Toggle on to use as a leading signal for MACD-V crossovers — the 3/10 typically turns before the 12/26.
Elder Impulse Plus Bar Coloring
Combines the direction of a 13-period EMA with the direction of the MACD-VH histogram to color price bars:
🟢 Green: EMA rising + histogram expanding positive → buy
🔴 Red: EMA falling + histogram expanding negative → sell/avoid longs
🔵 Blue: Mixed signals → stand aside
Built-In Alerts
The indicator includes 18 alert conditions, covering:
MACD-V / Signal Line crossovers (bullish & bearish)
Zero line crossovers
Entry into all 8 momentum lifecycle states
Extreme regime signals (Bull + >200, Bear + <-200)
MACD-VH overbought/oversold extremes (±40)
MACD-V direction changes (turned up / turned down)
Set alerts on any condition without having to stay glued to the chart.
Pine Screener Compatible
Four numeric values are plotted to the Data Window for use with TradingView's Pine Screener:
Momentum State # (4 to -4)
MACD-V Direction (1, 0, -1)
Trend Regime # (1, 0, -1)
Acceleration Direction (1, -1)
Screen entire watchlists for, e.g., "Bull regime + Momentum State = Rebounding + Acceleration positive" — a powerful combination for systematic scan-based trading.
Settings Reference
ParameterDefaultPurposeFast / Slow EMA12 / 26MACD-V core calculationATR Length26Volatility normalizationSignal Line9EMA of MACD-VRisk Levels±150Overbought/oversold thresholdsFast/Slow Boundary±50Momentum zone boundariesTrend EMA Length200Regime filterRare Buy/Short Level±100Rare signal thresholdsExtreme Level±200Extreme zone definitionAccel Smooth / Scale5 / 4.0Acceleration sensitivity
Credits & Disclaimer
This indicator is a heavily extended implementation of the MACD-V framework developed by Alex Spiroglou, winner of the 2022 NAAIM Founders Award and Charles H. Dow Award. Full academic methodology is available in the original paper linked above.
This script is published for educational and analytical purposes only. Nothing here constitutes financial advice. All trading involves risk. Past performance of any indicator is not indicative of future results.
Indikator

MACD Reversal & RSI OB/OS Dots v1.1📊 MACD Reversal + RSI Exhaustion Dots (1s Scalping Tool)
This indicator is designed for ultra-fast scalping environments, specifically optimized for 1-second charts, where precision and timing are critical.
It combines MACD momentum shifts with RSI exhaustion levels to identify potential short-term reversal points and highlight them directly on the price chart using simple visual signals.
⚙️ How It Works
This script detects early momentum reversals by analyzing the MACD histogram:
A bullish reversal is identified when the MACD histogram stops decreasing and begins increasing.
A bearish reversal is identified when the MACD histogram stops increasing and begins decreasing.
To filter out weaker signals, reversals are only considered valid when paired with RSI extreme conditions:
🟢 Green Dot (Bullish Setup)
MACD histogram reverses upward
RSI is oversold (≤ 30)
Plotted below the candle
🔴 Red Dot (Bearish Setup)
MACD histogram reverses downward
RSI is overbought (≥ 70)
Plotted above the candle
🎯 Purpose
This indicator helps traders:
Identify potential reversal points in fast-moving markets
Spot momentum shifts at exhaustion levels
Improve entry timing for scalping strategies
Reduce noise by requiring confluence between two indicators
🚀 Best Use Cases
1-second and low timeframe scalping
Futures trading (e.g., MNQ, NQ, ES)
High-volatility sessions (market open, news events)
Traders looking for quick reaction signals
⚠️ Important Notes
Signals are reactive, not predictive — they confirm a shift that has already started.
On extremely fast timeframes, false signals can occur due to market noise.
Best used in combination with:
Trend direction
Key support/resistance levels
Volume or order flow tools
🔔 Alerts
The script includes alert conditions for both bullish and bearish signals, allowing traders to automate notifications when setups occur.
⚖️ Disclaimer
This indicator is provided for educational and informational purposes only and does not constitute financial advice.
Trading stocks, options, and futures involves substantial risk and is not suitable for every investor. Past performance is not indicative of future results. You are solely responsible for your own trading decisions, risk management, and financial outcomes.
The creator of this script assumes no liability for any losses or damages incurred from the use of this indicator.
💡 Final Thoughts
This tool is intentionally simple, fast, and visual — designed to give traders a clear edge in speed, not complexity.
Use it as a confirmation tool, not a standalone system. Indikator

Indikator

AI Signal Confluence [forexobroker]🔶 OVERVIEW
AI Signal Confluence is a multi-indicator voting system that scores market conditions across seven independent technical dimensions — trend, momentum, volume, volatility, MACD, SuperTrend, and market structure — and combines them into a single weighted confidence score from 0 to 100. Signals fire only when the composite score crosses a configurable threshold, ensuring that multiple analytical perspectives agree before any trade is suggested.
The problem this solves is analysis paralysis. Traders who use multiple indicators often receive conflicting signals and struggle to synthesize them into a clear decision. This indicator does the synthesis automatically: each component votes bullish or bearish with a 0-100 score, the votes are weighted by user-defined importance, and the result is a single confidence percentage that answers the question "how aligned is everything right now?"
This tool is ideal for traders who value confluence-based decision-making and want a systematic, rules-based framework rather than discretionary chart reading.
🔶 CONCEPTS
Confluence in trading means multiple independent signals pointing in the same direction at the same time. A single indicator can be wrong, but when trend direction, momentum, volume, volatility expansion, MACD histogram, SuperTrend direction, and market structure all agree, the probability of a successful trade increases meaningfully.
The weighted scoring approach recognizes that not all indicators are equally important in every market context. Trend-following traders might weight SuperTrend and EMA alignment heavily, while mean-reversion traders might emphasize RSI and Bollinger Band width. By allowing users to adjust the weights, the same indicator framework adapts to different trading styles and market conditions.
🔶 HOW IT WORKS
• Seven sub-indicators are calculated independently: EMA alignment (trend), RSI positioning (momentum), relative volume ratio, Bollinger Band width expansion (volatility), MACD histogram direction and magnitude, SuperTrend direction, and price position relative to recent pivot structure
• Each sub-indicator produces a bullish score from 0 to 100, and the bearish score is derived as the complement
• Scores are combined using user-defined percentage weights, producing a composite bull confidence and bear confidence
• A buy signal fires when the bull confidence crosses above the threshold (default 70%) on a confirmed bar with the cooldown satisfied; sell signals use the bear confidence crossing its threshold
• The dashboard displays each component's individual vote, score, and the aggregate confidence with a visual bar gauge
🔶 HOW TO USE
Add the indicator to any chart — the dashboard immediately shows how all seven components are voting and the composite confidence level
Monitor the confidence gauge at the bottom of the dashboard — when it fills toward 80-90%, a signal is likely imminent in that direction
When a signal fires with the confidence percentage displayed, evaluate whether the broader context supports the trade — check the individual component scores in the dashboard for any outliers
Adjust component weights in the Advanced settings to match your trading style — give more weight to the indicators you trust most
🔶 FEATURES
• Non-repainting signals (uses barstate.isconfirmed)
• Works on all timeframes and instruments
• 9 alert conditions with webhook JSON support
• Professional dashboard display with component-by-component voting visualization
• Fully customizable weight system for each of the seven indicators
• Gradient bar coloring and background that reflects real-time confidence level
🔶 SETTINGS GUIDE
• Confidence Threshold — Minimum composite score to trigger a signal (default: 70%)
• Signal Cooldown — Minimum bars between consecutive signals (default: 15)
• EMA Fast / Mid / Slow — EMA periods for trend alignment scoring (default: 9 / 21 / 50)
• RSI Length — RSI calculation period for momentum scoring (default: 14) • BB Length / Multiplier — Bollinger Band parameters for volatility scoring (default: 20 / 2.0)
• MACD Fast / Slow / Signal — MACD parameters for histogram scoring (default: 12 / 26 / 9)
• SuperTrend Length / Factor — SuperTrend parameters for direction scoring (default: 10 / 3.0)
• Pivot Lookback — Bars for structure scoring via pivot highs and lows (default: 5)
• Trend / Momentum / Volume / Volatility / MACD / SuperTrend / Structure Weight — Percentage weight for each component in the composite score
🔶 ALERTS
• AISC Buy Signal — Fires on confirmed bullish confluence signal
• AISC Sell Signal — Fires on confirmed bearish confluence signal • Any AISC Signal — Fires on any confirmed signal
• High Confidence (>80%) — Fires when either bull or bear confidence exceeds 80%
• Extreme Confidence (>90%) — Fires when confidence exceeds 90%
• Trend Fully Aligned — Fires when the trend component reaches a perfect score
• Volume Spike (>2x) — Fires when relative volume exceeds 2x the average
• All Indicators Agree — Fires when confidence exceeds 90% with perfect trend alignment
• Webhook JSON — JSON-formatted alert for automated bot integration
🔶 LIMITATIONS & DISCLAIMER
• This is a technical analysis tool, not financial advice
• Past patterns do not guarantee future results
• Best used alongside price action context and proper risk management
• The composite score can lag during sharp reversals because the underlying indicators are inherently reactive
• The term "AI" refers to the systematic weighted voting framework, not machine learning — no neural network or external data is used Indikator
