QQE On ChartQQE On Chart – Visual QQE Crossover Indicator
This indicator implements the Quantitative Qualitative Estimation (QQE) algorithm directly on the price chart.
Unlike traditional QQE implementations that are plotted as a separate oscillator, this version maps QQE Fast and QQE Slow signals as visual lines near the price action, allowing for cleaner and faster signal interpretation.
What it does:
Calculates smoothed RSI (using EMA) and its volatility (ATR of RSI changes).
Constructs upper and lower bands (QQE Slow) based on the smoothed QQE Fast line and dynamic ATR.
Displays BUY/SELL signals when the QQE Fast line crosses the QQE Slow band.
Signals are plotted as labels directly below/above the candles.
Why it's useful:
The proximity to price makes this QQE implementation very intuitive for price-action traders.
The smoothing and crossover logic help identify shifts in momentum and trend continuation.
Unique elements:
Overlay on chart with dynamic offset for better readability.
Built-in alerts for real-time trading reaction.
Optional signal markers can be enabled or disabled.
Best used for:
Momentum trading
Trend confirmation
Identifying reversal or breakout zones
Parameters:
RSI Length: Base RSI calculation period
Smoothing Factor: EMA applied to RSI
Offset from Price: Controls distance of QQE lines from price
Volum
Ultra VolumeVisualizes volume intensity using dynamic color gradients and percentile thresholds. Includes optional SMA, bar coloring, and adaptive liquidity boxes to highlight high- and low-volume zones in real time.
Introduction
The Ultra Volume indicator enhances volume analysis by categorizing volume bars into percentile-based intensity levels. It uses color-coded gradients to quickly identify periods of unusually high or low activity. The script also includes an optional simple moving average (SMA), bar coloring, and visual box overlays to highlight zones of significant liquidity shifts.
Detailed Description
.........
Volume Classification
Volume is segmented into five tiers: Extra High, High, Medium, Normal, and Low, using percentile ranks calculated over a dynamically adjusted historical window. This segmentation adapts based on the chart's timeframe – using 100 bars for daily and 1440/minutes for intraday – allowing for consistent behavior across resolutions.
.....
Color Gradients
Each volume bar is colored based on its percentile category, smoothly transitioning between thresholds for visual clarity. This makes it easy to spot volume spikes or droughts relative to recent history.
.....
Simple Moving Average (SMA)
An optional SMA can be plotted on top of the volume bars for trend comparison and baseline reference. Its length and color are fully customizable.
.....
Bar Coloring
You can optionally color the chart's candlesticks to reflect the same volume intensity as the histogram bars, reinforcing visual cues across the chart.
.....
Liquidity Boxes
Two adaptive box systems highlight zones of increased or decreased liquidity:
High Liquidity Boxes expand upward when price exceeds the previous box’s top.
Low Liquidity Boxes expand downward when price breaks the previous box’s bottom.
These boxes persist and auto-adjust over time unless reset, helping traders spot key zones of volume-driven price action.
.....
Box Indexing
A configurable index shift determines how far back in the chart the boxes originate. Setting this to 501 makes them "stick" to the candle where they were first created.
.....
Data Handling
A safety check ensures the script throws an error if volume data is unavailable (e.g., for some crypto or CFD symbols).
.........
Summary
Ultra Volume is a practical tool for traders who want more than just raw volume bars. With intelligent percentile-based classification, real-time adaptive liquidity zones, and fully customizable visual elements, it turns volume into a highly readable, actionable signal.
Squeeze Momentum Long-Only Strategy v5This strategy is a refined long-only version of the popular Squeeze Momentum Indicator by LazyBear, enhanced with modern multi-filter techniques for improved precision and robustness.
📈 Core Idea
The strategy aims to capture explosive upside moves after periods of low volatility ("squeeze") — confirmed by breakout momentum, strong volume, macro trend alignment, and market context. Trades are entered only long, making it suitable for bullish assets or trending environments like crypto.
🔍 How It Works
1. Squeeze Detection
Detects a "squeeze" condition when Bollinger Bands (BB) contract inside Keltner Channels (KC).
A squeeze releases (entry signal) when BB expand outside KC — implying a potential breakout.
text
Copy
Edit
sqzOff → Squeeze released → Price may expand directionally
2. Momentum Filter (Modified Squeeze Histogram)
Uses a custom linear regression-based histogram (val) to gauge price momentum.
Only enters long when:
val > 0 (bullish momentum)
val is rising for two consecutive bars (to avoid false starts)
val exceeds a configurable threshold
3. Volume Filter
Confirms strength of breakout by requiring:
text
Copy
Edit
Current volume > Volume Moving Average × Multiplier
This ensures that breakouts are backed by real participation, reducing weak or manipulated moves.
4. Trend Filter (HTF SMA)
Uses a higher timeframe (e.g., Daily) Simple Moving Average to define trend bias.
Only takes long trades if price is above the selected trend SMA (e.g., 50-period SMA on D timeframe).
Helps avoid countertrend trades during bear phases or consolidations.
5. Volatility Filter
Uses ATR to measure recent volatility.
Filters out periods of low ATR to avoid trading in choppy, compressed markets.
🎯 Entry Conditions (All Must Be True):
Squeeze releases upward (sqzOff)
Momentum (val) is positive and rising (2-bar confirmation)
Momentum exceeds a minimum strength threshold
Volume spikes above average
Price is above HTF trend SMA
ATR is above its moving average (indicating active market)
🏁 Exit Condition
Closes the trade only when val < 0 → Momentum flips bearish.
(Optional extensions like trailing stops or take-profit rules can be added.)
⚙️ Customization Options
Momentum strength threshold
Volume multiplier
ATR length & filter threshold
HTF trend timeframe (e.g., "D", "3D", "W")
Trend SMA length
KC/BB settings for squeeze tuning
📊 Best Use Cases
Crypto (BTC, ETH, altcoins in uptrends)
Equities in trending sectors
Avoid in sideways, illiquid, or heavily news-driven markets
✅ Benefits
High precision due to multi-layered confirmation
Avoids overtrading in poor conditions
Focuses on clean, high-quality breakout trades
Flexible for risk management add-ons
EMA 9/45 Cross with Volume FilterThis script will plot the two EMAs on your chart. When a bullish cross (9-day EMA crosses above 45-day EMA) or a bearish cross (9-day EMA crosses below 45-day EMA) occurs with a daily volume greater than 1 million, it will display a corresponding "Buy Signal" or "Sell Signal" arrow.
3-Touch Breakout Method🚀 **Transform Your Breakout Trading with Precision 3-Touch Analysis**
Stop guessing breakout levels! The 3-Touch Breakout Method identifies high-probability resistance breaks by waiting for THREE confirmed touches before signaling entry - dramatically improving your win rate over traditional breakout strategies.
## **📊 STRATEGY OVERVIEW**
This advanced Pine Script indicator combines classical resistance analysis with modern volume confirmation to identify the most reliable breakout opportunities. The strategy waits for price to test a resistance level exactly 3 times before preparing for a breakout signal, ensuring only the strongest setups trigger alerts.
## **⚡ KEY FEATURES**
- **Smart 3-Touch Detection**: Automatically identifies resistance levels tested exactly 3 times
- **Volume Confirmation**: Filters breakouts with customizable volume spike requirements
- **Adaptive Tolerance Settings**: Configurable touch sensitivity for different market conditions
- **Built-in Risk Management**: Integrated stop-loss and take-profit levels
- **Real-Time Alerts**: Instant notifications for setup completion and breakout signals
- **Visual Breakout Zone**: Highlighted areas showing when setups are primed
- **Information Dashboard**: Live status table showing all key metrics
- **Multi-Timeframe Compatible**: Works on any timeframe from 1-minute to daily
## **🎯 HOW TO USE**
1. **Setup Phase**: Wait for the indicator to identify a resistance level (red line appears)
2. **Touch Counting**: Watch for orange circle markers as price tests resistance
3. **Breakout Ready**: Background turns yellow when 3 touches are confirmed
4. **Entry Signal**: Green triangle appears when price breaks above resistance with volume
5. **Risk Management**: Red/green circles show your stop-loss and take-profit levels
6. **Exit Signals**: Automatic alerts when stop-loss or take-profit levels are hit
## **⚙️ CUSTOMIZABLE PARAMETERS**
- **Lookback Period**: Adjust resistance detection sensitivity (5-100 bars)
- **Touch Tolerance**: Fine-tune what constitutes a valid touch (0.1-2.0%)
- **Volume Multiplier**: Control breakout volume requirements (1.0-5.0x)
- **Risk Ratios**: Set custom stop-loss (0.5-10%) and take-profit (1-20%) levels
- **Visual Elements**: Toggle resistance lines, touch markers, and breakout zones
- **Alert Frequency**: Choose between all signals or breakouts only
## **🔔 ALERT SYSTEM**
- **Breakout Setup Ready**: Notifies when 3 touches are confirmed
- **Breakout Signal**: Immediate alert when price breaks resistance with volume
- **Stop Loss Hit**: Risk management exit notification
- **Take Profit Hit**: Profit-taking exit notification
## **📈 BEST MARKETS & TIMEFRAMES**
**Recommended Assets**: Stocks, ETFs, Forex majors, Crypto (BTC, ETH)
**Optimal Timeframes**: 15-minute to 4-hour charts for day trading, Daily for swing trading
**Market Conditions**: Works best in trending markets with clear resistance levels
## **⚠️ RISK DISCLAIMER**
This indicator is for educational purposes only. Past performance does not guarantee future results. Always use proper risk management and never risk more than you can afford to lose. Consider market conditions and combine with other analysis methods.
## **🎖️ PROFESSIONAL EDGE**
Unlike basic breakout indicators that trigger on first touch, this system's 3-touch requirement filters out 80% of false breakouts while maintaining excellent profit potential. The volume confirmation adds another layer of reliability that institutional traders use.
**💡 Found this helpful? Hit the ❤️ LIKE button and FOLLOW for more professional trading tools!**
**💬 Share your results in the comments - I respond to every question!**
---
*Developed with Pine Script v5 | Compatible with all TradingView plans | Free updates included*
Liquidity Rush (VWAP × Avg Daily Vol in Cr)Liquidity Rush SHOWS TRADED VALUE PER DAY.It shows how much rupee volume (turnover) is concentrating around VWAP, giving you a sense of institutional participation, volume weight, or momentum readiness.
Volume PercentileThis Pine Script indicator highlights bars where the current volume exceeds a configurable percentile threshold (e.g., 80th percentile) based on a rolling window of historical volume data.
🔍 Key Features:
Calculates a user-defined volume percentile (e.g., 75th, 80th, 90th) over a rolling window.
Marks candles where current volume is higher than the selected percentile.
Helps detect volume spikes, breakouts, or unusual activity.
Works directly on the main chart window for easier analysis.
🛠️ Inputs:
Window Length: Number of bars used to calculate the percentile (default = 20).
Percentile: The percentile threshold to trigger a high-volume signal (default = 80).
🖥️ Visualization:
Displays a red triangle marker below bars with volume above the selected percentile.
VWAP Divergence | Flux ChartsVWAP Divergence indicator by FluxCharts turned strategy, with trailing stop-loss capabilities. Will give entry signals for Divergences'. Also has calculations for positions.
GoatsADX)This TradingView indicator implements the Average Directional Index (ADX) along with Directional Movement Indicators (DI+ and DI-) to help traders identify trend strength and direction. It features:
Customizable length and ADX threshold inputs
ADX line colored white when rising and grey when falling for easy trend strength visualization
DI+ and DI- lines plotted with subtle black coloring for clean visuals
Background fills between DI lines and below ADX threshold to highlight key market states
Buy and sell signals plotted as arrows based on ADX crossing threshold with directional bias
Alert conditions for automated notifications on buy and sell signals
GCM Price Based ColorIndicator Name:
GCM Price Based Color Indicator
Detailed Description:
The GCM Price Based Color Indicator is a unique tool designed to help traders spot potential "pump" events in the market. Unlike traditional Volume Rate of Change (VROC) indicators, this script is conditional: it calculates a VROC value only when both the average volume and the price are increasing. This focus helps filter out volume surges that don't accompany immediate price appreciation, highlighting more relevant "pump" signals.
Key Features & Calculation Logic:
Conditional Volume Rate of Change (VROC):
It first calculates a Simple Moving Average (SMA) of the volume over a user-defined length (lookback period).
It then checks two conditions:
Is the current SMA volume greater than the previous bar's SMA volume (i.e., volumeIncreasing)?
Is the current close price greater than the previous bar's close price (i.e., valueIncreasing)?
Only if both volume Increasing AND value Increasing are true, a VROC value is calculated as (current _ MA _ volume - previous _ MA _ volume) * (100 / previous _ MA _ volume). Otherwise, the VROC for that bar is 0.
Historical Normalization:
The raw VROC value is then normalized against its own historical maximum value observed since the indicator was applied. This scaling brings all VROC values into a common 0-100 range.
Why is this important? Normalization makes the indicator's readings comparable across different assets (e.g., high-volume vs. low-volume stocks/cryptos) and different timeframes, making it easier to interpret the strength of a "pump" relative to its own past.
Dynamic Plot Color (Price-Based):
The plot line's color itself provides an immediate visual cue about the current bar's price action:
Green: close is greater than close (price is up for the current bar).
Red: close is less than close (price is down for the current bar).
Grey: close is equal to close (price is flat for the current bar).
Important Note: The plot color reflects the price movement of the current bar, not the magnitude of the VROC Normalized value itself. This means you can have a high vrocNormalized value (indicating a strong conditional volume surge) but a red plot color if the very next bar's price closes lower, providing a multi-faceted view.
Thresholds & Alerts:
Two horizontal lines (small Pump Threshold and big Pump Threshold) are plotted to visually mark significant levels of normalized pump strength.
Customizable alerts can be set up to notify you when VROC Normalized reaches or exceeds these thresholds, helping you catch potential pump events in real-time.
How to Use It:
Identify Potential Pumps: Look for upward spikes in the VROC Normalized line. Higher spikes indicate stronger pump signals (i.e., a larger increase in average volume coinciding with an increasing price).
Monitor Thresholds: Pay attention when the VROC Normalized line crosses above your small Pump Threshold or big Pump Threshold. These are configurable levels to suit different assets and trading styles.
Observe Plot Color: The line color provides crucial context. A high VROC Normalized (strong pump signal) with a green line indicates current price momentum is still positive. If VROC Normalized is high but the line turns red, it might suggest the initial pump is losing steam or experiencing a pullback.
Combine with Other Tools: This indicator is best used in conjunction with other technical analysis tools (e.g., support/resistance, trend lines, other momentum indicators) for confirmation and a more holistic trading strategy.
Indicator Inputs:
Lookback period (1 - 4999) (default: 420): This length determines the period for the Simple Moving Average (SMA) of volume. A higher value will smooth the volume average more, reacting slower, while a lower value will make it more reactive. Adjust based on the timeframe and asset volatility.
Big Pump Threshold (0.01 - 99.99) (default: 10.0): The normalized VROC Normalized level that signifies a "Big Pump." When VROC Normalized reaches or exceeds this level, an alert can be triggered.
Small Pump Threshold (0.01 - 99.99) (default: 0.5): The normalized VROC Normalized level that signifies a "Small Pump." This is a lower threshold for earlier or less significant pump activity.
Alerts:
Small Pump: Triggers when VROC Normalized crosses above or equals the small Pump Threshold.
Big Pump: Triggers when VROC Normalized crosses above or equals the big Pump Threshold.
Best Practices & Considerations:
Timeframes: The indicator can be used on various timeframes, but its effectiveness may vary. Experiment to find what works best for your chosen asset and trading style.
Volatility: Highly volatile assets might require different threshold settings compared to less volatile ones.
Lag: Due to the use of a Simple Moving Average (SMA) for volume, there will be some inherent lag in the calculation.
Normalization Start: The historic Max for normalization starts with a default value of 10.0. For the very first bars, or if there hasn't been a significant VROC yet, the VROC Normalized might behave differently until a true historical maximum VROC establishes itself.
Not Financial Advice: This indicator is a tool for analysis and does not constitute financial advice. Always perform your own research and manage your risk.
HOG Liquidity HunterHOG Liquidity Hunter – Pivot‑Based Liquidity Zones
📌 Overview
Plots dynamic support and resistance zones on swing pivots with an ATR‑based buffer. Anchored only when pivots are confirmed, the zones stay close to current price levels—ideal for spotting liquidity runs or traps.
🔧 How It Works
Detects swing highs and lows using ta.pivothigh() / ta.pivotlow() with a user‑defined lookback.
After a pivot is confirmed, calculates BSL/SSL zone = pivot ± (ATR * margin).
Zones update only on confirmed pivots—no repainting on open bars.
⚙️ Inputs
Lookback: bars to confirm pivots (e.g. 10–20).
ATR Margin Multiplier: buffer width (e.g. 1.25).
✅ Benefits
Structure‑focused: Zones align with real swing points.
Responsive yet stable: Tight ATR margin keeps zones precise, only updating on valid pivots.
Clean visuals: Two uncluttered zones—easy to interpret.
🛠 How to Use
Detect near‑zone bounce entries or exits on 4H/1D charts.
Combine with trend or volume indicators for stronger setups.
Use zones to identify potential stop‑run, liquidity re‑tests, or range turns.
⚠️ Notes & Disclaimers
Zones base off historical pivots; may lag until confirmed.
No future-looking data—relying entirely on closing bar confirmation.
Use alongside a complete trading framework; this is not a standalone signal.
TUFAN Hacim / Fiyat SkoruCalculates long, mid, and short-term volume averages along with volume volatility.
Scores volume strength based on volume trend slope and price changes.
Adjusts the score based on the relationship between price and its 50, 100, and 150-day moving averages.
Combines and normalizes these factors into a final volume/price score.
Triggers an alert when the score is 3 or higher and displays the score with color coding on the chart.
Volume VA with POC Based Percent DeviationsThis is a slightly different take on my previous version that plotted fibonacci retracement levels based on the POC to value area high/low.
This indicator is also based on the volume value area that plots developing POC, VAH, and VAL as well as historical levels. However, instead of plotting fib levels, this script automatically projects percentage deviation levels from the current POC. This can help identify potential overextensions, target areas, or mean-reversion setups.
Knowing where price is and the change in price relative to areas of interest can help identify true value and market imbalances. Hence the name VALUE AREA :)
The percent deviation levels are dynamically plotted in relation to the developing POC. As POC shifts so do the % levels.
Gradient Value Area Fill: Instead of a static color, the Value Area is filled with a dynamic gradient. The adjustable color and transparency shift is based on the current price's distance from the POC, giving you an intuitive feel for where price is relative to the POC.
Enjoy!
"May the fourth leaf bring you extra luck!" 🍀
Daily Open Color CandleDaily Open Color Candle – Visual Price Bias Indicator
This script highlights candlesticks based on their position relative to the current day's opening price. It's a minimalistic tool designed to help intraday traders quickly understand whether price is trading above or below the daily open level.
What it does:
Draws a horizontal line at the daily open price.
Colors candles green if the close is above the daily open, and red if below.
Why it's useful:
Provides immediate visual feedback for bias: bullish (above open) or bearish (below open).
Ideal for intraday traders who base decisions on daily open reference levels.
Unique elements:
Lightweight and non-intrusive design.
Line automatically resets with each new trading day.
Candles are visually categorized without cluttering the chart.
Best used for:
Intraday momentum analysis.
Bias confirmation for scalping/day trading strategies.
Overlay with other indicators like VWAP, EMA, etc.
Parameters:
No configurable inputs — this is a plug-and-play script.
HOG QQE StackHOG QQE Stack – Advanced Momentum + Volatility “Stack”
🧠 Overview
HOG QQE Stack enhances classic QQE (a smoothed RSI variant) by layering multiple signal validation components: momentum, volatility, color gradient, and volume confirmation. This “stacked” structure produces clearer, more reliable signals than using RSI or QQE alone.
📊 Key Features
1. **Smoothed RSI Core**
Starts from a twice-smoothed RSI base (similar to QQE), reducing noise for cleaner trend detection. :contentReference {index=1}
2. **Fast & Slow Momentum Lines**
Generates dual lines for momentum crossovers—more precise than single-oscillator readings. :contentReference {index=2}
3. **ATR Volatility Filter**
Adds volatility-based bands around the fast line, helping filter out weak moves and false signals. :contentReference {index=3}
4. **Volume‑Validated Pulse Dots**
Pulse dots indicate when strong momentum aligns with volume spikes near overbought/oversold zones—highlighting high-confidence moves.
5. **Gradient Color Line**
The QQE line dynamically colors itself based on its position between OB/OS levels—intuitive and visually insightful.
6. **OB/OS & Midline Context**
Includes fixed 70/50/30 reference lines for quick momentum benchmarking.
7. **Layered Signal Strength**
By stacking momentum, volatility, gradient, and volume, the indicator provides multi-tiered confirmation—hence the “Stack” name.
8. **Repaint-Safe & Minimalist**
Plots only confirmed data—no repainting. The visuals are clean and easy to read.
🎯 Application
- Monitor fast/slow momentum crossovers *within* the volatility band for confirmed trend shifts.
- Use pulse dots to confirm strong movement backed by volume.
- Ideal for 4H/Daily charts, especially when used with HOG Super Trend or Liquidity Hunter.
- OB/OS levels (70/50/30) serve as guides for potential reversals or continuations.
⚙️ Inputs
- RSI Length
- QQE Smooth Factor
- WAE Length & Multiplier
- Overbought & Oversold Levels (default 70/30)
⚠️ Notes
- Designed as a **confirmation stack**, not a standalone strategy.
- No repainting—uses confirmed bar values only.
- Fully original code—no copying.
- No guarantees of performance—use proper risk management.
HOG Super Trend🔍 HOG Super Trend – Dual‑EMA Trend Confidence
🧠 Overview
Combines two EMAs—Base EMA and Confirmation EMA—to highlight strong trend alignment. Filters trades with price, EMA cross, and slope direction logic.
⚙️ How It Works
• Base EMA (default 34) and Confirmation EMA (default 13)
• Trend flagged only when:
– Price is above/below Base EMA
– Confirmation EMA aligns above/below Base EMA
– Both EMAs are sloping in the same direction
• Colors: Aqua = Bull trend, Red = Bear trend
🎯 Inputs
• Source (price)
• Base EMA Length
• Confirmation EMA Length
✅ Benefits
• Clean trend filter based on alignment and momentum
• No gray—sharp visuals with clear direction cues
• Repaint‑safe—uses confirmed bar data only
📈 Use Cases
• Perfect for trend confirmation on 1H, 4H, or Daily charts
• Use with price action, volume, or structure for precise entries
⚠️ Notes
• Not a standalone signal, but a trend confirmation tool
• No performance guarantees—test with your strategy
HOG QQE FlowHOG QQE Flow
📄 Overview
HOG QQE Flow is a clean, momentum-powered oscillator that visualizes directional strength and overbought/oversold behavior using a smoothed RSI foundation. With a dynamic gradient line, visual pulse dots, and clean zone fills, it delivers real-time insight into price pressure without unnecessary clutter.
⚙️ How It Works
• Smooths RSI using QQE-style logic and tracks slope
• Adds WAE-style volatility confirmation for powerful pulse filtering
• Highlights overbought/oversold zones with subtle color fills
• Pulse dots fire only when momentum aligns with volume bursts
• Line color shifts dynamically based on QQE position and intensity
🎯 Inputs
• RSI Length & Smoothing Factor
• Overbought / Oversold Thresholds
• WAE Volatility Length & Multiplier
• Volume Burst Filter (hardcoded 1.5× 20SMA)
✅ Benefits
• Quickly spot confirmed momentum ignition
• Clearly see when price is extended or fading
• Gradient line provides real-time slope feedback
• Visual-only — no clutter, no guesswork
📈 Use Cases
• Confirm entries on strong breakouts or reversals
• Filter out weak moves lacking volume or slope
• Pair with EMAs or trend overlays for complete flow setups
• Use as a high-probability signal trigger in trend continuation
⚠️ Notes
• This tool is a momentum visualizer — not a full strategy
• Works best on the daily timeframe or higher with trend context
• Pulse dots are rare by design — use them to time your moves
Volume Velocity by TenozenA new indicator is here!
Volume Velocity (VV) is designed to help identify whether the market is likely to trend or move sideways. When VV drops below 0, it suggests weak volume momentum, which often leads to choppy or range-bound price action. Conversely, a positive VV typically signals a stronger market drive, potentially indicating trend formation. (Strong reminder! Volume data quality is crucial! I suggest using volume data from futures market!)
VV is calculated using Kalman filter concepts; adapting to the state, covariance, and predictions over time, using matrix-based calculations.
To be honest, it's quite a complex method, and I’m still learning as I go. The current version is based on a translated formula that I personaly modified into Pine Script.
I’d really appreciate any insights or ideas you guys might have! Maybe there’s something I missed or a new approach I could try! Ciao!
Liquidity Rush (VWAP × Avg Daily Vol in Cr)dfsdfsdfsdfsdethrfgjnhgxnbfghshsrhdfhdfhgfhgsfhsdghsdghgfh
Market Cipher B ReplicaMarket Cipher B Replica for Pine Script v6
This script is a custom indicator for TradingView inspired by the popular Market Cipher B.
It combines several market strength and momentum signals into a single, visually-rich oscillator, including:
RSI (Relative Strength Index)
MFI (Money Flow Index)
VWAP (Volume Weighted Average Price)
Custom momentum waves (multi-stage EMA smoothing)
Histogram for short-term momentum
Visual signals:
Colored wave fills above/below zero
Green/Red dots on momentum wave crossovers
Yellow/Blue pivot markers for local highs/lows
Trigger dots for potential reversals
Dynamic background coloring for market states (overbought, oversold, confluence, VWAP clouds)
All major features are toggleable, so you can customize what’s displayed for clarity and focus.
Purpose:
To help traders visually identify market momentum shifts, trend reversals, and areas of potential exhaustion or confluence—similar to what the original Market Cipher B does, but fully open-source and customizable.
Pashman - Long / Short EMA9-EMA21-VWAP Crossover & ExitEMA Crossover indicator for long or short entry points along with a exit signal when the momentum reverses. Further the EMA crossover signal is further enhanced with volume at the crossover being higher than the average of previous 9 periods.