Leslie's EMA Ribbon: 5/9/21 + VWAPEMA Crossover (5/9/21) with VWAP Alerts
This indicator visualizes short- and medium-term market momentum using a combination of exponential moving averages (EMAs) and the Volume-Weighted Average Price (VWAP). It is designed for intraday and swing traders who want reliable visual cues and customizable alerts.
✳️ Features:
Three EMAs: 5EMA (fast), 9EMA (medium), and 21EMA (slow)
VWAP Line: A session-based VWAP for volume-aware trend context
Color-Coded Labels: Auto-updated on the latest bar for clean visuals
Crossover Alerts:
5EMA crosses 9EMA
9EMA crosses 21EMA
9EMA crosses VWAP (volume-contextual momentum shift)
Volum
Open Interest Top//@version=5
indicator("Open Interest Top", "OI Top", format = format.volume)
bool overwriteSymbolInput = input.bool(false, "Override symbol", inline = "Override symbol")
string tickerInput = input.symbol("", "", inline = "Override symbol")
string symbolOnly = syminfo.ticker(tickerInput)
string userSymbol = overwriteSymbolInput ? symbolOnly : syminfo.prefix + ":" + syminfo.ticker
string openInterestTicker = str.format("{0}_OI", userSymbol)
string timeframe = syminfo.type == "futures" and timeframe.isintraday ? "1D" : timeframe.period
= request.security(openInterestTicker, timeframe, [open, high, low, close, close > close ], ignore_invalid_symbol = true)
oiOpen := oiOpen ? oiOpen : na
oiHigh := oiHigh ? oiHigh : na
oiLow := oiLow ? oiLow : na
if barstate.islastconfirmedhistory and na(oiClose)
runtime.error(str.format("No Open Interest data found for the {0} symbol.", userSymbol))
hasOHLC = ta.cum(oiOpen)
color openInterestColor = oiColorCond ? color.teal : color.red
plot(hasOHLC ? na : oiClose, "Futures Open Interest", openInterestColor, style = plot.style_stepline, linewidth = 4)
plotcandle(oiOpen, oiHigh, oiLow, hasOHLC ? oiClose : na, "Crypto Open Interest", color = openInterestColor, wickcolor = openInterestColor, bordercolor = openInterestColor)
plot(oiClose)
Harmony in Havoc - The Entropy of VoVix Harmony in Havoc – The Entropy of VoVix
There are moments in the market when chaos and order are not opposites, but partners in a dance.
Harmony in Havoc is not just an indicator—it’s a window into that dance.
Most tools try to tame the market by smoothing it, boxing it in, or chasing after what’s already happened. This script does the opposite: it listens for the music beneath the noise, the rare moments when volatility and unpredictability align, and the market’s next movement is about to begin.
What is Harmony in Havoc?
VoVix Spike:
The pulse of volatility-of-volatility. Not just how much the market is moving, but how violently its own heartbeat is changing.
Entropy:
A real-time measure of surprise. When entropy is high, the market is not just moving—it’s breaking its own patterns, rewriting its own rules.
Progression Bar & Status:
The yellow bar is your visual gauge of tension. As it fills, the market is winding up.
Wait: The world is calm.
Get ready!: The storm is building.
Take Action!!: The probability of a regime eruption is at its peak.
Yellow Background:
When the background glows, the market is at its most unstable—this is not a buy or sell signal, but a quant alert.
How does it work?
Every tick, Harmony in Havoc measures the distance between the market’s current volatility and its own unpredictability. When the VoVix spike approaches or exceeds the entropy threshold, the system knows:
“This is the moment when the improbable becomes possible.”
Why is this different?
It doesn’t tell you what to do.
It doesn’t chase price.
It doesn’t care about trends, bands, or the past.
Instead, it gives you a quantitative sense of anticipation—a way to see when the market is most likely to break from its own history, and when the edge is at its sharpest.
How to use it:
Watch for the yellow background and “Take Action!!” status.
Use it as a regime filter, a volatility dashboard, or a warning system for your own strategies.
Tune the inputs for your asset and timeframe—make it your own.
Inputs—explained for you:
VoVix Fast/Slow ATR & Stdev:
Control how sensitive the system is to volatility shocks. Lower = more signals, higher = only the rarest events.
Entropy Window & Bins:
Control how “surprised” the entropy engine is by current volatility. Shorter window = more responsive, more bins = finer detail.
Show/Hide Controls:
Toggle the VoVix spike, entropy line, and their glows to customize your visual experience.
Bottom line:
This is not a buy or sell script.
This is a quant regime detector for those who want to feel the market’s tension—to sense when harmony and havoc are about to collide.
Disclaimer:
Trading is risky. This script is for research and informational purposes only, not financial advice. Backtest, paper trade, and know your risk before going live. Past performance is not a guarantee of future results.
*I've only tested this on 1 and 5 min frames.
Use with discipline. Trade your edge.
— Dskyz, for DAFE Trading Systems
3 days ago
Release Notes
* Now mobile friendly. I've added a toggle to switch the dashboard on/off, and added a mobile information line that shows the same information on the dashboard. This is to allow the script to stay visually in balance and this also has a toggle.
* Background color added that coresponds with Buy or Sell areas.
🧠 Godly Confluence Indicator - NQ Futures
~Features Include~
VWAP — institutional trend anchor
RSI (Relative Strength Index) — momentum + overbought/oversold
MACD — momentum + trend confirmation
Delta Volume Approximation — buy/sell pressure estimation
ATR-Based Stop Loss Zones — visual risk levels
Signal Conditions — Buy/Sell signals based on confluence
Energy Exhaustion (Reversal Detection) — via RSI & MACD divergence logic (simplified)
Sticky Candlestick Quarter Divider (Dynamic Update)This indicator divides the most recent candlestick into four equal parts and dynamically plots horizontal lines that move along with the latest candle.
Features:
Dynamic Sticky Lines:
The lines remain visually attached to the current candle, moving seamlessly as the chart updates, zooms, or pans.
Price Level Calculation:
Divides the candlestick into four distinct levels:
High Line (Red): Marks the highest point of the candle.
Low Line (Red): Marks the lowest point of the candle.
Midpoint Line (Blue): Marks the midpoint between high and low.
Upper Quarter Line (Green): Marks the 25% level between low and high.
Lower Quarter Line (Green): Marks the 75% level between low and high.
Real-Time Update:
The lines automatically adjust to the latest candle, maintaining accurate positioning.
Ideal for Candle Analysis:
Quickly identify key price levels and candle structure.
Suitable for analyzing trend strength and potential price reversals.
Cumulative Volume Delta with Divergence🧠 Core Functionality:
1. Cumulative Volume Delta (CVD):
Purpose: Visualizes the difference between buying and selling pressure over time.
Mechanism:
It uses lower-timeframe volume delta data, retrieved from ta.requestVolumeDelta(), to build a candle-style visualization of the net volume movement.
Plotted candles show whether buying (up volume) or selling (down volume) was dominant within each period.
Teal candles: More buying than selling (CVD up).
Red candles: More selling than buying (CVD down).
Volume Source: Based on intrabar up/down volume approximation from lower timeframes.
🧭 Divergence Detection (New Feature):
2. Regular Bullish Divergence:
Condition:
Price makes a lower low.
CVD (lastVolume) makes a higher low.
Interpretation: Selling pressure is weakening despite price making new lows — a potential reversal signal to the upside.
Displayed As:
Green line and label "Bull" under the CVD at the divergence point.
3. Regular Bearish Divergence:
Condition:
Price makes a higher high.
CVD makes a lower high.
Interpretation: Buying pressure is fading despite price rising — a potential reversal signal to the downside.
Displayed As:
Red line and label "Bear" above the CVD at the divergence point.
🧰 User Controls:
Use custom timeframe: Overrides default volume delta resolution for finer or broader analysis.
Calculate Divergence: Turns the divergence detection on or off.
Adjustable via script inputs.
🔔 Alerts:
Two alert conditions are included:
One for bullish divergence.
One for bearish divergence.
Alerts trigger at the bar where the divergence is confirmed, not where it starts.
📈 Use Case:
This tool is ideal for traders looking to:
Spot early reversals or momentum shifts.
Combine volume analysis with price action.
Time entries or exits more accurately using volume-confirmed divergence.
Smart Money Trap for Nifty Options - Aggressive Signals💼 Smart Money Trap for Nifty Options – Aggressive Signals
Description:
Designed for the high-paced world of Nifty options trading, the Smart Money Trap (SMT) – Aggressive indicator detects potential liquidity sweeps and high-probability reversal zones based on institutional-style activity patterns. Built for traders who thrive on precision timing and aggressive entries, SMT++ gives visual cues for possible traps and inducements occurring around key market highs and lows.
Core Benefits:
🧠 Institutional Footprint Detection: Highlights potential areas where retail traders may be trapped, often preceding significant market reversals.
⚡ Aggressive Signal Logic: Offers more frequent entries by relaxing traditional filter constraints—ideal for scalpers and momentum-based strategies.
📊 Volume and RSI Adaptive: Dynamically responds to volume surges and relative strength conditions to strengthen signal credibility.
🔍 Pivot Sweep Visualization: Marks suspected liquidity sweeps near structural highs/lows.
🛎️ Built-In Alerts: Get notified instantly when aggressive bullish or bearish SMT signals trigger.
Recommended For:
Intraday traders focusing on Nifty and BankNifty options
Those familiar with smart money concepts like liquidity grabs and inducement traps
Users preferring more flexible entry logic with optional filters
📌 Note: This indicator uses a proprietary logic blend crafted for real-time responsiveness and has been fine-tuned specifically for Nifty derivatives. While signal methodology remains undisclosed, the output is designed for interpretability and quick execution.
Big Money TrackerOI-Anchored VWAP: Big Money Position Tracker
Understanding VWAP in Big Money Trading
Volume Weighted Average Price (VWAP) is the benchmark most widely used by institutions to assess their execution quality and market timing. It represents the average price a security has traded at throughout the day, weighted by volume.
Why Institutions Care About VWAP:
Portfolio managers often mandate trades to be executed at or better than VWAP
Large orders are broken down and executed around VWAP to minimize market impact
Trading desks use VWAP as a neutral price to assess if they're buying too high or selling too low
Algorithmic trading systems use VWAP as a key reference for order execution
The OI-VWAP Edge
This indicator takes Big Money VWAP trading to the next level by anchoring VWAP calculations to significant Open Interest (OI) changes. This helps identify not just where institutions are trading, but where they're establishing significant positions in the crypto markets.
Key Features:
Dynamic OI-based VWAP anchoring that identifies where large positions are established
Previous VWAP level tracking to monitor historical Big Money interest points
Smart sweep detection system for both current and previous VWAP levels
Standard deviation bands for volatility context
What Makes This Indicator Unique:
Uses aggregated Open Interest data from major exchanges (Binance, BitMEX, Bybit, Kraken)
Automatically detects significant OI increases to anchor VWAP levels
Tracks both current and previous Big Money reference prices
Identifies potential stop runs and liquidity sweeps
Trading Applications:
The indicator helps identify where large positions are established and how they might influence price action:
Defense Zones: When price approaches a VWAP level with high OI, institutions often defend their positions
Liquidation Levels: Previous VWAP levels can become liquidation targets for trapped positions
Stop Runs: Sweep detection helps identify when large players might be hunting stops or creating liquidity
Mean Reversion: SD bands help identify potential reversal zones around Big Money average prices
Best Practices:
Look for price reaction at current VWAP when OI is increasing
Monitor sweeps of previous VWAP levels for potential reversals
Use SD bands to gauge volatility expansion/contraction around Big Money positions
Pay attention to failed sweeps as they often indicate strong position defense
Trading Scenarios:
// Bullish Position Defense:
// 1. High OI increase creates new VWAP (Big Money entry)
// 2. Price tests VWAP from above (retest of entry)
// 3. Failed bearish sweeps = shorts trapped
// 4. Strong defense + trapped shorts = potential squeeze
// Bearish Liquidation:
// 1. Previous VWAP level above current price
// 2. High OI trapped at higher prices
// 3. Price sweeps above then fails = more trapped longs
// 4. Break below = potential cascading liquidations
ZenAlgo - MultiverseThe ZenAlgo – Multiverse indicator provides a multi-timeframe view of Volume-Weighted Average Price (VWAP) levels and their dynamic interaction with price across seven defined timeframes: Daily, Weekly, Monthly, Quarterly, Semi-Annual, and Yearly. The indicator is intended to help traders contextualize price within time-based value areas and examine how price interacts with statistically relevant bands derived from those VWAPs.
VWAP Calculation and Period Structure
At the core, this script computes VWAP levels anchored to six distinct timeframes using volume data and a configurable source (default is HLC3). Each VWAP resets at the start of its corresponding period (e.g., Daily VWAP resets at the beginning of a new day) using timeframe.change() as a detection mechanism. This allows each VWAP level to reflect a clean aggregation of price and volume over its specified period.
VWAP levels are only computed if volume data is present and cumulative volume increases, ensuring logical consistency. If volume is missing or inconsistent, the script terminates execution with an error to prevent invalid outputs.
Band Calculation
Each VWAP is accompanied by one or two optional bands on both sides, calculated using percentage-based offset. Daily VWAP is configurable per user preference to use either standard deviation or a percentage-based offset. These bands provide a dynamic value area that expands or contracts with volatility or proportional price distance, respectively.
The bands help classify price as:
Inside the main band (e.g., between ±1 band): near average value
Inside extended band (e.g., ±2 bands): stretched but not extreme
Beyond extended band: potentially overheated or oversold conditions
This layering creates a multi-zoned map of value perception across timeframes.
Labeling and Historical Tracking
As each new VWAP is computed, it is stored in a bounded array alongside metadata such as label position, line objects, test count, and test state (whether price has interacted with it). Each level is drawn as a dotted horizontal line and labeled with its value and corresponding period (e.g., "D", "W", "M").
Price interaction with a VWAP level (i.e., candle high/low crossing the line) changes the styling of the label and line, marking it as "tested." A cap on how many tested levels are retained (default 10) avoids excessive clutter and resource usage.
These persistent horizontal levels give the trader a visual reference of where value was defined in previous periods and how price has respected or ignored those levels over time.
Summary Tables and Grid
Two visual table overlays are provided:
1. VWAP Summary Table , this table shows:
VWAP values per timeframe
Trend interpretation (rising, falling, stable) relative to price
Ranked order of VWAP values (from highest to lowest)
The order is recalculated each bar to reflect the vertical positioning of each VWAP on the price chart.
2. VWAP Relationship Grid
A grid matrix compares each VWAP and current price against all others. Each cell reflects whether a given source is above, below, or within a tolerance threshold relative to another. Colors (green, red, gray) visually encode the result, with the diagonal marked in black and unused cells disabled.
This matrix helps identify alignment or dissonance among timeframes, allowing users to detect whether shorter-term value is leading or lagging longer-term value.
Price Band Classification
For the Daily VWAP specifically, the script includes an extra classification system. It assigns the current price to a zone (e.g., "At VWAP", "Bear Band", "Above Bull Band 2") based on where the price lies in relation to the VWAP bands. This classification is also used for dynamic coloring and added to the daily label.
Display Controls
The script offers fine-grained controls:
Toggle visibility of each VWAP and band group independently
Adjust the offset of labels from the current bar
Customize band multipliers and color transparency
Limit the number of historical VWAP labels plotted
Position both the summary and grid tables flexibly on screen
These options allow traders to declutter their charts and focus on the most relevant context for their strategy.
How to Interpret and Use
This indicator provides a structured view of market value perception across various timeframes. For example:
When price converges with multiple VWAPs, it may suggest consensus on value.
When price moves away from all VWAPs, it may indicate trending or stretched conditions.
Crosses and retests of VWAPs (especially higher-timeframe ones) can act as areas of interest.
The band-based classification helps identify transitional zones and whether price is situated in an area where value is being accepted or rejected.
The summary tables offer a high-level dashboard of price positioning and value structure, which can assist with top-down analysis, filtering setups, or contextual decision-making.
Added Value Compared to Free Alternatives
Most free VWAP scripts:
Cover only a single timeframe (often daily or session-based)
Lack historical level tracking with tested/retested visualization
Do not support grid-level relationships or multi-timeframe band analysis
Offer limited configuration over how bands are calculated or displayed
This script consolidates multiple value areas in one consistent framework and goes further by tracking historical relevance, providing interaction logs, and organizing data into actionable overlays.
For traders seeking comprehensive value context across intraday and swing horizons, this tool offers persistent and structured data views that are otherwise unavailable through individual, isolated VWAP tools.
Limitations and Disclaimers
The indicator depends on volume data. On instruments with unreliable or synthetic volume (e.g., certain spot forex or CFDs), results may not be meaningful.
Band-based interpretation should not be used as a signal mechanism on its own.
On low timeframes, longer-period VWAPs may appear flat or visually compressed.
As with any analytical tool, interpretation requires trader discretion and should be combined with broader context.
BTC Breakout + EMA + Volume + ATR Filter Indicator
I have tried to incorporate a few common filters in order to produce trade entries. The purpose is to automate trading and have the position flip long/short in order to compound the initial equity.
I have only geared this towards BTC and therefore do not know how it will perform on other assets. All variables are customisable. I have set the defaults to what I prefer based on the backtesting I was able to do on the 5 minute timeframe.
I planned on using this to scalp intraday, however, when I adjusted variables, it seems to filter out a lot of entries and despite being used on the 5 minute timeframe it averages less than a trade everyday.
Please feel free to give feedback. I'm always happy to improve and learn. Thanks
Kozakinvest AI Indicator 2.0In indicator:
✅ Risk and profit display
✅ Volatility analysis
✅ Automatic trend detection (Long/Short)
✅ Trade filter
✅ Accurate volume indicator
Volume-Weighted Price MovementThe Volume-Weighted Price Movement (VWPM) indicator is a powerful technical analysis tool that combines price action with volume to provide deeper insights into market strength. Unlike traditional indicators that focus solely on price or volume in isolation, VWPM analyzes how these forces work together to drive market momentum.
How It Works
The VWPM indicator tracks two primary components:
Bullish Movement (green line): Measures the upward price movement weighted by volume. When price closes above the open, this component calculates how much buying pressure exists by multiplying the price change (close - open) by the volume of that period.
Bearish Movement (red line): Measures the downward price movement weighted by volume. When price closes below the open, this component calculates how much selling pressure exists by multiplying the price change (open - close) by the volume of that period.
Bull-Bear Difference (lime/orange line): Shows the net momentum by subtracting bearish movement from bullish movement, providing an at-a-glance view of which force is dominant.
The VWPM integrates volume data to identify whether price movements are backed by significant participation. A large price move with low volume carries less weight than the same move with high volume, providing a more accurate reflection of market strength.
A shorter lookback period makes the indicator more responsive to recent price action, while a longer period smooths out market noise for trend identification.
Interpretation
Bullish Signals
When the green line (bull movement) rises and stays above the red line
When the Bull-Bear Difference line crosses above zero and maintains positive momentum
Divergence between price making lower lows but the bull line making higher lows (hidden strength)
Bearish Signals
When the red line (bear movement) rises and stays above the green line
When the Bull-Bear Difference line crosses below zero and maintains negative momentum
Divergence between price making higher highs but the bull line making lower highs (hidden weakness)
Multi VWAPsMulti VWAPs Inspired by Biran Shannon and his book:
"MAXIMUM TRADING GAINS WITH ANCHORED VWAP . The Perfect Combination of Price, Time & Volume."
(ISBN 9798986868004)
A comprehensive VWAP (Volume Weighted Average Price) indicator that combines multiple timeframes and sessions in one view. Perfect for day trading and swing trading across different markets.
Features:
• Multiple VWAP Timeframes:
- Daily VWAP
- Weekly VWAP
- Monthly VWAP
- Quarterly VWAP
- Yearly VWAP
• Session-specific VWAPs:
- London Session (3:00 AM - 11:30 AM NY time)
- New York Session (9:30 AM - 4:00 PM NY time)
• Additional Indicators:
- Midnight Price Line (Previous day's closing price)
- 5-Day Moving Average
- 50-Day Moving Average
• Customization Options:
- Toggle individual VWAPs and indicators
- Customize colors for each component
- Adjustable label positioning
- MA smoothing settings
- Option to show/hide previous day's midnight price
• Smart Features:
- Auto-adjusting calculations based on timeframe
- Clear session boundaries
- Optimized for all chart timeframes
- Clean label system
Perfect for:
• Day traders tracking multiple timeframe momentum
• Swing traders using longer-term VWAPs
• Session traders focusing on London/NY hours
• Multi-timeframe analysis
• Price action trading with VWAP support/resistance
This indicator combines essential trading tools in one clean interface, helping you make informed decisions without cluttering your chart.
Tradecademy CandlesThe script highlights high-volume candles.
Upward candles with significantly increased volume = green
Upward candles with moderately increased volume = blue
Downward candles with significantly increased volume = red
Downward candles with moderately increased volume = pink
Capital Flow StrengthCapital Flow Strength Indicator Guide
This is a comprehensive technical indicator that measures capital flow into or out of an asset, combined with volume analysis. Here's how to use it effectively:
Basic Understanding
The indicator shows capital flow strength on a scale from -100 to +100
Positive values (green) indicate money flowing into the asset
Negative values (red) indicate money flowing out
The blue/gray volume bars show relative volume compared to recent average
Key Components
Capital Flow Line
Green line above zero: Buying pressure dominates
Red line below zero: Selling pressure dominates
Crossing zero: Potential shift in market sentiment
Reference Lines
0 line: Neutral balance between buyers and sellers
+50 line: Strong buying pressure
-50 line: Strong selling pressure
Volume Strength Bars
Blue bars: Volume exceeding threshold (currently 1.5x average)
Gray bars: Normal volume levels
Taller bars: Higher relative volume
Trading Applications
Entry Signals
Strong buying setup: Capital flow above +50 with blue volume bars
Strong selling setup: Capital flow below -50 with blue volume bars
Confirmation Tool
Use with price action and other indicators for confirmation
Strong readings are more reliable when volume is higher than average
Divergence Analysis
Bullish divergence: Price making lower lows but capital flow making higher lows
Bearish divergence: Price making higher highs but capital flow making lower highs
Customization Options
Length (14): Adjust the calculation period
Volume Threshold (1.5): Modify sensitivity to volume spikes
Alert Conditions
The indicator has two built-in alerts:
"Strong Capital Inflow" - triggers when flow > 50 with high volume
"Strong Capital Outflow" - triggers when flow < -50 with high volume
These alerts can help you identify significant buying or selling pressure as it emerges.
OrangeCandle Multi-Wave Trend Analyzer🍊 OrangeCandle Multi-Wave Trend Analyzer - OrangeCandle TripleWave
Your all-in-one visual helper for spotting market momentum, reversals, and volume-driven trends.
This indicator blends three trusted tools into one cozy setup:
Elliott Wave Oscillator (EWO) shows whether momentum is leaning bullish or bearish — with color-coded bars for easy viewing.
WaveTrend Oscillator helps you catch those classic overbought/oversold moments, along with crossover signals that hint at potential reversals.
Volume-Supported Linear Regression Trend gives you a sense of buying vs. selling pressure, using volume-weighted trend slopes for both short- and long-term outlooks.
It’s like having a weather forecast for the markets: clean, colorful, and surprisingly intuitive once you get the hang of it. Whether you're day trading or swing trading, this script aims to keep your chart informative without the clutter. Just plug it in, take a look, and let the waves guide you.
CVD 11192The Cumulative Volume Delta (CVD) is a volume-based technical indicator that measures the net buying or selling pressure in a market by tracking the relationship between price movement and volume. Unlike traditional volume indicators that only show the total trading activity, CVD provides insight into whether volume is predominantly buying or selling volume.
Follow-Through Day IndicatorO'Neil Follow Through Day Indicator. Tracks start of a bottom and each ensuing FTDs
Volume candle intraday 90% valid - with alertThe candle with the highest volume of the day and that creates a new daily high or low.
- Only usable on M15 timeframes;
- You can set a range of bars (from the beginning of the day) to ignore;
- "90% valid" means a candle with volume greater than 90% of the last candle with the highest volume of the day (in the script you can change the percentage of valid volumes to define the candle volume, replacing all the "90" with the desired percentage);
- Long volumes are compared to longs and short volumes are compared to shorts;
- Script created with ChatGpt;
The psychology behind this pattern is the following: on the daily high/low, a lot of volumes will enter in a short time, either by absorption: buyers or sellers enter en masse following the trend when it is too late; or by exhaustion: buyers or sellers who entered en masse and late have no more strength to continue pushing the price, they cause a volume peak to buy/sell as much as they could, then their enemies take over forming a high/low).
Happy trading everyone! :)
###################################################################################
La candela con il volume più alto della giornata e che crea un nuovo massimo o minimo giornaliero.
- Utilizzabile solo su timeframe M15;
- Si può impostare un range di barre(da inizio giornata) da ignorare;
- "90% valida" sta per candela con volume superiore del 90% dell'ultima candela con volume più alto della giornata(nello script si può cambiare percentuale di volumi validi per definire candela volume, sostituendo tutti i "90" con la percentuale desiderata);
- I volumi long vengono confrontati con i long e i volumi short con gli short;
- Script creato con ChatGpt;
La psicologia dietro questo pattern è la seguente: sul massimo/minimo giornaliero entreranno tanti volumi in breve tempo, sia per assorbimento: buyers o sellers entrano in massa seguendo il trend quando è troppo tardi; sia per esaurimento: buyers o sellers entrati in massa e in ritardo non hanno più forza per continuare a spingere il prezzo, causano un picco volumetrico per comprare/vendere più che potevano, quindi i loro nemici prendono il sopravvento formando un massimo/minimo).
Buon trading a tutti! :)
VWAP Indicator Channel | Multi Timeframe by Osbrah📊 Multi-Timeframe VWAP Indicator (Session / Weekly / Monthly)
This powerful indicator plots the Volume Weighted Average Price (VWAP) across multiple timeframes: intraday session, weekly, and monthly. It's designed to give traders a clear understanding of the market’s fair value over different horizons.
Key Features:
* Display Session VWAP (resets daily)
* Enable Weekly and Monthly VWAPs for broader market context
* Customize colors, styles, and visibility for each VWAP
* Toggle between standard VWAP or anchored to session opens
Use Cases:
* Identify value zones where price tends to gravitate
* Spot institutional levels of interest and potential reversal points
* Align entries with VWAP bounces or breaks
* Combine with EMAs or price action for high-probability setups
Perfect for day traders, swing traders, and institutional-style strategies, this VWAP tool helps you stay aligned with volume-based price dynamics across all market phases.
VOID Directional Spike MarkerThis indicator highlights significant directional moves on the $VOID chart (NYSE USI:UVOL − DERIBIT:DVOL ) using simple visual cues:
🔼 Green up arrows when the candle closes significantly higher than it opens
🔽 Red down arrows when the candle closes significantly lower than it opens
Threshold is fully customizable (default: 15,000,000)
Ideal for spotting explosive internal shifts on the 5-minute chart during key market moments
Alerts included for both up and down spikes
Use this to track aggressive buying or selling pressure across NYSE internals and time your entries on NQ, ES, or YM with stronger conviction.
Zen FDAX Session📝 Description
OVERVIEW
The Zen FDAX Session indicator highlights periods outside the regular trading hours of the FDAX (DAX Futures) on the Xetra exchange. It shades the chart background during non-trading hours, aiding traders in distinguishing active market periods from inactive ones.
FUNCTIONALITY
Customizable Trading Hours: Users can define the session's start and end times in UTC, allowing flexibility to match personal trading schedules or account for daylight saving changes.
Visual Clarity: The indicator applies a subtle background color to non-trading hours, ensuring clear demarcation without obscuring price data.
Time Zone Awareness: Designed with UTC inputs to maintain consistency across different user time zones.
USAGE
Add the Indicator: Apply the "Zen FDAX Session" indicator to your chart.
Set Trading Hours: Input your desired session start and end times in UTC.
Interpret the Shading: Areas with shaded backgrounds represent times outside your defined trading session.
Note: This indicator does not generate buy/sell signals but serves as a visual aid to identify trading sessions.