Momentum Squeeze Breakout EngineDescription
*Momentum Squeeze Breakout Engine* is a quantitative, trend-following breakout strategy engineered to capture explosive directional moves emerging from periods of asset compression (squeezes). By combining precise volatility boundaries, structural market sentiment filters, and micro-momentum triggers, this strategy systematically avoids false breakouts.
### Core Mechanics & Features
1. Volatility Squeeze Identification
The foundation of this strategy relies on the relationship between *Bollinger Bands* and *Keltner Channels. When the Bollinger Bands contract *inside the Keltner Channels, it confirms a highly compressed, low-volatility environment (highlighted by the subtle blue background zones). This indicates stored market energy primed for release.
2. Rigid Structural Macro Filter (200 EMA)
To eliminate counter-trend traps, the strategy utilizes a strict 200-period Exponential Moving Average (EMA) as a macro baseline. Long entries are strictly prohibited if the asset is printing below this line, ensuring you only trade high-probability expansions aligned with the dominant institutional trend.
3. Holistic Intra-Bar Bias
Rather than relying purely on close prices, the script calculates an internal *Holistic Bias* engine. It evaluates where the close falls relative to each bar's high-low range over a specific structural lookback period. A valid breakout requires a positive cumulative sentiment bias (cumBias > 0), ensuring authentic accumulation is taking place.
4. Micro-Momentum (Rate of Change) Filter
To prevent entering "slow drift" scenarios or low-volume fakeouts, a 3-period Rate of Change (ROC) velocity check is integrated. A breakout will only trigger an entry if the price action demonstrates immediate expanding velocity (priceROC > 0).
# Execution Rules
* *BUY Signal:* Generated when a compression zone has broken out within the last 3 bars, the price crosses above the Upper Bollinger Band, the macro trend is bullish (Price > 200 EMA), holistic bias is positive, and positive momentum velocity is confirmed.
* *EXIT Signal:* Generated when the price crosses below the Lower Bollinger Band following a squeeze or when the holistic bias shifts negatively, functioning as a structural trailing mechanism.
* *Signal Spacing:* Features a built-in 15-bar cooldown rule to prevent over-trading and signal clustering within volatile consolidation nodes.
### Best Practices
* *Intended Timeframe:* Optimized for the *1-Hour (1H)* chart.
* *Assets:* Best suited for high-liquidity assets including Major Crypto Pairs (BTC, ETH), Blue- Chip Equities, Indices and Major Forex Pairs.
* *Risk Management:* Default settings utilize a 100% equity allocation model for raw backtesting transparency, but traders should scale their position sizes according to their personal risk tolerances.
### Disclaimer
*Financial and Trading Risk Warning:*
This script is an educational and analytical tool designed to demonstrate quantitative breakout concepts using historical data. It is published as an open-source resource for informational purposes only and does not constitute financial, investment, or trading advice.
Past performance is not indicative of future results. Market conditions change constantly, and systematic strategies can experience significant drawdowns. Automated trading involves substantial risk of capital loss. Never trade with money you cannot afford to lose. The author assumes no liability or responsibility for any financial losses incurred from the use or modification of this code. Always perform your own independent research and forward-test on a demo account before risking live capital. Strategia

Indicatore

Correlated Assets TableA quick cross-check on whether the rest of the complex agrees with you. It tracks NQ, ES, YM, and the VIX and shows, for each, where price sits against an EMA envelope. A move with all three indices pulling the same way and VIX cooperating is worth more than NQ running by itself. Only take your chart's signal when the table backs it, and treat a split as a yellow light. Each symbol comes in through request.security, so the values settle as bars close. It's confirmation, not a precise entry clock.A quick cross-check on whether the rest of the complex agrees with you. It tracks NQ, ES, YM, and the VIX and shows, for each, where price sits against an EMA envelope. A move with all three indices pulling the same way and VIX cooperating is worth more than NQ running by itself. Only take your chart's signal when the table backs it, and treat a split as a yellow light. Each symbol comes in through request.security, so the values settle as bars close. It's confirmation, not a precise entry clock. Indicatore

Indicatore

Indicatore

Indicatore

Indicatore

Indicatore

Liquidity Sweep Detector [Proozac]# Liquidity Sweep Detector
**Pine Script v6 — Overlay Indicator**
---
## What It Does
Detects two related concepts from institutional liquidity theory:
1. **Equal Highs / Equal Lows (EQH / EQL)** — price levels where the market reached the same high or low on two separate occasions. These levels concentrate retail stop orders (buy stops above EQH, sell stops below EQL) and act as magnets for institutional order flow.
2. **Liquidity Sweep** — when price breaks through an EQH or EQL with a wick but *closes back on the opposite side*. This is the signal that institutions triggered the stops, absorbed that liquidity, and are now positioned in the opposite direction — the classic "stop hunt" or "liquidity grab."
---
## Detection Logic
### Equal Highs / Equal Lows
```
EQH: two pivot highs within a configurable % tolerance of each other
EQL: two pivot lows within a configurable % tolerance of each other
```
The indicator finds swing highs and lows via `ta.pivothigh` / `ta.pivotlow`. For each new pivot it compares against the 5 most recent ones. If the relative difference is within the `Equal Level Tolerance %` threshold, a dashed line is drawn between the two points and labelled `EQH` or `EQL`.
### Bullish Sweep (long signal)
```
wick_low < EQL AND close > EQL AND open > EQL
```
The wick pierces below an equal low but the candle body closes above it. Price swept the sell stops and snapped back — potential bullish reversal.
### Bearish Sweep (short signal)
```
wick_high > EQH AND close < EQH AND open < EQH
```
The wick pierces above an equal high but the candle body closes below it. Price swept the buy stops and snapped back — potential bearish reversal.
---
## Inputs
| Input | Default | Description |
|-------|---------|-------------|
| **Swing Length (Pivot)** | 10 | Bars required on each side to confirm a swing. Higher = fewer but more reliable pivots |
| **Equal Level Tolerance %** | 0.1 | Percentage margin for two pivots to be considered "equal". Increase for volatile assets |
| **Max Lookback for Equal Levels** | 50 | How far back to search for matching pivot levels |
| **Equal Highs Line Color** | Red | Color for EQH lines |
| **Equal Lows Line Color** | Green | Color for EQL lines |
| **Bearish Sweep Color** | Bright Red | Color for bearish sweep signal and candle |
| **Bullish Sweep Color** | Bright Green | Color for bullish sweep signal and candle |
| **Show Equal Level Lines** | true | Toggle EQH/EQL lines on/off |
| **Show Sweep Signals** | true | Toggle triangle signals on/off |
| **Show Sweep Labels** | true | Toggle "BULL SWEEP" / "BEAR SWEEP" labels on/off |
---
## Visual Signals
| Element | Description |
|---------|-------------|
| Red dashed line + "EQH" label | Liquidity pool at highs |
| Green dashed line + "EQL" label | Liquidity pool at lows |
| Green triangle below bar + label | Bullish sweep detected (potential long entry) |
| Red triangle above bar + label | Bearish sweep detected (potential short entry) |
| Candle color change | The sweep candle is highlighted in the signal color |
---
## How to Use
**Basic setup:**
1. Add to any chart (works best on 15m, 1H, 4H timeframes).
2. Look for confluence: a sweep on an EQL that also sits on a demand zone or Order Block produces the highest-conviction signals.
3. Enter on the candle after the sweep, stop below the sweep candle's wick low (bullish) or above the wick high (bearish).
**Setting up alerts:**
Three `alertcondition` entries are built in and ready to use:
- `Bullish Liquidity Sweep`
- `Bearish Liquidity Sweep`
- `Any Liquidity Sweep`
In TradingView: Alerts → Condition → select the indicator → choose the desired alert type.
---
## Configuration Tips
| Asset type | Recommended tolerance |
|---|---|
| Forex majors | 0.05 – 0.1 % |
| Crypto (BTC/ETH) | 0.2 – 0.5 % |
| Futures / indices | 0.05 – 0.15 % |
- A higher `Swing Length` (15–20) produces fewer, more confirmed signals. A lower value (5–7) is more reactive but generates more false positives.
- EQH/EQL lines do not extend into the future — they naturally disappear once swept, which is exactly the point of interest.
---
## Conceptual Background
Based on the **ICT (Inner Circle Trader)** and **Smart Money Concepts** framework: large operators need liquidity to fill their positions. Equal highs and equal lows are the zones where retail stop orders accumulate. The institutional player pushes price into those levels, harvests the liquidity, then reverses — that reversal move is the entry opportunity.
This is different from a breakout strategy. A sweep signal is *not* a breakout confirmation — it is a **failed breakout** that indicates smart money is positioned against the breakout direction.
Indicatore

Precision Price Gamma [PGamma]Here's the full updated description with all the fixes — car analogy corrected, image captions added, ready to copy:
Precision Price Gamma (PGamma) is a second-derivative momentum indicator that measures the acceleration of momentum, not momentum itself.
━━━━━━━━━━━━━━━━━━━━━━━━━━
WHY PGAMMA IS DIFFERENT
━━━━━━━━━━━━━━━━━━━━━━━━━━
Most momentum indicators tell you how strong a move is. PGamma tells you whether that strength is increasing or fading — going one step further by measuring whether momentum is strengthening or weakening. This allows PGamma to identify changes in market pressure before many trend-following indicators respond.
━━━━━━━━━━━━━━━━━━━━━━━━━━
THE FOUR STATES
━━━━━━━━━━━━━━━━━━━━━━━━━━
Γ↑ Accelerating — Bullish momentum is positive and still strengthening.
Γ⌃ Bull Weakening — Bullish momentum remains positive, but buying pressure is beginning to fade.
Γ↓ Bear Pressure — Bearish momentum is dominant and selling pressure continues to strengthen.
Γ⌄ Bear Exhaustion — Bearish momentum remains negative, but selling pressure is beginning to weaken.
━━━━━━━━━━━━━━━━━━━━━━━━━━
HOW IT WORKS
━━━━━━━━━━━━━━━━━━━━━━━━━━
PGamma smooths the source series, then computes the slope of that smoothed series — the first derivative, or Momentum. It then smooths Momentum and computes its slope — the second derivative, or Price Gamma. The four states are determined by the sign of both values simultaneously.
Momentum determines the current direction of market pressure. Gamma determines whether that pressure is strengthening or weakening. They often disagree near turning points — and those disagreements are often the most informative signals PGamma produces.
Think of it like driving a car. Momentum is your speed. Gamma is whether you are pressing the gas or the brake. You can be moving backward while pressing the brake — still moving backward, but slowing. That is negative momentum with positive gamma. In market terms, price may still be making lower lows, but each push down is losing force. That often precedes consolidation, a bounce, or a reversal.
Two examples of this disagreement are illustrated in the first two snapshots — a red candle during a green Gamma Timeline, and a green candle during an amber Gamma Timeline. The third snapshot illustrates when Momentum and Gamma align, showing a green candle with a green Gamma Timeline during Accelerating state.
━━━━━━━━━━━━━━━━━━━━━━━━━━
THE STATE MATRIX
━━━━━━━━━━━━━━━━━━━━━━━━━━
Momentum | Gamma | State
+ | + | Accelerating
+ | - | Bull Weakening
- | - | Bear Pressure
- | + | Bear Exhaustion
Momentum and Gamma often disagree near turning points. A positive Gamma reading while Momentum remains negative does not mean the market is bullish — it means bearish momentum is losing acceleration. Those disagreements are where PGamma is most useful.
━━━━━━━━━━━━━━━━━━━━━━━━━━
UNDERSTANDING THE DASHBOARD
━━━━━━━━━━━━━━━━━━━━━━━━━━
State — Combines Momentum and Price Gamma into one of the four market conditions above. Read the State row first.
Momentum — The first derivative of price. Positive = bullish momentum dominates. Negative = bearish momentum dominates.
Gamma — The second derivative of momentum. Above Zero = momentum is accelerating. Below Zero = momentum is decelerating. Gamma often changes direction before Momentum, making it useful for identifying transitions in market pressure.
Bias — A simplified interpretation combining Momentum and Gamma into a single directional context label.
━━━━━━━━━━━━━━━━━━━━━━━━━━
GAMMA TIMELINE
━━━━━━━━━━━━━━━━━━━━━━━━━━
The Gamma Timeline displays the historical sequence of Price Gamma states as a continuous color band along the bottom of the chart. Each colored segment represents one bar, allowing traders to quickly identify transitions between acceleration, weakening, pressure, and exhaustion without obscuring price action. Green for Accelerating, amber for Bull Weakening, red for Bear Pressure, sky blue for Bear Exhaustion. Toggle on or off in Display settings.
━━━━━━━━━━━━━━━━━━━━━━━━━━
GETTING STARTED
━━━━━━━━━━━━━━━━━━━━━━━━━━
1. Add PGamma to any chart. It works on all instruments and timeframes.
2. In Settings → Display, choose your panel position and size.
3. In Settings → Calculation, adjust Momentum Smoothing, Momentum Length, and Gamma Length to suit your timeframe. Default values are calibrated for intraday 1m–60m charts.
4. Read the State row first. Then use Momentum and Gamma to understand why the state is what it is.
5. Use Bias as a quick at-a-glance directional context.
6. Use the Gamma Timeline to read state history across the session at a glance.
━━━━━━━━━━━━━━━━━━━━━━━━━━
HOW TO USE IT
━━━━━━━━━━━━━━━━━━━━━━━━━━
PGamma is not a buy or sell signal. Think of PGamma as a market condition indicator rather than a trade signal. Use it as a confirmation layer alongside your existing methodology. Typical applications:
• Confirming trend continuation when State shows Accelerating.
• Identifying weakening rallies before reversals when State shows Bull Weakening.
• Recognizing building pressure before visible breakdowns when State shows Bear Pressure.
• Spotting exhaustion during extended trends when State shows Bear Exhaustion.
When used alongside a GEX level tool, price approaching a Call Wall with Γ⌃ Bull Weakening is a different setup than price approaching the same level with Γ↑ Accelerating. PGamma makes that distinction visible.
Because PGamma analyzes smoothed momentum rather than candle color, bullish candles can appear during Bear Pressure and bearish candles can appear during Bull Weakening. This reflects underlying momentum conditions rather than individual price bars — and is often an early warning of what is developing beneath the surface.
━━━━━━━━━━━━━━━━━━━━━━━━━━
WORKS WELL ALONGSIDE
━━━━━━━━━━━━━━━━━━━━━━━━━━
PGamma complements indicators that identify where important price levels exist.
• Trend indicators
• Moving averages
• Volume Profile
• VWAP
• Options Gamma Exposure (GEX)
• Support and Resistance
• Market Structure
These tools identify where price may react. PGamma helps evaluate how price is behaving as it approaches those levels.
━━━━━━━━━━━━━━━━━━━━━━━━━━
WHAT THIS TOOL IS NOT
━━━━━━━━━━━━━━━━━━━━━━━━━━
PGamma measures changes in momentum. It does not predict future prices or guarantee reversals. Use it as analytical context alongside your existing trading methodology.
━━━━━━━━━━━━━━━━━━━━━━━━━━
SETTINGS OVERVIEW
━━━━━━━━━━━━━━━━━━━━━━━━━━
Calculation: Source, Momentum Smoothing, Momentum Length, Gamma Length
Display: Show Dashboard, Panel Position (6 locations), Panel Size (Small / Normal / Large), Show Gamma Timeline Indicatore

Multi-Timeframe Trend Table (Weighted)**Multi-Timeframe Trend Table (Weighted) — Market Bias Dashboard**
This indicator is a **multi-timeframe trend analysis system** designed to evaluate overall market direction using a weighted combination of **ATR trend structure, Stochastic RSI momentum, and Moving Averages** across multiple timeframes.
It aggregates data from higher to lower timeframes into a single **bias scoring table**, giving traders a clear, structured view of market sentiment and directional strength.
---
### 🔍 Core Concept
Instead of relying on a single timeframe or indicator, this tool builds a **composite market bias model** by:
* Analysing trend strength across multiple timeframes (Monthly → 1M)
* Applying weighted importance to each timeframe
* Combining three key systems:
* ATR-based trend direction (volatility structure)
* Stochastic RSI momentum shifts
* Moving Average bias filter
---
### 📊 Key Features
• **Multi-Timeframe Structure**
* Monthly, Weekly, Daily, 4H, 1H, 30m, 15m, 1m analysis
* Hierarchical trend evaluation from macro → micro
• **Weighted Bias System**
* Assigns importance to each timeframe (customisable)
* Higher timeframes dominate overall market direction
* Produces a final **bullish / bearish bias score**
• **Triple Indicator Confirmation**
Each timeframe uses:
* ATR trend logic (volatility direction)
* Stochastic RSI (momentum confirmation)
* Moving Average filter (trend bias)
• **No Repainting Logic**
* Uses confirmed higher timeframe closes only
* Prevents false real-time signal shifts
* Ensures stable, reliable bias readings
• **Signal Threshold System**
* Custom X-signal trigger based on bias strength
* Highlights strong directional conviction zones
---
### 📊 How to Use
**Bullish Bias**
* Higher timeframes align bullish
* Weighted score exceeds threshold
→ Market favours long setups
**Bearish Bias**
* Higher timeframes align bearish
* Weighted score exceeds threshold
→ Market favours short setups
**Neutral / Mixed Bias**
* Conflicting multi-timeframe signals
→ Avoid directional trading or wait for alignment
---
### ⚠️ Best Practice
This is a **market context tool**, not a standalone entry system.
For best performance combine with:
* Liquidity zones
* Market structure (BOS / CHoCH)
* Support & resistance levels
* Entry triggers from lower timeframe setups
---
### 🚀 Ideal For
* Swing traders
* Position traders
* Smart money / structure-based trading
* Multi-timeframe confirmation strategies
* Crypto, Forex, indices
---
### 🧠 Trading Philosophy
**Higher timeframes define direction.
Lower timeframes define execution.
This tool bridges both into one bias model.**
---
**Trade with alignment, not randomness.** Indicatore

Indicatore

Indicatore

ORB Expansion Pro (Expansion Ranges and EER)ORB Expansion Pro
Description
ORB Expansion Pro transforms the Opening Range Breakout from a simple breakout strategy into a complete market expansion framework.
Most ORB traders focus only on whether price breaks above or below the opening range. The problem is that a breakout alone provides no context about how far price is likely to travel or whether the move is already extended.
ORB Expansion Pro solves that problem by automatically calculating historical Opening Range statistics and projecting expansion levels based on real market behavior.
The indicator tracks Opening Range size, historical averages, expansion multiples, and expected range development to help traders evaluate opportunity, risk, and remaining session potential.
Key Features
✔ Automatic Opening Range calculations
✔ Historical average ORB analysis
✔ Expansion projections beyond the ORB
✔ Expected Expansion Range (EER) levels
✔ Session development tracking
✔ Objective profit target framework
✔ Visual expansion mapping directly on the chart
✔ Designed for futures, stocks, ETFs, and indexes
How Traders Use It
Identify unusually small or large opening ranges
Measure current expansion versus historical expectations
Set objective targets using expansion multiples
Evaluate whether a move is early, mature, or extended
Improve trade management and profit-taking decisions
Avoid chasing moves that have already exhausted expected range
Best Used With
ORB Dashboard Pro
Volume Profile
VWAP
Auction Market Theory
Market Structure Analysis
Real Trading. Real Testing. Real Results.
** Related Indicators from Traders Workshop
• ORB Expansion Pro
• ORB Dashboard Pro
• ORB Sessions
• Everex Lite
• Flow MA Cloud Indicatore

Flow MA CloudFlow MA Cloud is a clean trend and market flow visualization tool built around the relationship between two fully configurable moving averages.
Unlike traditional moving average crossover indicators that focus solely on entry signals, Flow MA Cloud is designed to help traders quickly identify directional bias, trend strength, and changes in participation through dynamic cloud coloring and optional flow-state confirmation.
Supported moving average types include:
• SMA (Simple Moving Average)
• EMA (Exponential Moving Average)
• WMA (Weighted Moving Average)
• RMA (Running Moving Average)
• VWMA (Volume Weighted Moving Average)
• HMA (Hull Moving Average)
** Suggested Default Setup: 9 EMA / 21 EMA
Both moving averages can be configured independently, allowing traders to create anything from traditional EMA trend clouds to custom flow and trend models.
** Pairs well with ORB Sessions Pro for directional bias and Everex Lite for participation confirmation.
Additional features include:
• Dynamic bullish, bearish, and neutral cloud visualization
• Optional slope-based flow confirmation
• Bullish and bearish crossover markers
• Optional background bias highlighting
• Custom alert conditions for crossover and flow-state changes
• Adjustable colors, line widths, and visual settings
The cloud changes color based on both moving average positioning and directional slope, helping traders distinguish between strong trends, weakening trends, and neutral market conditions.
Flow MA Cloud is designed to be simple, visually clean, and easy to integrate into existing trading workflows for futures, stocks, forex, and cryptocurrency markets.
Real Trading. Real Testing. Real Results.
### Related Indicators
Flow MA Cloud is part of the Traders Workshop indicator suite.
For a complete market workflow, consider pairing it with:
• ORB Sessions Pro — Tracks Pre-Market and NY Open Opening Ranges, session statistics, average range expectations, and expansion levels.
• Everex Lite — A streamlined Effort vs Result indicator designed to visualize participation and directional flow.
Together, these tools help traders answer three critical questions:
1. Where is the market likely to move? (ORB Sessions Pro)
2. What is the current trend direction? (Flow MA Cloud)
3. Is participation supporting the move? (Everex Lite)
Real Trading. Real Testing. Real Results.
Indicatore

Candle Countdown & Position SizerCandle Countdown & Position Sizer
A compact on-chart table that keeps the two things a scalper checks most in one place: time and size.
It shows:
- Live clock with seconds, in the timezone you pick (Exchange, UTC, NY, London, Tokyo, Sydney).
- Countdown to the next 1m, 5m and 15m candle — so you always know how long the current bar has left. Each row turns to your chosen alert color in the final seconds before the candle closes.
- Suggested lot size based on ATR volatility, so your risk stays constant trade to trade.
How the sizing works
Tell it three things:
- how many dollars you're willing to lose on the trade,
- how wide your stop is, as a multiple of ATR (default 2× ATR),
- the ATR length and smoothing (Wilder or exponential — default EMA 100).
It computes the stop distance from current ATR and returns the lot size that caps your loss at that dollar amount if the stop is hit, rounded to a whole number. Flip on the debug toggle to also see the raw ATR and stop
distance behind the calculation.
Notes
- Updates arrive on price ticks, so during very quiet periods the clock may skip a second.
- Lot size uses the symbol's point value — always confirm it against your broker's contract specs before trading.
- Candle countdowns are anchored to UTC and are exact for intraday timeframes on 24h markets.
Not financial advice — a position-sizing aid. You are responsible for your own risk.
Indicatore

Everex Lite (Effort vs Result Participation)Everex Lite is a streamlined Effort vs Result participation indicator inspired by the original RedK Everex concept.
The indicator measures the relationship between market participation (effort) and price movement (result) to help traders visualize how efficiently price is moving through the auction.
Rather than focusing solely on volume or momentum, Everex Lite evaluates whether price progress is being supported by participation. This can help identify conditions such as:
• Strong participation supporting directional movement
• Absorption and stalled auctions
• Weakening momentum
• Thin liquidity moves
• Potential shifts in participation strength
Everex Lite intentionally removes several components from the original implementation to create a cleaner and easier-to-read display. The result is a lightweight tool that focuses on the core Rate of Flow (ROF) model and Signal Line while reducing visual clutter.
Features:
• Simplified Rate of Flow (ROF) calculation
• Optional Line or Histogram display modes
• Configurable Signal Line
• Multiple moving average types (WMA, EMA, SMA, HMA, RMA)
• Optional participation levels
• Clean, lightweight design
This indicator is best used alongside market structure, VWAP, volume profile, support/resistance levels, and Auction Market Theory concepts.
Everex Lite is not designed as a standalone buy or sell signal. Instead, it provides additional context regarding participation and price efficiency to help traders better understand the auction taking place beneath the chart.
Credits:
This indicator is a simplified derivative of the original RedK Everex indicator. Full credit for the original Effort vs Result implementation belongs to RedK.
If you find the indicator useful, please leave a like and share your feedback. Indicatore

Wick Snap Pressure [ZOM]Wick Snap Pressure is an overlay pressure marker designed to highlight meaningful wick rejections only when they are supported by candle pressure, volume impulse, and stress context. The goal is to avoid treating every long wick as a signal. Instead, the script looks for a rejection candle that also has supporting evidence from lesser-used pressure tools.
The calculation combines four parts. First, wick rejection ratio checks whether the upper or lower wick is large enough relative to the candle body and total range to represent a visible rejection. Second, QStick measures smoothed close-minus-open candle pressure, which helps show whether recent candle bodies are leaning bullish or bearish. Third, Elder Force Index measures whether price movement is being supported by volume impulse. Fourth, Ulcer Index stress is used as a context filter so the script can avoid confirming snaps while adverse stress is still expanding.
Bullish watch markers appear when lower-wick rejection and early QStick pressure align before full confirmation. Bullish snap markers require stronger agreement: lower wick rejection, improving bullish QStick behavior, positive Force Index, and non-expanding stress. Bearish watch and bearish snap signals mirror the same logic using upper-wick rejection, negative QStick pressure, negative Force Index, and suitable stress behavior.
The visual layout is intentionally lightweight. It uses subtle bar coloring, small above/below-bar markers, and a compact dashboard instead of projected zones or static drawings. Mint markers represent bullish snap pressure, crimson markers represent bearish snap pressure, and gold watch markers show earlier setups that have not fully confirmed. The dashboard summarizes QStick pressure, Force Index direction, Ulcer stress bias, the most recent snap, and the composite bias.
I use this as a tape-reading and reaction aid around pullbacks, failed pushes, VWAP tests, prior swing levels, and local reversal attempts. It is not a standalone buy/sell system. Strong trend days can produce countertrend wick signals that fail, so the best use is as a confirmation layer alongside market structure, trend, liquidity context, and risk controls.
Key inputs include QStick length, Force Index length, Ulcer Index length, wick/body threshold, signal cooldown, marker offset, dashboard visibility, and palette colors. Lower wick thresholds create more signals. Higher thresholds demand more obvious rejection and reduce signal frequency.
Open-source script for educational use only. Not financial advice. Indicatore

Volatility Rotation Compass [ZOM]Volatility Rotation Compass is a lower-pane regime and momentum-rotation tool built from a combination of Vortex directional spread, Choppiness Index, and normalized volume z-score. The goal is to separate directional expansion from low-quality chop instead of treating every oscillator move through zero as equally useful.
The core calculation starts with the Vortex Indicator. The script compares positive and negative Vortex movement to estimate which side is controlling directional flow. That directional spread is then scaled by a trendiness factor derived from Choppiness Index: lower chop values give more weight to directional movement, while higher chop compresses the compass score. A normalized volume z-score is used as a participation filter so stronger readings are favored when volume is above its recent baseline.
The main compass oscillator is plotted around a zero line. Teal/green histogram pressure represents bullish expansion, rose/crimson pressure represents bearish expansion, and amber/gray behavior represents indecision, chop, or weakening participation. Subtle background shading shows the active regime so the lower pane can be read quickly without turning the chart into clutter.
Bull rotation markers appear when the compass pushes above the bullish threshold while chop falls and volume confirms participation. Bear rotation markers appear when the compass pushes below the bearish threshold under similar trend and participation conditions. Exhaustion dots identify stretched readings where the compass is extended but chop begins to rise, which can warn that momentum is becoming less efficient.
I use this as a regime filter and timing aid, not as a standalone entry system. A bullish rotation is more useful when it aligns with higher-timeframe structure, a reclaim, or clean continuation candles. A bearish rotation is stronger when price is failing below structure, rejecting supply, or continuing after a breakdown. Exhaustion dots are not automatic reversal calls; they are warnings to reduce confidence in chasing late movement.
Key inputs include Vortex length, Choppiness length, volume z-score length, smoothing, signal visibility, exhaustion dot visibility, dashboard position, and palette colors. Shorter lengths make the compass faster but noisier. Longer lengths make it slower but more stable. The dashboard summarizes regime, direction, volume z-score, chop reading, trend score, and compass value so traders can see why the current state is being plotted.
This script intentionally uses standard plots, histograms, background color, markers, and tables instead of static projected drawings. That keeps the visuals anchored to the chart across scrolling and timeframe changes.
Open-source script for educational use only. Not financial advice. Indicatore

Indicatore

ALMA Slope, ADX & Cross System Strategy Description : OverviewThe Advanced ALMA Slope, ADX & Cross System v7.6 is a high-performance, modular trend-following strategy built on Pine Script v6. Designed for algorithmic traders, this system leverages the mathematical precision of the Arnaud Legoux Moving Average (ALMA) to eliminate the lag inherent in traditional moving averages while maintaining superior smoothing capability.What sets this system apart is its Dynamic Volatility Adaptability and Bar-Confirmed Re-entry Engine, creating a highly flexible architecture capable of navigating volatile crypto assets, forex, or equities with minimal whipsaws.Key Features & Architecture1. Low-Lag ALMA Core with Slope AccelerationInstead of relying on simple price crosses, the primary engine tracks the directional derivative (Slope) of the ALMA.Slope Entry Mode: Filters out flat market micro-movements by entering precisely when the slope crosses the zero threshold.Acceleration Filter: Requires the momentum of the slope to build over a user-defined number of bars before validating a setup, preventing premature entries during false breakouts.2. Multilayered Trend Validation (ADX & DMI)To ensure trades are only executed during high-probability macro trends, the strategy integrates an ADX filter. It verifies not only whether trend strength is above a structural threshold (e.g., 20) but optionally guarantees that trend intensity is accelerating ($ADX_t > ADX_{t-1}$).3. Smart (Dynamic) Volatility-Adjusted Trailing StopStandard percentage-based trailing stops fail when market regimes shift from low-volatility accumulation to high-volatility expansion. This version implements an innovative ATR-to-SMA ratio multiplier:$$\text{Volatility Multiplier} = \frac{\text{Current ATR}}{\text{Historical ATR SMA}}$ OTC:WHEN the market becomes highly volatile, the system automatically expands the Trailing Start and Follow distances to give the asset "room to breathe" and avoid premature stop-outs.When the market calms down, the brackets contract to lock in profits early.4. Bar-Confirmed Mid-Trend Re-entry EngineMissed the initial breakout? The strategy features a sophisticated re-entry mechanism that tracks the last closed position's state. If a strong trend resumes after an early exit, it checks a dedicated cooldown timer and compares the current slope acceleration against the exit momentum, allowing safe mid-trend re-routing without chasing spikes.5. Flexible Execution and Risk ManagementDual Entry/Exit Protocols: Toggle between Slope Tracking and Price/ALMA or Price/VWMA crosses dynamically.Intrabar Reflexive Guard Rails: While strategy entries/exits are bar-confirmed to prevent repaint and slippage, the Stop Loss (SL), Take Profit (TP), and Trailing Stops run on real-time intrabar ticks for absolute capital protection.Settings & Optimization GuideTrending Markets (Crypto/Growth Stocks): Keep Adapt Percent TS with ATR active to ride massive extensions while protecting your downside during unexpected flash crashes.Mean-Reverting Markets (Forex/Indices): Consider turning on Exit on Slope Deceleration with a 3-bar lookback to catch micro-reversals before they eat into realized gains.Disclaimer: Past performance does not guarantee future results. This script is highly parameter-driven; users are strongly encouraged to utilize TradingView's Strategy Tester to optimize the ALMA period, ADX thresholds, and risk brackets for their specific asset class and timeframes before committing live capital. Strategia

Squeeze Momentum Pro - TTM Squeeze, Volatility Breakout & MomentSqueeze Momentum Pro - TTM Squeeze, Volatility Breakout & Moment is a modern volatility squeeze and momentum indicator for TradingView that shows you exactly when the market is coiling (building energy) and the precise moment that energy fires into a trend. It combines the classic TTM Squeeze concept — Bollinger Bands contracting inside the Keltner Channel — with a multi-tier compression engine (Squeeze Pro) and a glowing momentum histogram, so you can trade breakouts, momentum, trend continuation and volatility expansion on any market and any timeframe: forex, crypto, stocks, indices, futures, gold (XAUUSD), Bitcoin (BTCUSD), NASDAQ, S&P 500, oil and more. Built in Pine Script v6, it adds neon momentum candles, rare high-conviction squeeze fire signals and a live dashboard — a clean, professional upgrade over a plain squeeze momentum oscillator. Keywords: squeeze momentum, squeeze pro, TTM squeeze, volatility squeeze, momentum indicator, Bollinger Bands, Keltner Channel, breakout indicator, volatility breakout, momentum oscillator, trend, buy sell signals, scalping, day trading, swing trading, no repaint.
◆ WHY THE SQUEEZE WORKS
When Bollinger Bands contract inside the Keltner Channel, volatility is compressing — the market is coiling like a spring. Low volatility is always followed by high volatility. The squeeze tells you a big move is building; the momentum histogram tells you which direction it is most likely to release. Trading the release of a squeeze is one of the highest-reward, lowest-risk setups in technical analysis.
◆ WHAT IT DOES
3 compression tiers (Squeeze Pro): HIGH (BB inside KC x1.0, tightest coil), MID (x1.5), LOW (x2.0), and EXPANSION (bands released). Tier is shown by colour-coded dots on the zero line.
Neon momentum histogram: linear-regression momentum that glows brighter as it extends and dims as it fades — instant read of strength and direction.
Squeeze Fire signals: rare, high-conviction arrows that fire only when a real coil (HIGH/MID) releases — filtered to remove noisy weak releases.
Neon momentum candles: your chart candles are tinted by momentum (turquoise up / magenta down).
Live dashboard: State, a unique Coil Energy gauge (stored energy of the coil), Momentum strength, Signal and Bias.
◆ HOW IT WORKS (under the hood)
Bollinger Bands (length/multiplier) measure compression; Keltner Channel (ATR-based) is the volatility reference. A squeeze is active when both BB edges sit inside the KC edges.
Three KC multipliers create three compression tiers so you can tell a mild coil from a maximum-tension coil.
Momentum is a linear regression of price versus the average of the Donchian midline and the moving average (LazyBear method).
The script tracks the tightest tier reached during each coil; a fire is only flagged when the coil reaches your chosen tier and then releases — so arrows mean something.
Coil Energy accumulates from how long and how tightly price has been compressed, and discharges on release — a unique read of stored breakout potential.
◆ HOW TO USE IT
Wait for a squeeze (especially a HIGH tier — tightest spring). The dashboard shows State and rising Coil Energy.
On the Squeeze Fire arrow, enter in the direction of the histogram colour (teal = long, magenta = short).
Stay in while momentum keeps extending (bars growing, bright colour); exit as momentum fades (bars shrinking, dim colour) or flips across the zero line.
Use Fire on release from to control signal frequency: HIGH only (rare, strongest) → MID+ → Any (more signals).
Works on all symbols and timeframes; combine with your own support/resistance, structure or trend tools for confluence.
◆ SETTINGS
Squeeze Engine: BB length & multiplier, KC length, KC multipliers for HIGH/MID/LOW tiers.
Momentum: linear-regression length.
Fire Signals: release tier threshold (HIGH only / MID+ / Any).
Histogram / Candles: glow, tint chart candles by momentum, optional squeeze-zone shading, fire markers.
Panel: show/hide, position, background, accent colour.
◆ ALERTS
Squeeze Fire Long / Short
High Squeeze started (maximum compression)
Momentum crossed zero
◆ LIMITATIONS
This is a momentum/volatility tool, not a complete system — always confirm with price action and risk management.
On forex and crypto, volatility (ATR) and momentum reflect the data feed of your broker/exchange; results can vary slightly between feeds.
A squeeze signals that a move is building, not its direction with certainty — the momentum colour gives the probable bias, not a guarantee.
With "HIGH only" some calm instruments may rarely reach the tightest tier; loosen the KC HIGH multiplier or switch to "MID+" if you want more signals.
◆ NON-REPAINTING
Every value comes from confirmed bar data with no lookahead and no security() smoothing tricks. A signal printed on a closed bar stays. As with any live tool, the current forming bar updates in real time and settles on close.
Squeeze Momentum Pro - TTM Squeeze, Volatility Breakout & Moment is an educational analysis tool, not financial advice. Always do your own research and manage risk. © LunqFX. Indicatore

Indicatore
