ABS NR — Fail-Safe Confirm (v4.2.2)
# ABS NR — Fail-Safe Confirm (v4.2.2)
## What it is (quick take)
**ABS NR FS** is a **non-repainting “arm → confirm” entry framework** for intraday and swing execution. It blends:
* **Regime** (EMA stack + 60-min slope),
* **Location** (Keltner basis/edges),
* **Stretch** (session-anchored **VWAP Z-score**),
* **Momentum gating** (TSI cross/slope),
* **Guards** (session window, minimum ATR%, gap filter, optional market alignment).
You’ll see a **small dot** when a setup is **armed** (candidate) and a **triangle** when that setup **confirms** within a user-defined number of bars. A **gray “X”** marks a timeout (candidate canceled).
> Tip: This entry tool works best when paired with a trend context filter and a dedicated exit tool.
---
## How to use it (operational workflow)
1. **Read the regime**
* **Bull trend**: fast > slow > long EMA **and** 60-min slope up.
* **Bear trend**: fast < slow < long EMA **and** 60-min slope down.
* **Range**: neither bull nor bear.
2. **Wait for a candidate (dot)**
Two families:
* **Reclaim (trend-following):** price crosses the **KC basis** with acceptable |Z| (not overstretched) and passes the TSI gate.
* **Fade (range-revert):** price **pokes a KC band**, prints a **reversal wick**, |Z| is stretched, and TSI gate agrees.
3. **Trade the confirmation (triangle)**
The confirm must occur **within N bars** and follow your chosen **Confirm mode** logic (see Inputs). If confirmation doesn’t arrive in time, an **X** cancels the candidate.
4. **Use guards to avoid junk**
Session windows (US focus), minimum ATR%, gap guard, and optional **market alignment** (e.g., SPY above EMA20 for longs).
5. **Manage the position**
* Entries: take **triangles** in the direction of your playbook (reclaims with trend; fades in clean ranges).
* Filters and exits: use your own process or pair with a trend/exit companion.
---
## Visual semantics & alerts
* **Candidate L / S (dot)** → a setup armed on this bar.
* **CONFIRM L / S (triangle)** → actionable signal that met confirm rules within your time window.
* **Cancel L / S (X)** → candidate expired without confirmation; ignore the dot.
**Alerts (stable names for automation):**
* **ABS FS — Confirmed** → fires on confirmed long or short.
* **ABS FS — Candidate Armed** → fires as a candidate arms.
---
## Non-repainting behavior (why signals don’t repaint)
* All HTF requests use **lookahead\_off**.
* With **Strict NR = true**, the 60-min slope uses the **prior completed** 60-min bar and arming/confirming only occurs on confirmed bars.
* Confirmation triangles finalize on bar close.
* If you disable strictness, signals may appear slightly earlier but with more intrabar sensitivity.
---
## Inputs reference (what each control does and the trade-offs)
### A) Behavior / Modes
**Mode** (`Turbo / Aggressive / Balanced / Conservative`)
Changes multiple internal thresholds:
* **Turbo** → most signals; relaxes prior-bar break & VWAP-side checks and time/vol/gap guards. Highest frequency, highest noise.
* **Aggressive** → more signals than Balanced, fewer than Turbo.
* **Balanced** → default; steady trade-off of frequency vs. quality.
* **Conservative** → tightens |Z| and other checks; fewest but cleanest signals.
**Strict NR (bar close + prior HTF 60m)**
* **true** = safer: uses prior 60-min slope; arms/confirms on confirmed bars → **fewer/cleaner** signals.
* **false** = earlier and more reactive; slightly noisier.
---
### B) Keltner Channel (location engine)
* **KC EMA Length (`kcLen`)**
Higher → smoother basis (fewer basis crosses). Lower → snappier basis (more crosses).
* **ATR Length (`atrLen`)**
Higher → steadier band width; Lower → more reactive band width.
* **KC ATR Mult (`kcMult`)**
Higher → wider bands (fewer edge pokes → fewer fades). Lower → narrower (more fades).
---
### C) Trend & HTF slope
* **Trend EMA Fast/Slow/Long (`emaFastLen / emaSlowLen / emaLongLen`)**
Larger = slower regime flips (fewer reclaims); smaller = faster flips (more reclaims).
* **HTF EMA Len (60m) (`htfLen`)**
Larger = steadier HTF slope (fewer signals); smaller = more sensitive (more signals).
---
### D) VWAP Z-Score (stretch / mean-revert logic)
* **VWAP Z-Length (`zLen`)**
Window for Z over session-anchored VWAP distance. Larger = smoother |Z| (fewer fades/re-entries). Smaller = more reactive (more).
* **Range Fade |Z| (base) (`zFadeBase`)**
Minimum |Z| to allow **fades** in ranges. Raise to demand more stretch (fewer fades). Lower to take more fades.
* **Max |Z| Trend Re-entry (base) (`maxZTrendBase`)**
Caps how stretched price can be and still permit **reclaims** with trend. Lower = stricter (avoid chases). Higher = will chase further.
---
### E) TSI Momentum Gate
* **TSI Long/Short/Signal (`tsiLong / tsiShort / tsiSig`)**
Larger = smoother/laggier momentum; smaller = snappier.
* **TSI gate (`CrossOnly / CrossOrSlope / Off`)**
* **CrossOnly**: require TSI cross of its signal (strict).
* **CrossOrSlope**: cross *or* favorable slope (balanced default).
* **Off**: no momentum gate (most signals, most noise).
---
### F) Guards (filters to avoid low-quality tape)
* **US focus 09:35–10:30 & 14:00–15:45 (base) (`useTimeBase`)**
`true` limits to high-quality windows. `false` trades all session.
* **Skip N bars after 09:30 ET (`skipFirst`)**
Skips the open scramble. Larger = skip longer.
* **Min volatility ATR% (base)** = `useVolMinBase` + `atrPctMinBase`
Requires `ATR(10)/Close*100 ≥ atrPctMinBase`. Raise threshold to avoid dead tape; lower to accept quieter sessions.
* **Gap guard (base)** = `gapGuardBase` + `gapMul`
Blocks signals when the opening gap exceeds `gapMul * ATR`. Increase `gapMul` to allow more gapped opens; decrease to be stricter.
---
### G) Visuals & Sides
* **Plot Keltner (`plotKC`)** → show/hide basis & bands.
* **Show Longs / Show Shorts** → enable/disable each side.
---
### H) Fail-Safe Confirmation
* **Confirm mode (`BreakHighOnly / BreakHigh+Hold / TwoBarImpulse`)**
* **BreakHighOnly**: confirm by taking out the armed bar’s extreme. Fastest, most frequent.
* **BreakHigh+Hold**: must **break**, have **body ≥ X·ATR**, **and** hold above/below the basis → higher quality, fewer signals.
* **TwoBarImpulse**: decisive follow-through vs. prior bar with **body ≥ X·ATR** → momentum-biased confirmations.
* **Confirm within N bars (`confirmBars`)**
Confirmation window size. Smaller = faster validation; larger = more patience (can be later).
* **Impulse body ≥ X·ATR (`impulseBodyATR`)**
Raise for stronger confirmations (fewer weak triangles). Lower to accept lighter pushes.
* **Require market alignment (`needMarket`) + `marketTicker`**
When enabled: Longs require **market > EMA20 (5m)**; Shorts require **market < EMA20 (5m)**.
* **Diagnostics: Show debug letters (`debug`)**
Tiny “B/C” audit marks for base/confirm while tuning.
---
## Tuning recipes (quick, practical)
* **If you’re getting chopped:**
* Set **Mode = Conservative**
* **Confirm mode = BreakHigh+Hold**
* Raise **impulseBodyATR** (e.g., 0.45)
* Keep **needMarket = true**
* Keep **Strict NR = true**
* **If you need more signals:**
* **Mode = Aggressive** (or Turbo if you accept more noise)
* **Confirm mode = BreakHighOnly**
* Lower **impulseBodyATR** (0.25–0.30)
* Increase **confirmBars** to 3
* **Range-day focus (fades):**
* Keep session guard on
* Raise **zFadeBase** to demand real stretch
* Keep **maxZTrendBase** moderate (don’t chase)
* **Trend-day focus (reclaims):**
* Slightly **lower `maxZTrendBase`** (avoid chasing excessive stretch)
* Use **CrossOrSlope** TSI gating
* Consider turning **needMarket** on
---
## Best practices & notes
* **Instrument specificity:** Tune Z, TSI, and guards per symbol and timeframe.
* **Session awareness:** Session filter uses **exchange-local** time; adjust for non-US markets.
* **Automation:** Use the two provided alert names; they’re stable.
* **Risk management:** Confirmation improves quality but doesn’t remove risk. Always pre-define stop/size logic.
---
## Suggested starting point (balanced profile)
* **Mode = balanced**
* **Strict NR = true**
* **Confirm mode = BreakHigh+Hold**
* **confirmBars = 2**
* **impulseBodyATR ≈ 0.35**
* **needMarket = off** (turn on for extra confluence)
* Leave Keltner/TSI defaults; then nudge `zFadeBase` and `maxZTrendBase` to match your symbol.
---
*This tool is a signal generator, not a broker or strategy. Validate on your markets/timeframes and integrate with your risk plan.*
Volume
VWAP Multi-TimeframeThis is a multi-timeframe VWAP indicator that provides volume weighted average price calculations for the following time periods:
15min
30min
1H
2H
4H
6H
8H
12H
1D
1W
1M
3M
6M
1Y
You can use the lower timeframes for short term trend control areas and use the longer timeframes for long term trend control areas. Trade in the direction of the trend and watch for price reactions that you can trade when price gets close to or touches any of these levels.
This indicator will provide a data plot value of 1 for bullish when price is above all VWAPs that are turned on, -1 for bearish when price is below all VWAPs that are turned on and 0 for neutral when price is not above or below all VWAPs. Use this 1, -1, 0 value as a filter on your signal generating indicators so that you can prevent signals from coming in unless they are in the same direction as the VWAP trend.
Features
Trend direction value of 1, -1 or 0 to send to external indicators so you can filter your signal generating indicators using the VWAP trend.
Trend table that shows you whether price is above or below all of the major VWAPs. This includes the daily, weekly, monthly and yearly VWAPs.
Trend coloring between each VWAP and the close price of each candle so you can easily identify the trend direction.
Customization
Set the source value to use for all of the VWAP calculations. The default is HLC3.
Turn on or off each VWAP.
Change the color of each VWAP line.
Change the thickness of each VWAP line.
Turn on or off labels for each VWAP or turn all labels on or off at once.
Change the offset length from the current bar to the label text.
Change the label text color.
Turn on or off trend coloring for each VWAP.
Change the color for up trends and down trends.
Turn on or off the trend direction display table.
Change the location of the trend direction display table.
Adjust the background and text colors on the trend direction display table.
How To Use The Trend Direction Filtering Feature
The indicator will provide a data plot value of 1 for bullish when price is above all of the VWAPs that are turned on, a value of -1 for bearish when price is below all of the VWAPS that are turned on and a value of 0 for neutral when price is above and below some of the VWAPs that are turned on.
The name of the value to use with your external indicators will show up as: VWAP Multi-Timeframe: Trend Direction To Send To External Indicators
Make sure to use that as your source on your external indicators to get the correct values.
This 1, -1 or 0 value can then be used by another external indicator to tell the indicator what is allowed to do. For instance if you have another indicator that provides buy and sell signals, you can use this trend direction value to prevent your other indicator from giving a sell signal when the VWAP trend is bullish or prevent your other indicator from giving a buy signal when the VWAP trend is bearish.
You will need to program your other indicators to use this trend filtering feature, but this indicator is already set up with this filtering code so you can use it with any other indicator that you choose to filter(if you know how to customize pine script).
Markets You Can Use This Indicator On
This indicator uses volume and price to calculate values, so it will work on any chart that provides volume and price data.
Swing Point Volume Z-ScoreSWING POINT VOLUME Z-SCORE INDICATOR
A volume analysis tool that identifies statistical volume spikes at swing points with optional higher timeframe confirmation.
This indicator uses Leviathan's method of swing detection. All credit to him for his amazing work (and any mistakes mine). I was also inspired by Trading Riot, who's Capitulation indicator gave me the idea to create this one.
WHAT IT DOES
This indicator combines three analytical approaches:
- Volume Z-score calculation to measure volume significance statistically
- Automatic swing point detection (higher highs, lower lows, etc.)
- Optional higher timeframe volume confirmation
The Z-score measures how many standard deviations current volume is from the average, helping identify when volume activity is genuinely elevated rather than relying on visual assessment.
VISUAL SYSTEM
The indicator uses a color-coded approach for quick assessment:
GREEN - Normal Activity (Z-Score 1.0-2.0)
Above-average volume levels
ORANGE - Elevated Activity (Z-Score 2.0-3.0)
High volume activity that may indicate increased interest
RED - Potential Institutional Activity (Z-Score 3.0+)
Very high volume levels that could suggest significant market participation
HIGHER TIMEFRAME CONFIRMATION
When enabled, the indicator checks volume on a higher timeframe:
- Checkmark symbol indicates HTF volume also shows elevation
- X symbol indicates HTF volume doesn't confirm
- Auto-selects appropriate higher timeframe or allows manual selection
KEY FEATURES
Statistical Approach: Uses Z-score methodology rather than arbitrary volume thresholds
Adaptive Thresholds: Can adjust based on market volatility conditions
Swing Focus: Concentrates analysis on structurally important price levels
Volume Trends: Shows whether volume is accelerating or decelerating
Success Tracking: Monitors how often HTF confirmation proves effective
DISPLAY OPTIONS
Basic Mode: Essential features with clean interface
Advanced Mode: Additional customization and analytics
Label Sizing: Four size options to fit different screen setups
Table Position: Moveable info table with transparency control
Custom Colors: Adjustable for different chart themes
PRACTICAL APPLICATIONS
May help identify:
- Volume spikes at support/resistance levels
- Potential accumulation or distribution zones
- Breakout confirmation with volume backing
- Areas where larger market participants might be active
Works on all liquid markets and timeframes, though generally more effective on 15-minute charts and higher.
USAGE NOTES
This is an analytical tool that highlights statistically significant volume events. It should be used as part of a broader analysis approach rather than as a standalone trading system.
The indicator works best when combined with:
- Price action analysis
- Support and resistance identification
- Trend analysis
- Proper risk management
Default settings are designed to work well across most instruments, but users can adjust parameters based on their specific needs and trading style.
TECHNICAL DETAILS
Built with Pine Script v5
Compatible with all TradingView subscription levels
Open source code available for review and learning
Works on stocks, forex, crypto, futures, and other liquid instruments
The statistical approach helps remove some subjectivity from volume analysis, though like all technical indicators, it should be used thoughtfully as part of a complete trading plan.
ATAI Triangles — Volume-Based & Price Pattern Analysis (v1.01)ATAI Triangles — Volume-Based & Price Pattern Analysis (v1.01)
Overview
ATAI Triangles identifies two synchronized triangle structures — Hi-Lo-Hi (HLH) and Lo-Hi-Lo (LHL) — and analyzes them both geometrically and volumetrically. For each triangle, volume is split between its two legs (segments), providing interpretable insights into buyer vs seller activity along each path.
The idea is that certain geometric shapes, when paired with volume distribution on each leg, can reveal patterns worth exploring. Users are encouraged to share their observations and interpretations in the TradingView comments section so that more aspects of these triangle combinations can be discovered collectively.
Extra (for fun)
For a bit of entertainment, we’ve included a symbolic “hexagram” glyph that appears when both triangle types align in a particular way — it’s just a visual nod to geometry and has no predictive or trading value.
Interface & data clarity
- Inputs and parameters are organized by function (pattern geometry, volume analysis, visuals, HUD, labels).
- Each input includes tooltips explaining its purpose, units, and possible effects on calculations.
- All on-chart objects (polylines, labels, connectors) are named and colored to reflect their role, with volume values formatted in engineering notation (K, M, B).
- HUD columns and label texts use concise terms and consistent units, so that every displayed value is directly traceable to a calculation in the code.
- Daily and lower-timeframe volume series are clearly separated, with update logic documented to indicate intrabar provisional values vs finalized bar-close values.
Usage notes
Designed to be used alongside other indicators and chart tools for context; it is not a standalone signal generator.
All Buy/Sell volumes are absolute (non-negative); Δ = Buy − Sell.
Intrabar values update live and finalize at bar close (no repaint after close).
Disclaimer
For research, discussion, and educational purposes only. This is not financial advice and does not guarantee any outcome. Trade at your own risk.
دمج عدة اطر زمنيهمؤشر فني مخصص يعتمد على دمج إشارات متعددة الفريمات مع فلترة متقدمة للاتجاه والسيولة، ويعرض تنبيهات دخول وخروج محسوبة بعناية.
أظهرت التجارب أن الإشارات تكون أكثر دقة عند توافق قراءة فريم 30 دقيقة مع فريم الساعة، مما يعزز فرص اتخاذ قرارات تداول ناجحة
A custom technical indicator that combines multi–timeframe signals with advanced trend and liquidity filtering to generate precise entry and exit alerts.
Backtesting and observation show that signals are significantly more accurate when the 30-minute and 1-hour timeframes align, enhancing the probability of successful trades.
Daily 6 AM & 8 AM CST Linesit help so you can figure out 6am and 8am on cst time in americas very fast.
HIGH VOLUME BY EAGLE EYESHIGH VOLUME BY EAGLE EYES is a smart price–volume analysis tool that helps traders identify high-probability breakout zones based on consolidation, breakout direction, and volume strength.
Key Features:
Order Block Detection: Finds bullish and bearish order blocks after periods of consolidation.
Volume Analysis: Supports three calculation methods — Simple, Relative (to average volume), and Weighted — to gauge volume strength.
Breakout Filtering: Confirms breakouts only when accompanied by above-threshold volume.
Visual Markers: Plots color-coded boxes on the chart showing the breakout zone with live volume multipliers.
Customizable Settings: Adjustable lookback periods, breakout threshold, maximum number of displayed blocks, and volume sensitivity.
Usage:
Apply to your chart with your desired timeframe.
Watch for green boxes (bullish breakouts) and red boxes (bearish breakouts).
Boxes are removed if price mitigates them (invalidated by opposite movement).
Works on all instruments and timeframes, especially effective in volatile markets for breakout traders.
MDX:Time the selling:VSMarketTrendThe MDX: Time the Sell indicator is designed to identify high-probability profit-booking points and potential trend shift zones by combining price deviation analysis with multi-layered market context filters.
It builds upon the Mean Deviation Index (MDX) concept — measuring how far price has moved away from its mean — but enhances it with dynamic EMA structures, volatility normalization, and momentum overlays.
Data Sources
Price & Volume Data: Direct from TradingView’s built-in real-time feed.
ATR & Volatility Metrics: Based on TradingView’s ATR and standard deviation functions.
EMA Structures: Multiple EMAs for both long-term and short-term market bias tracking.
VWAP: Used for intraday institutional bias measurement.
RSI: Period-specific overbought/oversold detection.
Custom MDX Calculation: Uses an ATR-filtered EMA process to normalize price deviations across different market conditions.
Calculation Approach (High-Level)
While the exact logic is internal, here’s the conceptual flow:
Baseline Mean → Built using an ATR-adjusted EMA to represent a smoothed market mean that adapts to volatility.
Deviation Measurement → Compares current price against the mean, adjusted for ATR to avoid noise.
Trend Context Filters → Multiple EMA layers (short, medium, long) combined with MACD, RSI, and VWAP context.
Signal Structuring →
Red Top Line → Long-term EMA of MDX, representing strong deviation extremes.
Dotted Lower Line → Short-term EMA of MDX, used for quicker turn detection.
Grey MDX Line → Base deviation measurement, showing live market stretch from mean.
How to Use This Indicator
Best Use Case: Timing Profit Booking
Primary Sell Alert → When the MDX line touches the red top line, it indicates a significant overextension from the mean, often preceding a correction. This is where profit booking is most effective.
Sell Confirmation → Red or orange vertical lines mark complete exit zones based on multi-condition trend weakening.
High-Risk Overbought Zone → Blue vertical lines appear when RSI > 80, warning of potential pullbacks even if trend remains intact.
Buy Zone Detection
Green Vertical Line → Suggests a possible re-entry or add-on point, where deviation and momentum align for potential upward continuation.
Visual Guide
Grey Line → Live MDX reading.
Dotted Line (Lower) → Short-term MDX EMA.
Red Line (Upper) → Long-term MDX EMA.
Vertical Green → Possible buy/add zone.
Vertical Red/Orange → Full sell/offload signal.
Blue Vertical → RSI-based overbought warning.
another example
Trading Tips
Use with Trend Context → Best results when aligned with higher timeframe trend direction.
Pair with Volume Analysis → Large deviation + volume spike often signals strong reversal probability.
Avoid Overtrading → Wait for the MDX to reach extreme red-line contact before aggressive selling.
Multi-Timeframe Check → Confirm signals on both your trading and one higher timeframe for higher accuracy.
VIV 1.0 // AN IDEA BY Sunil SethiVIV (Very Important Volume) is a custom-built TradingView indicator designed to decode the psychology behind price and volume behavior — whether you are a breakout trader, reversal trader, or use your own discretionary logic. VIV reveals where institutional activity is likely taking place, highlights trend stages, uncovers volume footprints, and identifies high-probability trading zones — all with zero lag & 100% price-action-based logic.
Key Features (Expanded Concepts)
01. Trend-Based Analysis with Stages and Background Colors
VIV breaks down the market into three color-coded stages based on trend confirmation:
Stage 3: Uptrend (Short-Term Trend Confirmation)
Marks early accumulation or consolidation.
Shows possible reversal zones.
Short-term traders use this to spot opportunities before a breakout.
Stage 2: Uptrend (Medium-Term Trend Confirmation)
Highlights the start of a strong directional move.
Confidence zone for position building and breakout-following strategies.
Stage 1: Uptrend (Long-Term Trend Confirmation)
Indicates long term strength.
These trend stages reflect the emotional phases of market participants and the shifting balance of power between buyers and sellers. You can toggle trend backgrounds for intraday, daily, weekly, and monthly trends and change their background colors.
Note : If the % difference in Stage 3 exceeds 10%, the stock is considered extended. Such setups should be evaluated with caution before making any trade decisions.
02. . Volume Footprints (➕ Signs)
VIV intelligently identifies past candles with high-volume activity (accumulation/distribution).
These are not typical breakout volumes, but subtle footprints of smart money.
Help spot reversal points, liquidity zones, and retest levels.
Valuable for both breakout and reversal traders to confirm zone strength.
You can enable or disable these lines, adjust color, style, and width via VIV Line Settings.
03. VIV || H, VIV || L and VIV || C Zones
Automatically plots horizontal levels from high-volume, high-activity candles—revealing the footprints of smart money.
VIV || H (High) = Top of important bar.
VIV || L (Low) = Bottom of important bar.
VIV || C (Close) = Close price of important bar.
Key levels used by traders for:
Entries
Stop-loss placement
Targets
These zones show where price historically reacted due to strong institutional presence. They come with customizable label colors and backgrounds.
04. Price Tightness Detection
Detects when two or more candles compress within the range of a larger parent candle.
Represents indecision, contraction, or coiling behavior before major price moves.
Ideal for both:
Breakout traders looking for base formations.
Reversal traders watching for exhaustion.
Color-coded markers indicate such tight price zones — disabled by default but can be enabled.
05. Technical Stats Panel (Important Data Table)
An insightful dashboard providing:
ADR% – Volatility-based movement expectations (change period via input).
ATR – Real volatility indicator.
Average Volume / Price Volume – Customizable average period and currency unit (INR/USD).
Trend Data:
10/20/200 SMAs
10-week & 20-week trend stages (custom SMA period/timeframe supported)
Relative Strength vs Benchmark
RS grade: GREAT, GOOD, FAIR, UNCERTAIN, UNDER PERFORMER, LAGGARD, POOR
When RS is comparing: BOTH STRONG, BOTH WEEK
You can also display the benchmark symbol name and change the symbol for relative strength comparison.
06. Relative Strength Grade Change Alerts
VIV tracks relative strength changes against a chosen benchmark (e.g., Nifty MidSmallCap).
The above tells us that if the stock is stronger or weaker than the benchmark.
Detects when relative strength shifts from:
Strong → Weak (e.g., EXCELLENT → GOOD → FAIR)
Weak → Strong (e.g., LAGGARD → POOR → FAIR → GOOD)
Sudden transitions (e.g., WORST → FAIR, BOTH WEAK → GOOD, BOTH GOOD → POOR)
BOTH WEAK → GOOD or BOTH GOOD → POOR means stock's strength is better/poor than the benchmark
and more.
These alerts can help in:
Early trend following
Exiting when RS degrades
Adding positions when RS improves
07. Smart Alerts (Built-in Conditions)
You can set alerts for (any timeframe)
Positive Trend
Negative Trend
Rise in Volume
Relative Strength Changed
Set your preferred interval and trigger type in TradingView to stay updated without chart-watching.
08. Pivot Points
VIV allows visualizing pivot highs and lows using a dynamic window (left/right lookback).
Customizable label text and background color.
Helpful in identifying support or resistance zones and breakout points.
09. Customization Options
Toggle modules like trend background, labels, stats, and volume zones.
Customize colors for:
Labels
Zones
Trend backgrounds
Table text, borders, and alignment
Adjust visibility per timeframe (inputs tab)
How to Use VIV Effectively
Use trend background colors to identify phase (base, uptrend, top).
Look for stage 1, stage 2 and stage 3 for short, medium and long term trend.
Watch for old high-volume candles (➕ marks) to plan entries/exits.
Trade around ➕ marks, VIV || H and VIV || L levels.
Use tight price zones to anticipate explosive moves.
Monitor table for ATR/ADR, RS grade, and moving averages.
Use alerts to automate monitoring of trend, volume, or RS shifts.
Best Suited For:
Reversal traders (demand/supply based)
Breakout traders using base-building logic
Systematic or discretionary traders
Anyone who values price-volume behavior over lagging indicators
AVWAP from day's highThis indicator will automatically plot AVWAP from day's high candle.
formual will be HL/2 and H
Trend+Volume Confluence IndicatorScalper and swing trading signals: use the 15–30 minute charts for scalps and the 4–8 hour charts for swings. Add the Money Flow Index (MFI) for extra confluence. In an uptrend, if the MFI is at or above the halfway mark and rising, take the long. In a downtrend, if the MFI is at or below the halfway mark and falling, take the short.
Multiple Timeframe Rolling VWAPsThis indicator plots up to five customizable time-based Rolling Volume-Weighted Average Price (RVWAP) lines.
Each VWAP can be enabled or disabled and configured with a user-defined time period (days, hours, minutes) and minimum bars. It supports multi-timeframe analysis, allowing users to toggle between the current chart resolution and a custom timeframe (e.g., daily, weekly).
Ideal for traders analyzing volume-weighted price trends across multiple periods. Features include five independent VWAP lines with distinct colors, flexible time periods, and robust calculations. Ensure your chart has volume data for accurate results.
MBDOM _ Smart Volume Dominance!!!!! MBDOM_Smart Volume Dominance Indicator !!!!!!
"MBDOM_Smart Volume Dominance", which helps identify buying or selling pressure based on volume and price action.
Key Features:
1. Volume Filtering:
o Only considers candles where volume is above a minimum threshold (relative to a 20-period SMA).
o Helps filter out low-volume, less significant candles.
2. Volume Pressure Calculation:
o Measures buying pressure as the portion of volume attributed to upward movement (based on close position within the candle range).
o Selling pressure is the remaining volume.
3. Smoothed & Lookback Analysis:
o Applies a 3-period EMA to smooth pressure values.
o Compares total buying vs. selling pressure over a user-defined lookback period (default: 5 bars).
4. Signal Conditions:
o Buy Signal:
Total buying pressure exceeds selling pressure by a threshold (default: 1.5x).
Buying pressure is increasing, and the candle closes bullish (close > open).
o Sell Signal:
Total selling pressure exceeds buying pressure by the threshold.
Selling pressure is increasing, and the candle closes bearish (close < open).
o Recommended Settings:
- *Day Trading*: 3-5 lookback, 1.3-1.5 threshold
- *Swing Trading*: 5-10 lookback, 1.5-2.0 threshold
- Adjust min_volume based on market volatility
XAUMO MEGABAR Detector]XAUMO MegaBar Detector – Breakout Candle Identification Tool
Purpose:
The XAUMO MegaBar Detector is built to highlight rare, high-impact candles where strong price movement and high trading volume occur together. These moments often reflect aggressive market activity and can be used to confirm potential breakouts or reversals.
How It Works (High-Level Overview)
The tool continuously monitors two primary conditions:
Price Expansion – Identifies large-bodied candles compared to recent averages.
Volume Expansion – Confirms that the move is supported by above-average trading activity.
When both conditions are present, the candle is marked:
🟢 Mega Bull – Strong bullish pressure.
🔴 Mega Bear – Strong bearish pressure.
Key Features
Automatic Timeframe Adjustment – Detection sensitivity changes based on chart timeframe, so results stay relevant from 1-minute scalps to multi-day swing setups.
Clear Visual Output – Significant candles are highlighted directly on the chart for easy recognition.
Optional Labels – Toggle on/off text labels (“Mega Bull” / “Mega Bear”) for a cleaner chart view.
Alert Integration – Set TradingView alerts to be notified immediately when a qualifying candle appears.
Universal Compatibility – Works on Forex, Commodities, Indices, Crypto, Stocks, ETFs, and Futures.
Practical Uses for Traders
As a confirmation tool when price approaches support/resistance or Fibonacci levels.
To filter low-quality setups by focusing only on moments where both price and volume confirm the move.
As part of a trend-following or breakout strategy when combined with other analysis methods.
Using the Indicator
Add the indicator to any chart and select your preferred timeframe.
Watch for highlighted candles – they indicate significant combined momentum and liquidity.
Use as a signal filter or confirmation alongside your existing trading system.
Optional: Set alerts to receive push/email/webhook notifications.
===================================
📌 MEGA BAR TRADING CHEAT SHEET
Spot Big Money. Ride the Move.
===================================
🧠 WHAT’S A MEGA BAR?
A Mega Bar is a candle so big it makes the rest look tiny — and it often means institutions are making a move.
Check the 4 Rules:
✅ Body size ≥ 2x average
✅ High relative volume (vs. last 20 bars)
✅ Closes near high (bull) or low (bear)
✅ Comes after sideways chop or price squeeze
📈 WHY IT MATTERS
Mega Bars = intent, not random spikes.
🟢 Mega Bull near support/Fib pullback → Likely accumulation
🔴 Mega Bear near resistance/Fib extension → Likely distribution or trap
🔧 HOW TO TRADE IT
1. WAIT FOR IT
No Mega Bar → No trade.
Mega Bull (big green) → BUY bias.
Mega Bear (big red) → SELL bias.
2. FIND THE SPOT
Fib levels: 61.8% / 78.6% / 138.2%
Major Support/Resistance
3. CONFIRM ON BIGGER TIMEFRAME
Example: 15M Mega Bar → Check 1H trend direction.
4. SET YOUR LEVELS
Stop-Loss:
Long → Below Mega Bull low (+0.2×ATR)
Short → Above Mega Bear high (+0.2×ATR)
Take-Profit:
Fib extensions: 127.2% / 161.8% / 261.8%
Prior highs/lows
5. RISK SMART
Risk 1–2% max per trade
Aim for 2:1+ R:R
🌍 WORKS ON:
Forex • Commodities • Stocks • Crypto • Indices
THE RETAILER’S FORMULA:
🟢 Big Green → Buy
🔴 Big Red → Sell
🎯 Fibs = Payday
One setup. One signal. Discipline = profit.
Normalized Volume - HybridDescription for the Hybrid Version
Hybrid Normalized Volume (Color-Coded)
A volume normalization tool that also highlights market sentiment by color-coding bars according to price direction.
Features:
3 normalization modes: Relative to Average, Z-Score, and Min-Max.
Green histogram bars = bullish volume (close > open).
Red histogram bars = bearish volume (close < open).
Adjustable lookback period.
Baseline for quick identification of above/below-average activity.
Use cases:
Instantly spot high-volume buying vs. high-volume selling.
Compare volume behavior across different assets without scale distortion.
Identify significant market participation shifts in real-time.
Normalized Volume - StandardNormalized Volume Indicator
This indicator measures current trading volume relative to its historical behavior, making it easier to spot unusual spikes or lulls.
Features:
3 normalization modes:
• Relative to Average: Volume ÷ N-period average. Values > 1 = above-average activity.
• Z-Score: How many standard deviations current volume is from the mean.
• Min-Max: Scales volume between 0 and 1 for the lookback period.
Adjustable lookback period.
Baseline reference line for quick comparison.
Use cases:
Identify unusually high or low activity regardless of the asset’s absolute volume scale.
Compare volume behaviour across different markets or timeframes.
S/R Matrix Pro v1 – 3-Level Zone-Based Signal Engine🧠 S/R Matrix Pro – 3-Level Zone-Based Signal Engine
S/R Matrix Pro is an advanced support/resistance-based signal system built around a structured, 3-level zone model. It identifies market trend phases, filters impulsive and corrective movements, and delivers highly visual, intuitive signals for both manual and semi-automated trading strategies.
🔍 Core Features
Triple-Zone Logic: Uses three dynamic support/resistance zones:
Zone 1 – Determines trend direction
Zone 2 – Detects impulse vs. correction
Zone 3 – Generates precise buy/sell signals
Smart Signal Filtering: Candlestick confirmation filters (bullish/bearish closes) to validate signals only during impulses.
Dynamic Updates: Signal logic resets on new lows/highs at Zone 3 to ensure accurate entries.
Multi-Timeframe Analysis: Integrated display of signal strength across multiple timeframes (M5–D1).
Informational Dashboard: Clear, responsive interface optimized for desktop, tablet, and mobile.
Alert System: Sends alerts to TradingView notifications/email for every valid buy/sell signal.
📈 How It Works
A buy signal occurs when price touches Zone 3 and then a bullish candle closes above the high of the confirming bearish candle (or a group of bearish candles).
All signals are valid only when:
Trend (Zone 1) is upward
Market is in impulse phase (Zone 2 increasing)
Filters are met on Zone 3
The logic is fully reversed for sell signals.
🧰 Customization
Adjustable parameters for:
Number of candles used in signal filtering
Dynamic zone sensitivity
Table colors and zone transparency
Signal alerts can be customized for different delivery channels (popup, email, webhook).
💡 Best For
Scalpers (1m–5m)
Intra-day traders (15m–1H)
Manual signal validation or automation setup
💬 S/R Matrix Pro blends structured logic with visual simplicity — built for precision, speed, and control.
Confluence HunterUnlock powerful trade setups with our custom BBWP + RSI Oversold Screener!
This indicator combines Bollinger Band Width Percentile (BBWP) to detect periods of extreme low volatility with RSI oversold signals, helping you pinpoint high-probability breakout opportunities before they happen. When the market’s energy is compressed and price is sitting in oversold territory, it often signals a sharp move is coming—this tool lets you spot those moments instantly. Perfect for swing traders and crypto scalpers who want to catch explosive moves early, it’s your edge in spotting volatility squeezes before the crowd.
Breakout Volume Momentum [5m]Breakout Volume Momentum Indicator (Pine Script v5)
This TradingView Pine Script v5 indicator plots a green dot below a 5-minute price bar whenever all the breakout and volume conditions are met. It is optimized for live intraday trading (not backtesting) and includes customizable inputs for thresholds and trading session times. Key features and conditions of this indicator:
Gap Up Threshold: Current price is up at least X% (default 20%) from the previous day’s close (uses higher-timeframe daily data) before any signal can trigger.
Relative Volume (RVOL): Current bar’s volume is at least Y× (default 2×) the average volume of the last 20 bars. This ensures unusually high volume is present, indicating strong interest.
Trend Alignment: Price is trading above the VWAP (Volume-Weighted Average Price) and above a fast EMA. In addition, the fast EMA (default 9) is above the slower EMA (default 20) to confirm bullish momentum
tradingview.com
tradingview.com
. These filters ensure the stock is in an intraday uptrend (above the average price and rising EMAs).
Intraday Breakout (optional): Optionally require the price to break above the recent intraday high (default last 30 bars). If enabled, a signal only occurs when the stock exceeds its prior range high, confirming a breakout. This can be toggled on/off in the settings.
Avoid Parabolic Spikes: The script skips any bar with an excessively large range (default >12% from low to high), to avoid triggering on spiky or unsustainable parabolic candles.
Time Window Filter: Signals are restricted to a specific session window (by default 09:30 – 11:00 exchange time, typically the morning session) and will not trigger outside these hours. The session window is adjustable via inputs
stackoverflow.com
.
Alerts: An alert condition is provided so you can set a Trading View alert to send a push notification when a green dot signal fires. The alert message includes the ticker and price at the time of signal.
VWAP CALENDARThe VWAP CALENDAR indicator plots up to 20 anchored Volume-Weighted Average Price (VWAP) lines on your chart, each starting from a user-defined date and time (e.g., April 20, 2024). Designed for simplicity, it helps traders visualize VWAPs for key events or dates, with customizable labels and colors. The indicator is optimized for crypto markets (e.g., BTC/USD) but works with any symbol providing volume data.
Features: Multiple VWAPs: Configure up to 20
independent VWAPs, each with a custom anchor date and time.
Dynamic Labels: Labels update in real-time, aligning precisely with each VWAP line’s price level, positioned to the right of the chart for clarity.
Customizable Settings: Adjust label text (e.g., “Event A”), line colors, line widths (1–5 pixels), text colors, and text sizes (8–40 points, default 22).
Bubble or No-Background Labels: Choose between bubble-style labels (with colored backgrounds) or plain text labels without backgrounds.
Timeframe Support: Accurate on daily, 4-hour, 1-hour, and 30-minute charts for anchors within ~1.5 years (e.g., April 20, 2024, from August 2025).
Limitations: VWAP accuracy for anchors like April 20, 2024 (~477 days back) is reliable on 1-hour and larger timeframes. Below 30-minute (e.g., 15-minute, 24-minute), VWAPs may start later or be unavailable due to TradingView’s 5,000-bar historical data limit. For distant anchors, use 4-hour or daily charts to ensure accuracy.
Requires sufficient chart history (e.g., premium account or deep exchange data) for older anchors on 1-hour or 30-minute charts.
Usage Notes: Set anchor dates via the indicator settings (e.g., “2024-04-20 00:00”).
Enable/disable individual VWAPs as needed.
Zoom out to load maximum chart history for best results, especially on 1-hour or 30-minute timeframes.
Ideal for crypto symbols with continuous trading data, but verify data availability for other markets.
Disclaimer:
This is a free indicator provided as-is
Volume/Price Movement Indicator## Volume/Price Movement Indicator (VPM)
The **Volume/Price Movement Indicator (VPM)** is a technical analysis tool designed to identify the strength and potential direction of a trend by combining price momentum with volume analysis. Unlike indicators that only look at price, VPM uses volume as a confirming factor to gauge the conviction behind a price move. This helps traders distinguish between strong, high-conviction trends and weak, low-conviction movements that may be prone to reversal.
***
### Key Concepts
* **Price Trend**: The indicator smooths out daily price changes to determine the underlying trend direction. A positive price trend suggests upward momentum, while a negative trend suggests downward momentum.
* **Volume Analysis**: The VPM calculates a **Volume Ratio**, which compares the current bar's volume to its moving average. A high volume ratio indicates that the current volume is significantly higher than recent average volume, suggesting strong market participation. The **Volume Threshold Multiplier** is used to define what constitutes "high volume."
* **Net Pressure**: This component measures the difference between buying pressure and selling pressure, providing an additional layer of confirmation. Positive net pressure indicates that buying activity is outpacing selling, and vice versa.
***
### How to Use the Indicator
The VPM plots its findings on a histogram below the main chart, using colors to clearly signal the market's state.
* **🟢 Strong Bull (Green)**: This is the most powerful bullish signal. It indicates a clear upward price trend that is confirmed by both high volume and positive net pressure. This is a strong signal of conviction and potential continuation of the uptrend.
* **🔵 Weak Bull (Lime)**: This signal indicates a clear upward price trend, but with low volume. The positive net pressure suggests buying is still dominant, but the lack of high volume means there may not be strong market conviction. This signal suggests caution and may precede a consolidation or reversal.
* **🔴 Strong Bear (Red)**: The strongest bearish signal. It indicates a clear downward price trend confirmed by high volume and negative net pressure. This suggests strong selling conviction and a high probability of the downtrend continuing.
* **🟠 Weak Bear (Orange)**: This indicates a clear downward price trend but with low volume. Negative net pressure confirms selling dominance, but the low volume suggests a lack of strong conviction. Like the "Weak Bull" signal, this suggests caution.
* **⚫ Neutral (Gray)**: This signal is displayed when there is no clear trend or when price and volume are diverging. It's a signal of market indecision and suggests waiting for a clearer signal.
***
### Indicator Settings
* **Trend Length**: This input controls the sensitivity of the price trend calculation. A smaller value will make the indicator more responsive to short-term price changes, while a larger value will filter out noise and focus on longer-term trends.
* **Volume MA Length**: This determines the length of the moving average used as a baseline for volume. A longer length will make the "high volume" condition harder to meet.
* **Volume Threshold Multiplier**: This is a key setting for tuning the indicator. It determines how much higher the current volume must be than its moving average to be considered "high volume." For example, a value of `1.2` means volume must be at least 20% higher than the moving average to trigger a high-volume signal.
Volume with High Volume SignalsIndicator Description for Promotional Post (in English)
Unlock Market Insights with the "Volume with High Volume Signals" Indicator!
Are you ready to take your trading to the next level? The Volume with High Volume Signals indicator is your ultimate tool for spotting critical market movements driven by volume surges. Designed for traders who want clarity and precision, this Pine Script indicator combines powerful volume analysis with customizable features to help you stay ahead of the game.
Why Choose This Indicator?
Dynamic Volume Visualization: Watch volume bars come to life with customizable coloring. Choose to color bars based on candle direction (green for bullish, red for bearish) or use a neutral gray for a clean look.
High Volume Detection: Instantly spot significant volume spikes with our advanced highlighting feature. When volume exceeds twice the Simple Moving Average (SMA), bars are highlighted in a bold, customizable color (default: yellow) to signal potential breakout or reversal opportunities.
Dual Moving Averages: Track volume trends with both Simple Moving Average (SMA) and Exponential Moving Average (EMA). Fully customizable periods, colors, and line thickness let you tailor the indicator to your trading style.
Visual Alerts for Key Moments: When volume surges above both SMA and EMA, a vibrant fuchsia triangle appears above the bar, giving you an immediate visual cue for high-impact market activity.
User-Friendly Customization: Adjust every aspect of the indicator—toggle SMA/EMA visibility, set periods, choose colors, and fine-tune line thickness to match your preferences.
Perfect For:
Day traders looking for high-volume breakouts.
Swing traders identifying trend reversals.
Any trader who wants to harness volume as a leading indicator.
Why It’s a Must-Have:
Volume is the heartbeat of the market, and this indicator transforms raw data into actionable insights. Whether you're scalping, swing trading, or analyzing long-term trends, the Volume with High Volume Signals indicator empowers you to make informed decisions with confidence.
Get Started Today!
Add the Volume with High Volume Signals indicator to your TradingView arsenal and start decoding market moves like a pro. Don’t miss out on the edge that top traders rely on—grab this indicator now and elevate your trading strategy!
Volumen Abreviado📌 Indicator Description:
Abbreviated Volume (K / M)
This indicator displays each candle’s volume in an abbreviated format (K for thousands, M for millions, B for billions), making it easier to read and avoiding overly large numbers on the chart.
Key Features:
Volume histogram colored by candle direction (green: bullish, red: bearish, gray: neutral).
Configurable volume average line.
Label showing the abbreviated volume on the latest bar.
Optimized Y-axis scale to display compact values.
Perfect for:
Traders who want to quickly read volume without being distracted by large numbers.
Charts with high trading volume where full numbers are hard to read.
Fast analysis in stocks, crypto, or futures markets.
How to Use:
Add the indicator to your chart.
Adjust the average period in the settings.
Toggle the last-bar label on or off based on your preference.
✅ Works with any time frame and market.
AlgoFlex Free Algo📢 Introducing AlgoFlex Free — Buy/Sell Signals for All Traders
We’re excited to release our first free AlgoFlex algorithm to the TradingView community!
This version provides clear Buy/Sell signals directly on your chart.
✅ Features
Real-time Buy and Sell alerts
Works on any market & timeframe
Clean, minimal chart display
Optimized for trend-following & quick decision making
💡 How to Use
Add this script to your chart
Choose your preferred market & timeframe
Follow the Buy/Sell labels for trade ideas
(Optional) Enable TradingView alerts for instant notifications
⚠ Disclaimer
This script is for educational and informational purposes only.
Always do your own research and use proper risk management before trading live capital.
🚀 Upgrade to AlgoFlex Pro for advanced AI-driven signal modes, higher accuracy, and additional strategy filters. Contact us via our profile for details or Download AlgoFlex app from the app store/google play to get access.