CVD - Cumulative Volume Delta CandlesCumulative Volume Delta with CVD level Alerts for finding Absorption - statistically the strongest CVD divergence.
Select your CVD levels in Settings > Inputs ("Upper Y Scale Alert Level" / "Lower Y Scale Alert Level") then right click on the green/red levels to create an alert for when CVD crosses.
If CVD hits a new high/low without price doing the same, there is Absorption
Reach out on X @cvolumeprofile to find out on which charts this works best
CVD by @cvolumeprofile also shows candle by candle divergences - highlighted with a green background. This is when a market goes down on more buyers or when a market goes up on more sellers - often signalling market inflection points
Volume
NEIROCTO Impulse Watcher (Alert Ready)//@version=5
indicator("NEIROCTO Trap Watcher (Downside Alert)", overlay=true)
// === Условия ===
rsi = ta.rsi(close, 14)
rsi_down = rsi < ta.sma(rsi, 5)
volatility = math.abs(close - close ) / close * 100
volatility_trigger = volatility > 3
volume_sma = ta.sma(volume, 20)
volume_up = volume > volume_sma
// === Сигнал ===
condition = rsi < 40 and rsi_down and volatility_trigger and volume_up
// === Графика ===
bgcolor(condition ? color.new(color.red, 85) : na)
plotshape(condition, title="DROP Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="⚠️")
// === Алерт ===
alertcondition(condition, title="⚠️ NEIROCTO: Возможен откат!", message="⚠️ NEIROCTO: RSI ↓, Волатильность >3%, объёмы растут. Возможен откат!")
NEIROCTO Impulse Watcher (Alert Ready)//@version=5
indicator("NEIROCTO Combo Watcher (Pump vs Dump)", overlay=true)
// === RSI и его производные ===
rsi = ta.rsi(close, 14)
rsi_sma = ta.sma(rsi, 5)
rsi_up = rsi > rsi_sma
rsi_down = rsi < rsi_sma
// === Волатильность ===
volatility = math.abs(close - close ) / close * 100
volatility_trigger = volatility > 3
// === Объёмы ===
volume_sma = ta.sma(volume, 20)
volume_up = volume > volume_sma
// === Условие пампа ===
pump_condition = rsi > 45 and rsi_up and volatility_trigger and volume_up
// === Условие отката ===
dump_condition = rsi < 40 and rsi_down and volatility_trigger and volume_up
// === Фон ===
bgcolor(pump_condition ? color.new(color.green, 85) : na)
bgcolor(dump_condition ? color.new(color.red, 85) : na)
// === Метки ===
plotshape(pump_condition, title="🚀 PUMP Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="🚀")
plotshape(dump_condition, title="⚠️ DUMP Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="⚠️")
// === Алерты ===
alertcondition(pump_condition, title="🚀 NEIROCTO: Возможен памп!", message="🚀 RSI ↑, Волатильность >3%, Объёмы высокие — возможен памп!")
alertcondition(dump_condition, title="⚠️ NEIROCTO: Возможен откат!", message="⚠️ RSI ↓, Волатильность >3%, объёмы растут — возможен откат!")
VPOC [cem_trades]This indicator highlights the price level with the highest traded volume within a defined session — known as the Volume Point of Control (VPOC). It's a powerful tool for identifying key support and resistance zones. Fully customizable with session times, timezones, and trading hours (RTH/ETH), making it suitable for both day and swing trading. More information at cem_trades.
NEIROCTO Impulse Watcher (Alert Ready)//@version=5
indicator("NEIROCTO Combo Watcher (Pump vs Dump)", overlay=true)
// === RSI и его производные ===
rsi = ta.rsi(close, 14)
rsi_sma = ta.sma(rsi, 5)
rsi_up = rsi > rsi_sma
rsi_down = rsi < rsi_sma
// === Волатильность ===
volatility = math.abs(close - close ) / close * 100
volatility_trigger = volatility > 3
// === Объёмы ===
volume_sma = ta.sma(volume, 20)
volume_up = volume > volume_sma
// === Условие пампа ===
pump_condition = rsi > 45 and rsi_up and volatility_trigger and volume_up
// === Условие отката ===
dump_condition = rsi < 40 and rsi_down and volatility_trigger and volume_up
// === Фон ===
bgcolor(pump_condition ? color.new(color.green, 85) : na)
bgcolor(dump_condition ? color.new(color.red, 85) : na)
// === Метки ===
plotshape(pump_condition, title="🚀 PUMP Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="🚀")
plotshape(dump_condition, title="⚠️ DUMP Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="⚠️")
// === Алерты ===
alertcondition(pump_condition, title="🚀 NEIROCTO: Возможен памп!", message="🚀 RSI ↑, Волатильность >3%, Объёмы высокие — возможен памп!")
alertcondition(dump_condition, title="⚠️ NEIROCTO: Возможен откат!", message="⚠️ RSI ↓, Волатильность >3%, объёмы растут — возможен откат!")
Stochastic Money Flow IndexThe Stochastic Money Flow Index (or Stochastic MFI ), is a momentum indicator that combines the Money Flow Index (MFI) and the Stochastic Oscillator to identify overbought and oversold conditions in a market.
It is a variation of the classic Stochastic RSI that uses the MFI rather than the Relative Strength Index (RSI) in its calculation. While the RSI focuses solely on price momentum, the MFI is a volume-weighted indicator, meaning it incorporates both price and volume data.
The Stochastic MFI is intended to provide a more precise and sensitive reading of the MFI by measuring the level of the MFI relative to its range over a specific period.
Settings
Stochastic Settings
%K Length : The number of periods used to calculate the Stochastic. (Default: 14)
%K Smoothing : The SMA length used to 'smooth' the %K line. (Default: 3)
%D Smoothing : The SMA length used to 'smooth' the %D line. (Default: 1)
Money Flow Index Settings
MFI Length : The number of periods used to calculate the Money Flow Index. (Default: 14)
MFI Source : The source used to calculate the Money Flow Index. (Default: close)
Additional Settings
Show Overbought/Oversold Gradients? : Toggle the display of overbought/oversold gradients. (Default: true)
RSI Rising Over 50this is part of some pine script testing I'm doing to begin both dabbling in trading and the UI.
Short Volume % of Total VolumeShort Volume % of Total Volume
This indicator plots the daily short volume as a percentage of total volume for a specific U.S. stock. The short volume is sourced from FINRA’s reported short sale data and is compared against the stock’s total trading volume for the same day.
📊 Use Cases:
Monitor short-selling pressure over time.
Identify spikes in short volume % that may signal increased bearish positioning.
Use in conjunction with price action to gauge sentiment shifts or potential short squeezes.
⚠️ Note: FINRA data reflects activity from FINRA-regulated trading venues only and may not represent full market-wide short activity.
FINRA Short Volume (Daily)FINRA Short Volume (Daily)
This indicator displays the daily short sale volume reported by FINRA for a specific U.S. stock.
🔍 Key Features:
Pulls official FINRA short volume using FINRA: _SHORT_VOLUME
Updates daily, regardless of chart timeframe
Useful for tracking short-selling activity over time
📈 Use Cases:
Identify spikes in short volume that may precede price volatility
Monitor persistent shorting pressure
Combine with price action or other sentiment indicators for squeeze potential
⚠️ Note: This data only includes short sales reported to FINRA — it may not reflect total market-wide short interest. For broader context, use this with other data sources like short interest as a % of float or borrow rates.
45pointsJ3FF Enhanced# 45pointsJ3FF Enhanced Pine Script Indicator
This is a comprehensive multi-timeframe support and resistance indicator for TradingView that displays key price levels and VWAP (Volume Weighted Average Price) across different time periods.
## 🎯 **Core Functionality**
The indicator plots critical price levels from multiple timeframes simultaneously on your chart, helping traders identify key support/resistance zones and volume-based price levels.
## 📊 **Key Levels Displayed**
### **Multi-Timeframe Levels:**
- **Daily**: Open, High, Low + Previous Day levels
- **Weekly**: Open, High, Low + Previous Week levels
- **Monthly**: Open, High, Low + Previous Month levels
- **Yearly**: Open, High, Low + Previous Year levels
### **Equilibrium Levels:**
- **50% Retracement** levels for previous periods (midpoint between high and low)
- Helps identify potential reversal zones
### **VWAP Levels:**
- **Daily VWAP**: Volume-weighted average for current day
- **Weekly VWAP**: Custom calculation for current week
- **Monthly VWAP**: Custom calculation for current month
- **Yearly VWAP**: Custom calculation for current year
## ⚙️ **Customization Options**
### **Display Controls:**
- **Individual toggles** for each timeframe (Daily/Weekly/Monthly/Yearly)
- **Previous period toggles** to show/hide historical levels
- **Line extension options**: Short, Right, Both
- **Adjustable line width** (1-3 pixels)
### **Visual Customization:**
- **Custom colors** for each timeframe
- **Individual line styles** (Solid, Dashed, Dotted) for each timeframe
- **Price labels** can be toggled on/off for lines and VWAPs
### **Price Table Features:**
- **Comprehensive side table** showing all active level prices
- **4 position options**: Top/Bottom + Left/Right corners
- **3 size options**: Small, Normal, Large
- **Color-coded entries** matching chart lines
- **Auto-filtering**: Only shows enabled levels
## 🔧 **Technical Implementation**
### **VWAP Calculations:**
- **Daily**: Uses built-in `ta.vwap()` function
- **Weekly/Monthly/Yearly**: Custom accumulative calculations using volume-weighted price averaging
- **Timeframe Detection**: Higher timeframe VWAPs only show on intraday charts
### **Higher Timeframe Data:**
- Uses `request.security()` to fetch OHLC data from higher timeframes
- **Lookahead enabled** for real-time updates
- **Previous period data** accessed using ` ` historical referencing
### **Drawing System:**
- **Dynamic line drawing** with customizable extension
- **Smart labeling system** with price formatting
- **Tick-rounded prices** for clean display
- **Performance optimized** with conditional drawing
## 📈 **Trading Applications**
### **Support & Resistance:**
- **Previous day/week/month highs and lows** act as key S/R levels
- **Opening levels** often serve as pivot points
- **Equilibrium levels** (50% retracements) are common reversal zones
### **VWAP Trading:**
- **Daily VWAP**: Intraday trend direction and mean reversion
- **Higher timeframe VWAPs**: Longer-term trend bias
- **Multiple VWAP confluence** creates stronger levels
### **Multi-Timeframe Analysis:**
- **Level confluence**: Multiple timeframes aligning creates stronger zones
- **Trend context**: Higher timeframe levels provide broader market context
- **Entry/Exit planning**: Previous period levels help plan trades
## 🎨 **Visual Organization**
### **Color Coding:**
- **Blue**: Daily levels (default)
- **Yellow**: Weekly levels (default)
- **Purple**: Monthly levels (default)
- **Red**: Yearly levels (default)
- **Transparency**: Previous period levels shown in lighter shades
### **Line Styles:**
- **Solid lines**: Current period highs/lows
- **Dashed lines**: Opening levels
- **Dotted lines**: Previous period levels
- **Thick lines**: VWAP plots (2px width)
## 🔍 **Unique Features**
1. **Custom VWAP calculations** for weekly/monthly/yearly periods
2. **Intelligent table display** that only shows active levels
3. **Comprehensive customization** without overwhelming interface
4. **Performance optimized** with conditional rendering
5. **Professional presentation** with watermark and clean styling
This indicator is particularly valuable for traders who use multiple timeframe analysis and want a clean, organized way to visualize key price levels and volume-based averages all in one tool.
Fast_VwapThis is a Pine Script indicator that calculates and displays Volume Weighted Average Price (VWAP) with several advanced features, including multiple anchoring methods, deviation bands, and optional machine learning enhancements.
Core Components
1. VWAP Calculation
The indicator calculates VWAP using the standard formula:
text
VWAP = Σ(Price × Volume) / Σ(Volume)
Where price can be customized (default is HLC3 - the average of high, low, and close).
2. Anchoring Methods
The indicator offers four ways to reset/start the VWAP calculation:
Session: Resets at the start of each new trading day (most common)
Lowest Low: Resets when a new 10-bar low occurs
Highest High: Resets when a new 10-bar high occurs
Fixed Length: Resets after a specified number of bars (default 20)
3. Deviation Bands
The indicator can show standard deviation bands around the VWAP:
Upper band = VWAP + (Standard Deviation × Multiplier)
Lower band = VWAP - (Standard Deviation × Multiplier)
4. Machine Learning Enhancements
Two optional ML methods can be applied to smooth the VWAP:
Simple Average: Uses an EMA (Exponential Moving Average) of the VWAP
KNN (K-Nearest Neighbors): A simplified implementation that looks at recent values to adjust the current VWAP
How It Works
Inputs: The user can configure all parameters including price source, anchoring method, band settings, and ML options.
Anchoring: The script first determines when to reset the VWAP calculation based on the selected anchoring method.
VWAP Calculation: Using the anchoring points, it calculates the cumulative price×volume and total volume to compute the VWAP and standard deviation bands.
ML Processing: If enabled, the raw VWAP value is smoothed using either a simple EMA or a KNN algorithm that looks at the most similar recent values.
Visualization: The final VWAP line is plotted along with optional deviation bands and colored fills between the bands and VWAP line.
Use Cases
Intraday Trading: When anchored to session, helps identify fair value during the trading day
Swing Trading: When using fixed length or high/low anchoring, can identify support/resistance
Trend Confirmation: Deviation bands help identify overbought/oversold conditions relative to volume-weighted price
The combination of traditional VWAP with machine learning smoothing makes this a unique tool that can potentially reduce noise while maintaining the volume-weighted price information that makes VWAP valuable.
A deviation band is a statistical tool that creates upper and lower boundaries around a central line (in this case, the VWAP) based on how much prices typically vary from that average.
How It Works
Standard Deviation Calculation
The indicator calculates how much prices deviate from the VWAP:
Measures the "spread" or volatility of prices around the VWAP
Uses the mathematical formula for standard deviation
Creates bands at a specific distance from the VWAP line
What Deviation Bands Tell You
Statistical Significance
~68% of price action typically stays within 1 standard deviation
~95% stays within 2 standard deviations
When price touches the bands, it's statistically "unusual"
Trading Signals
Price hits upper band: Potentially overbought, consider selling
Price hits lower band: Potentially oversold, consider buying
Price stays within bands: Normal price action
Price breaks outside bands: Strong momentum move
Dynamic Adjustment
High volatility periods: Bands automatically widen
Low volatility periods: Bands automatically narrow
Volume changes: Affects both VWAP and band calculations
Orange Line (Default)
What it is: The main VWAP line with machine learning enhancement
Purpose: This is the core signal line - the Volume Weighted Average Price that's been processed through your selected ML method (Simple Average, KNN, or None)
Blue Line (Default)
What it is: Upper deviation band
Purpose: Shows potential resistance level - when price reaches this band, it may indicate overbought conditions
Red Line (Default)
What it is: Lower deviation band
Purpose: Shows potential support level - when price reaches this band, it may indicate oversold conditions
High–Low Range % Rolling Countshows the average daily % range of a fund.
note/disclaimer - I'm new to trading, Pinescripts and tradingview. If using this, exercise caution.
DTC_SVVolume is the footprint of smart money.
This indicator helps you track it with surgical precision. DTC_SV is a powerful, all-in-one volume intelligence tool built for traders who rely on volume expansion, institutional candle footprints, and relative strength logic.
Inspired by the Traders Reality framework, this script detects and color-codes vector candles (high-volume momentum candles), provides real-time stats in a clean dashboard, and offers bar-by-bar context for smart money involvement.
🧠 Core Features
📊 Smart Vector Candle Detection
Automatically highlights candles with 1.5x or 2x relative volume.
Dynamic color coding (Green, Red, Blue, Purple) to indicate type and strength.
🟦 Live Volume Histogram with MA
Volume bars show strength and weakness with clarity.
20-period volume moving average line included for trend context.
💬 Volume Labels on Bars
Real-time labels on each vector candle showing absolute volume and % above average.
Helps you see the punch behind every candle.
📈 Advanced Dashboard Panel (Top/Bottom Corner)
Stay data-aware without clutter. The live table shows:
✅ RVOL % – Relative Volume of the current bar.
📈 Daily Trend – Based on position vs 10 & 20 EMA (from daily timeframe).
🔍 Distance to Daily EMA 10/20 – % deviation from mean.
♻️ Avg Recovery of Last 5 Vectors – A key signal for mean reversion plays.
📊 Session RVOL – How current volume stacks up within today’s session.
🧮 Avg Volume of Last 10 Vector Candles – Measures momentum strength.
🔁 Today vs Previous Day Total Volume – Real-time market participation pulse.
🚀 Use Cases
Identify true institutional candles during fake retail moves.
Measure when liquidity is being injected, not just price pushing.
Gauge whether current moves are sustainable or manipulated.
Time your entries using volume spikes + price action confluence.
Track vector candle recovery zones and exhaustion potential.
Rolling VWAP LevelsRolling VWAP Levels Indicator
Overview
Dynamic horizontal lines showing rolling Volume Weighted Average Price (VWAP) levels for multiple timeframes (7D, 30D, 90D, 365D) that update in real-time as new bars form.
Who This Is For
Day traders using VWAP as support/resistance
Swing traders analyzing multi-timeframe price structure
Scalpers looking for mean reversion entries
Options traders needing volatility bands for strike selection
Institutional traders tracking volume-weighted fair value
Risk managers requiring dynamic stop levels
How To Trade With It
Mean Reversion Strategies:
Buy when price is below VWAP and showing bullish divergence
Sell when price is above VWAP and showing bearish signals
Use multiple timeframes - enter on shorter, confirm on longer
Target opposite VWAP level for profit taking
Breakout Trading:
Watch for price breaking above/below key VWAP levels with volume
Use 7D VWAP for intraday breakouts
Use 30D/90D VWAP for swing trade breakouts
Confirm breakout with move beyond first standard deviation band
Support/Resistance Trading:
VWAP levels act as dynamic support in uptrends
VWAP levels act as dynamic resistance in downtrends
Multiple timeframe VWAP confluence creates stronger levels
Use standard deviation bands as additional S/R zones
Risk Management:
Place stops beyond next VWAP level
Use standard deviation bands for position sizing
Exit partial positions at VWAP levels
Monitor distance table for overextended moves
Key Features
Real-time Updates: Lines move and extend as new bars form
Individual Styling: Custom colors, widths, styles for each timeframe
Standard Deviation Bands: Optional volatility bands with custom multipliers
Smart Labels: Positioned above, below, or diagonally relative to lines
Distance Table: Shows percentage distance from each VWAP level
Alert System: Get notified when price crosses VWAP levels
Memory Efficient: Automatically cleans up old drawing objects
Settings Explained
Display Group: Show/hide labels, font size, line transparency, positioning
Individual VWAP Groups: Color, line width (1-5), line style for each timeframe
Standard Deviation Bands: Enable bands with custom multipliers (0.5, 1.0, 1.5, 2.0, etc.)
Labels Group: Position (8 options including diagonal), custom text, price display
Additional Info: Distance table, alert conditions
Technical Implementation
Uses rolling arrays to maintain sliding windows of price*volume data. The core calculation function processes both VWAP and standard deviation efficiently. Lines are created dynamically and updated every bar. Memory management prevents object accumulation through automatic cleanup.
Best Practices
Start with 7D and 30D VWAP for most strategies
Add 90D/365D for longer-term context
Use standard deviation bands when volatility matters
Position labels to avoid chart clutter
Enable distance table during high volatility periods
Set alerts for key VWAP level breaks
Market Applications
Forex: Major pairs during London/NY sessions
Stocks: Large cap names with good volume
Crypto: Bitcoin, Ethereum, major altcoins
Futures: ES, NQ, CL, GC with continuous volume
Options: Use SD bands for strike selection and volatility assessment
MA of TurnoverThis indicator helps in low liquity markets.
Very simple formula: Volume MA * price * %
Last day results is max suggested entry value.
LVN/HVN Auto Detection [PhenLabs]📊 PhenLabs - LVN/HVN Auto Detection
Version: PineScript™ v6
📌 Description
The PhenLabs LVN/HVN Auto Detection indicator is an advanced volume profile analysis tool that automatically identifies Low Volume Nodes (LVN) and High Volume Nodes (HVN) across multiple trading sessions. This sophisticated indicator analyzes volume distribution patterns to pinpoint critical support and resistance levels where price is likely to react, providing traders with high-probability zones for entries, exits, and risk management.
Unlike traditional volume indicators that only show current activity, this tool builds comprehensive volume profiles from historical sessions and intelligently filters the most significant levels. It combines real-time volume analysis with dynamic level detection, offering both visual bubbles for immediate volume activity and persistent horizontal lines that act as ongoing support/resistance references.
🚀 Points of Innovation
Multi-Session Volume Profile Analysis - Automatically calculates and analyzes volume profiles across the last 5 trading sessions
Intelligent Level Separation Logic - Prevents overlapping signals by maintaining minimum separation between LVN and HVN levels
Dynamic Timeframe Adaptation - Automatically adjusts session lengths based on chart timeframe for optimal level detection
Real-Time Activity Bubbles - Shows volume activity strength through different bubble sizes at key levels
Persistent Line Management - Creates horizontal lines that extend until price crosses them, providing ongoing reference points
Dual Threshold System - Independent percentage-based thresholds for both LVN and HVN identification
🔧 Core Components
Volume Profile Engine : Builds 20-row volume profiles for each analyzed session, distributing volume across price levels
Level Identification Algorithm : Uses percentage-based thresholds to classify volume distribution patterns
Separation Logic : Ensures minimum distance between conflicting levels, prioritizing HVN when overlap occurs
Line Management System : Tracks active support/resistance lines and removes them when price crosses through
Volume Activity Monitor : Compares current volume to 13-period moving average for activity classification
🔥 Key Features
Customizable Thresholds : LVN threshold (5-35%, default 20%) and HVN threshold (65-95%, default 80%) for precise level filtering
Volume Activity Multiplier : Adjustable volume threshold (0.5+, default 1.5) for bubble and line creation sensitivity
Flexible Display Modes : Choose between Lines only, Bubbles only, or Both for optimal chart clarity
Smart Level Separation : Minimum separation percentage (0.1-2%, default 0.5%) prevents conflicting signals
Color Customization : Independent color controls for LVN (red) and HVN (blue) elements
Performance Optimization : Processes every 15 bars with maximum 500 active lines for smooth operation
🎨 Visualization
Colored Bubbles : Three sizes (large, medium, small) indicate volume activity strength at key levels
Horizontal Lines : Persistent support/resistance lines with width corresponding to volume activity
Dual Color System : Semi-transparent red for LVN areas, semi-transparent blue for HVN zones
Information Tooltip : Optional table showing usage guidelines and optimization tips
📖 Usage Guidelines
Volume Thresholds
LVN Threshold
○ Default: 20.0%
○ Range: 5.0-35.0%
○ Description: Price levels with volume below this percentage are marked as LVNs. Lower values create fewer, more significant levels. Typical range 15-25% works for most instruments.
HVN Threshold
○ Default: 80.0%
○ Range: 65.0-95.0%
○ Description: Price levels with volume above this percentage are marked as HVNs. Higher values create fewer, stronger levels. Range 75-85% is optimal for most trading.
Display Controls
Volume Threshold
○ Default: 1.5
○ Range: 0.5+
○ Description: Multiplier for volume significance (High=2+threshold, Medium=1+threshold, Low=0+threshold). Higher values require more volume for signals.
✅ Best Use Cases
Swing Trading : Identify key levels for position entries and exits over multiple days
Scalping : Use bubbles for immediate volume activity confirmation at critical levels
Risk Management : Place stops beyond LVN levels where price moves quickly
Breakout Trading : Monitor HVN levels for potential breakout or rejection scenarios
Multi-Timeframe Analysis : Combine with higher timeframe levels for confluence
⚠️ Limitations
Timeframe Sensitivity : Lower timeframes may produce too many levels; higher timeframes recommended for cleaner signals
Volume Data Dependency : Accuracy depends on reliable volume data from your data provider
Historical Analysis : Uses past volume data which may not predict future price behavior
Performance Impact : High number of active lines may affect chart performance on slower devices
💡 What Makes This Unique
Automated Session Analysis : No manual drawing required - automatically analyzes multiple sessions
Intelligent Filtering : Advanced separation logic prevents overlapping and conflicting signals
Adaptive Processing : Adjusts to different timeframes automatically for optimal level detection
Dual Visualization System : Combines persistent lines with real-time activity indicators
🔬 How It Works
1. Volume Profile Construction :
Analyzes the last 5 trading sessions with dynamic session length based on timeframe
Divides each session’s price range into 20 equal levels for volume distribution analysis
2. Level Classification :
Calculates volume percentage at each price level relative to session maximum
Identifies LVN levels below threshold and HVN levels above threshold
3. Signal Generation :
Creates bubbles when volume activity exceeds thresholds at identified levels
Draws horizontal lines that persist until price crosses through them
💡 Note : For optimal results, increase your chart timeframe if you see too many levels. The indicator performs best on 15-minute and higher timeframes where volume patterns are more meaningful and less noisy.
Deviation between Quantity and Price - Event Contract Quantitative strategy is a strategy developed based on trading volume and price behavior, mainly to capture the deviation between trading volume strength and price behavior in the short term, and set it as a unique fixed position of two K-lines. Therefore, this strategy is only applicable to event contract trading!!!
Note: The indicators and parameters of this strategy are specifically selected for the 5-minute cycle of ETH contracts, so they are not applicable to other varieties and cycles!
This strategy combines multiple technical indicators, quantitative analysis, and market trend filters to identify high probability trading opportunities and support both long and short trades.
Its core features include:
Quantitative analysis: Focus on the surge in trading volume, and confirm market momentum through indicators such as net trading volume (OBV) and cash flow (CMF).
Price behavior: Analyze the K-line pattern (such as long/short breaks) and its entity to full range ratio to ensure the reliability of price movements.
Trend filtering: Use exponential moving averages (EMA), average trend indices (ADX), and custom benchmark moving averages (Base MA) to confirm trend direction and strength.
External market environment: Introduce Bitcoin (BTC/USDT) trend data to align with broader market sentiment.
Risk management: Manage risks through controlling position size, trading direction, and cooling off periods after losses.
Performance tracking: Provide a detailed statistical panel to monitor transaction frequency, win rate, and continuous profit/loss records.
Those who need a strategy can contact me for authorization.
US30 Stealth StrategyOnly works on US30 (CAPITALCOM) 5 Minute chart
📈 Core Concept:
This is a trend-following strategy that captures strong market continuations by entering on:
The 3rd swing in the current trend,
Confirmed by a volume-verified engulfing candle,
With adaptive SL/TP and position sizing based on risk.
🧠 Entry Logic:
✅ Trend Filter
Uses a 50-period Simple Moving Average (SMA).
Buy only if price is above SMA → Uptrend
Sell only if price is below SMA → Downtrend
✅ Swing Count Logic
For buy: Wait for the 3rd higher low
For sell: Wait for the 3rd lower high
Uses a 5-bar lookback to detect highs/lows
This ensures you’re not buying early — but after trend is confirmed with structure.
✅ Engulfing Candle Confirmation
Bullish engulfing for buys
Bearish engulfing for sells
Candle must engulf previous bar completely (body logic)
✅ Volume Filter
Current candle volume must be greater than the 20-period volume average
Ensures trades only occur with institutional participation
✅ MA Slope Filter
Requires the slope of the 50 SMA over the last 3 candles to exceed 0.1
Avoids chop or flat trends
Adds momentum confirmation to the trade
✅ Session Filter (Time Filter)
Trades only executed between:
2:00 AM to 11:00 PM Oman Time (UTC+4)
Helps avoid overnight chop and illiquidity
📊 Position Sizing & Risk Management
✅ Smart SL (Adaptive Stop Loss)
SL is based on full size of the signal candle (including wick)
But if candle is larger than 25 points, SL is cut to half the size
This prevents oversized risk from long signals during volatile moves.
The Dow Theory - Linear Regression Channel - Minor TrendI've seen many indicators using the linear regression channel. However, their main drawback is that they average price over a fixed number of candles. The channel lines themselves are based on smoothed prices and a smoothed calculation of the width.
I didn’t want to follow the same approach — I wanted something that doesn’t rely on price averages. Something that can read the market segment by segment.
So I switched to a different approach, and that’s when I discovered Dow Theory.
I began by analyzing the smallest wave that can be meaningfully studied — and this is it: the minor trend of Dow Theory.
All market phases are present, even within a minor trend.
Accumulation and distribution phases are represented by black lines, while wave up or down movements are marked with orange or blue (you can customize these colors).
Main Features:
Continuous linear regressions with no gaps. No repainting. No price smoothing used.
Customizable colors for uptrend, downtrend, and sideways phases.
Can be used to identify structure alignment across minor, intermediate, and primary trends.
Enjoy.
RSI Divergence Pro+ VolumeRSI Divergence Pro+ Volume
What It Does:
RSI Divergence Pro+ Volume is a non-repainting indicator that helps traders spot potential bullish and bearish reversal zones using a classic technical analysis concept—RSI divergence—combined with advanced volume confirmation. The script highlights moments when price and RSI disagree, filtering for signals only when there is a significant volume spike, which helps reduce false positives in quiet or illiquid markets.
How It Works:
Bullish Divergence: Triggered when price makes a lower low but RSI forms a higher low, suggesting possible exhaustion in selling pressure.
Bearish Divergence: Triggered when price makes a higher high but RSI forms a lower high, signaling potential buying exhaustion.
Volume Confirmation: Signals only appear when trading volume exceeds a dynamic threshold (based on a user-defined moving average and multiplier), making alerts more reliable.
Visual Features: Customizable labels and optional gradient highlights mark the exact bars where divergence with volume confirmation occurs, making signals easy to see.
Alert System: Built-in alerts for both bullish and bearish divergences so traders can receive instant notifications.
How to Use:
Apply the script to any timeframe or liquid asset (15m–4H recommended for best results).
Watch for green “BULL↑” labels below bars (bullish divergence) and red “BEAR↓” labels above bars (bearish divergence).
Blue/violet background highlights confirm volume-verified signals.
Combine with your own risk management and confirmation tools for trade entries/exits.
Adjust lookback and volume settings to match your asset and style.
Originality & Usefulness:
This indicator stands out by combining traditional RSI divergence with advanced volume filtering, giving more credible and actionable reversal alerts. All logic is non-repainting and calculated on closed bars only. Settings are fully grouped and customizable, with professional visuals for clarity.
Limitations & Disclaimers:
Not every divergence results in a major reversal—use with other analysis.
More effective in trending or volatile markets; may produce more false signals in choppy/range conditions.
Signals are generated on bar close and do not repaint.
No indicator is a substitute for proper trading discipline and risk management.
FVG Candle TYHE42This indicator highlights potential Fair Value Gaps by applying a color change to the body of the candle that aligns with an imbalance in price movement.
When such a gap is detected in the price structure, the corresponding candle is visually marked using a customizable color, allowing for easy identification without cluttering the chart.
Users can adjust the highlight color from the settings to better match their chart style or personal preference.
Previous Daily High/LowUnderstanding Previous Daily High and Low in Trading
The previous day’s high and low are critical price levels that traders use to identify potential support, resistance, and intraday trading opportunities. These levels represent the highest and lowest prices reached during the prior trading session and often act as reference points for future price action.
Why Are Previous Daily High/Low Important?
Support & Resistance Zones
The previous day’s low often acts as support (buyers defend this level).
The previous day’s high often acts as resistance (sellers defend this level).
Breakout Trading
A move above the previous high suggests bullish momentum.
A move below the previous low suggests bearish momentum.
Mean Reversion Trading
Traders fade moves toward these levels, expecting reversals.
Example: Buying near the previous low in an uptrend.
Institutional Order Flow
Market makers and algos often reference these levels for liquidity.
How to Use Previous Daily High/Low in Trading
1. Breakout Strategy
Long Entry: Price breaks & closes above previous high → bullish continuation.
Short Entry: Price breaks & closes below previous low → bearish continuation.
2. Reversal Strategy
Long at Previous Low: If price pulls back to the prior day’s low in an uptrend.
Short at Previous High: If price rallies to the prior day’s high in a downtrend.
3. Range-Bound Markets
Buy near previous low, sell near previous high if price oscillates between them.