Volume with High/Low ColoringThe "Volume with High/Low Coloring" indicator is designed to help traders visually differentiate between high, low, and normal volume bars relative to recent historical averages. By applying dynamic color coding and customizable thresholds, this indicator enhances volume analysis and improves your ability to spot key moments of accumulation, distribution, or market inactivity.
High Volume: A bar is marked as high volume when it exceeds the average by a customizable multiplier (default is 1.5×) .
Low Volume: A bar is considered low volume when it falls below the average by another multiplier (default is 0.5×) .
Normal Volume: All bars that fall between the high and low thresholds.
Each category is displayed in a different user-selectable color, providing instant visual feedback for volume dynamics.
Customizable Colors:
High Volume: Light Green (default: semi-transparent green)
Low Volume: Light Blue (default: semi-transparent blue)
Normal Volume: Yellow (default: semi-transparent yellow)
Average Volume Line: Gray (optional reference line)
"Volume" için komut dosyalarını ara
Volume with Sessions, SMA, and ATR Pine Script creates a custom volume indicator with several features, including:
SMA of Volume: It calculates the simple moving average (SMA) of the volume, which helps identify trends and determine if the current volume is above or below the average.
ATR (Average True Range): It calculates the ATR, which measures market volatility over a defined period.
Bullish/Bearish Volume Coloring: The script colors the volume bars depending on whether the price is moving up (bullish) or down (bearish), and whether the volume is above or below the SMA of volume.
Session Highlighting: It defines two major trading sessions:
NYSE (New York Stock Exchange) session from 9:30 AM to 4:00 PM Eastern Time.
LSE (London Stock Exchange) session from 8:00 AM to 4:30 PM GMT. These sessions are highlighted with background colors for easy identification.
Plotting: The volume is plotted as a histogram with varying colors depending on price movement and volume relative to its SMA. The ATR is also plotted as a purple line, and the SMA of volume is displayed as an orange line.
Background Colors: Background colors are applied during the NYSE and LSE sessions to visually differentiate between these trading periods.
Here's a breakdown of each section:
Key Inputs:
smaLength and atrLength: User-defined values for the lengths of the SMA and ATR calculations.
Main Calculations:
smaVolume: The SMA of the volume over the user-defined length (smaLength).
atrValue: The Average True Range over the user-defined length (atrLength).
Color Logic for Volume Bars:
If the current close is higher than the previous close, the volume is considered bullish, and the bar is colored green. If the volume is above the SMA, it’s a darker green; otherwise, it’s a lighter shade.
If the current close is lower than the previous close, the volume is considered bearish, and the bar is colored red. If the volume is above the SMA, it’s a darker red; otherwise, it’s a lighter red.
Plotting:
The script plots the volume as a histogram with dynamic coloring.
The SMA of the volume is plotted as a line.
ATR is plotted as a purple line for reference.
Background Color Highlighting:
The background is colored green during the NYSE session and blue during the LSE session.
Volume Delta with Bollinger Bands [EMA]TL;DR
This indicator displays a “Volume Delta” candle chart based on a lower timeframe approximation of up vs. down volume. Bollinger Bands (using an EMA and a configurable standard deviation multiplier) highlight when Volume Delta exceeds typical volatility thresholds. Green bars will darken when Volume Delta is above the upper Bollinger band, and red bars will darken when Volume Delta is below the lower Bollinger band. You can optionally include wicks in the Bollinger calculations. Note : TradingView uses tick-based volume data, so these values may not precisely match true market orders.
What Is Volume Delta ?
• Volume Delta is a metric that identifies buying vs. selling activity in a market by distinguishing between orders transacting at the ask (buy volume) and orders transacting at the bid (sell volume).
• A positive Volume Delta indicates more buy volume during a bar, while a negative Volume Delta indicates more sell volume.
How TradingView Calculates Volume Delta
• TradingView relies on tick data to approximate up/down volume. This may not perfectly capture true order-flow distribution, particularly on higher timeframes or illiquid symbols.
• While it can provide useful insights into volume flow, keep in mind the underlying data’s limitations.
Key Features of This Indicator
1. Automatic or Custom Lower Timeframe Data
• The script can automatically select a lower timeframe for Volume Delta, or you can manually specify one in the settings.
2. Bollinger Bands on Volume Delta
• Uses an EMA of the Volume Delta (or a wick-based average) and calculates a standard deviation.
• The upper and lower bands highlight when activity deviates from typical volatility.
3. Configurable Wick Inclusion
• Decide whether to use only the “close” (lastVolume) of the Volume Delta bar or the average of its wicks ((maxVolume + minVolume) / 2) for Bollinger calculations.
4. Dynamic Bar Colors
• Positive Volume Delta bars turn dark green if they exceed the upper Bollinger band, otherwise lighter green .
• Negative Volume Delta bars turn dark red if they fall below the lower Bollinger band, otherwise lighter red .
How To Use
1. Add the Indicator to Your Chart
• Apply it to any symbol and timeframe in TradingView.
• Configure the lower timeframe for Volume Delta if desired.
2. Adjust Bollinger Settings
• Bollinger Length defines the EMA and standard deviation period.
• Bollinger Multiplier sets how far the bands lie from the EMA.
3. Choose Whether To Use Wicks
• Toggle to use the average of high/low for a potentially more volatile reading.
• Turn it off to rely solely on the Volume Delta “close.”
4. Interpret the Signals
• Dark Green Above the Upper Band : Suggests strong buying pressure above normal.
• Lighter Green : Positive but within typical volatility bounds.
• Dark Red Below the Lower Band : Suggests strong selling pressure below normal.
• Lighter Red : Negative but within typical volatility.
Important Caveats
• TradingView Volume Data : Tick-based and aggregated data may not reflect actual order-flow precisely.
• Context Matters : Combine Volume Delta with other forms of analysis (price action, support/resistance, etc.) to form a more comprehensive strategy.
Volume-based S/R Levels
█ OVERVIEW
After my last indicator "Order Block Finder" was unexpectedly popular with the TradingView community, I decided to publish another experimental indicator which again tries to identify "areas of interest"
Idea:
Often candles with long wicks represent strong buying & selling pressure, especially when they are combined with extraordinary volume. Especially interesting to me are the lower wicks on red candles and the upper wicks of green candles. These wicks can potentially indicate "areas of interest" by the bigger players in the market and price may interact with these levels again in the future.
This indicator tries to identify these "high volume / long wick" candles and paints a line of either Support or Resistance from the wick into the future.
█ CALCULATION LOGIC
Extraordinary Volume is identified by first calculating thresholds based on a volume Moving Average and Standard Deviations. Two Standard Deviation Values are entered to identify HIGH and EXTREME threshold levels. The current volume is classified by comparing the volume against these thresholds.
The following inputs can be made:
- Volume MA Length
- Standard Deviation Length
- Threshold for HIGH Volume (Number of StdDev)
- Threshold for EXTREME Volume (Number of StdDev)
Another entry parameter can be used to specify the Minimum Wick Length (in % of the candle body value) which identifies a "relevant" candle. If this value is set to 0, then there is no limit and all high volume candles are considered.
The identified Support/Resistance levels are shown as lines on the chart. The parameter "Length of lines (hours)" can be used to set the length of the lines (always in hours). Depending on the timeframe, this needs to be adjusted.
(I know that this can be solved more elegantly in pine, but it was just not important to me. As always everyone is free to copy the code and make improvements. Just give me a mention when you do.)
█ DISPLAY OPTIONS
Different display options are available in the settings:
- Display Support/Resistance: Select if you want to see only Support or Resistance lines - or both
- Display High/Extreme Volume: Select if you only want to see the Extreme Value Candles or the High Value Candles or both
- Display WICK / WICK Range: Select if you only want one line at the extreme value (High/Low) of the wick - or if you want to see a range (three lines - one at the top, one at the bottom and one in the middle of the wick)
- Show Signal Triangles?: This gives the option to show little triangles on all the identified candles
█ DISCLAIMER
This is an experimental indicator and I do not know if my theory works in real life. So treat this not as financial advise, but purely for entertainment and educational purposes.
As mentioned above, I publish this code open so that everyone can re-use it or hopefully even improve it.
Let me know if you have any ideas for improvement and if it is within my coding capabilities (which to be honest are quite limited), I will try to accomodate it.
Have fun.
SIB Fuel moves Car, Volume moves PriceVolume is important as fuel for a vehicle, without fuel a vehicle wouldn't move. We strongly believe a stock required volumes momentum in order to take-off the rallies.
This indicator helps to spot when the "Big Player" comes into the market, neither the collection stage nor the rally take-off stage.
No single indicator will work effectively by itself. Hence, we developed this unique "Heat Volume" indicator to compliment the candlestick analysis.
[EXPLANATION}
GREEN VOLUME BAR: Volume greater than the previous day volume.
GRAY VOLUME BAR: Volume lesser than the previous day volume.
RED VOLUME BAR: Presence of "Big Player" in the market.
YELLOW-BACKGROUND: Strong & active market trade sentiment in Daily timeframe.
GREEN-BACKGROUND: Strong & active market trade sentiment in Weekly timeframe.
WHITE-BACKGROUND: Strong & active market trade sentiment in Monthly timeframe.
ORANGE-BACKGROUND: Strong & active market trade sentiment in Hourly & Minutes timeframe.
Watch on the "Red" volume bar on the critical point. E.g. trend reversal, gap-up, resistance/price/box breakout.
This signaled the "Big Players" in the trade to take-off the rally.
Watch on the "Color-background" signaled of the strong & active market trade sentiment in the respective timeframe.
When "No-color Background" (Black) Stand aside when market trade sentiment is low and quiet.
Disclaimer:-
-This indicator is provided as best as it's an effort for the purpose of studying in the Technical Analysis perspective.
-This is not and never a trading suggestion of buy/sell call or decision under any circumstances.
-This indicator is for the member's and subscriber's circulation only. *If you are interested in the indicator, kindly contact us for the Free-Trial.
-Good luck & Happy Charting!
Volume Agregado Perp + Spot BTC only🔍 Aggregated Volume — Spot, Perpetual, or Both (with Bands & Alerts)
Overview:
This indicator aggregates volume data from multiple exchanges (Spot and Perpetual) into a single unified chart. It calculates the simple moving average (SMA) and standard deviation (STDEV) over the aggregated volume, and plots dynamic volume bands at customizable deviation levels.
Includes an option to display only Spot, only Perpetual, or both combined, and provides automatic alerts when volume breaks above or below each band level.
📊 How It Works
Fetches volume from top exchanges using request.security() (e.g., Binance, Bybit, Coinbase, OKX, Kraken, Bitget).
To avoid distortion caused by disproportionally large Perpetual contract volumes, perp data is normalized by dividing by 100. This brings it closer to Spot volume scale.
Computes SMA and STDEV of the aggregated volume, and plots upper/lower bands based on 1x, 2x, and 3x standard deviations.
Issues alerts when the current volume exceeds or drops below the defined thresholds.
🧠 Interpretation
Above Upper Bands (Lv1/Lv2/Lv3): Signals volume spikes, which can indicate breakouts, momentum ignition, or exhaustion moves depending on context. Higher levels (Lv3) suggest more extreme events.
Below Lower Bands: Indicates low activity, potential consolidation, or market pause.
Best used in combination with price structure, VWAP, order blocks, or volume delta/OI for deeper context.
⚙️ Parameters
SMA/STDEV Period – Default: 20 candles.
Band Levels (1/2/3 STDEV) – Fully configurable multipliers.
Volume Mode:
Spot – Only traditional spot exchange volume.
Perpetual – Only perpetual contracts (normalized).
Both – Combines both (default).
volume profile ranking indicator📌 Introduction
This script implements a volume profile ranking indicato for TradingView. It is designed to visualize the distribution of traded volume over price levels within a defined historical window. Unlike TradingView’s built-in Volume Profile, this script gives full customization of the profile drawing logic, binning, color gradient, and the ability to anchor the profile to a specific date.
⚙️ How It Works (Logic)
1. Inputs
➤POC Lookback Days (lookback): Defines how many bars (days) to look back from a selected point to calculate the volume distribution.
➤Bin Count (bin_count): Determines how many price bins (horizontal levels) the price range will be divided into.
➤Use Custom Lookback Date (useCustomDate): Enables/disables manually selecting a backtest start date.
➤Custom Lookback Date (customDate): When enabled, the profile will calculate volume based on this date instead of the most recent bar.
2. Target Bar Determination
➤If a custom date is selected, the script searches for the bar closest to that date within 1000 bars.
➤If not, it defaults to the latest bar (bar_index).
➤The profile is drawn only when the current bar is close to the target bar (within ±2 bars), to avoid unnecessary recalculations and performance issues.
3. Volume Binning
➤The price range over the lookback window is divided into bin_count segments.
➤For each bar within the lookback window, its volume is added to the appropriate bin based on price.
➤If the price falls outside the expected range, it is clamped to the first or last bin.
4. Ranking and Sorting
➤A bubble sort ranks each bin by total volume.
➤The most active bin (POC, or Point of Control) is highlighted with a thicker bar.
5. Rendering
➤Horizontal bars (line.new) represent volume intensity in each price bin.
➤Each bar is color-coded by volume heat: more volume = more intense color.
➤Labels (label.new) show:
➤Total volume
➤Rank
➤Percentage of total volume
➤Price range of the bin
🧑💻 How to Use
1. Add the Script to Your Chart
➤Copy the code into TradingView’s Pine Script editor and add it to your chart.
2. Set Lookback Period
➤Default is 252 bars (about one year for daily charts), but can be changed via the input.
3. (Optional) Use Custom Date
●Toggle "Use Custom Lookback Date" to true.
➤Pick a date in the "Custom Lookback Date" input to anchor the profile.
4. Analyze the Volume Distribution
➤The longest (thickest) red/orange bar represents the Point of Control (POC) — the price with the most volume traded.
➤Other bars show volume distribution across price.
➤Labels display useful metrics to evaluate areas of high/low interest.
✅ Features
🔶 Customizable anchor point (custom date).
🔶Adjustable bin count and lookback length.
🔶 Clear visualization with heatmap coloring.
🔶 Lightweight and performance-optimized (especially with the shouldDrawProfile filter)
Pso Volume Profile # Volume Profile with Dynamic Support and Resistance
## Overview
This Pine Script indicator for TradingView creates a comprehensive volume profile display with automatic support and resistance levels based on significant volume nodes. The indicator analyzes price action and volume data to identify key levels where trading activity has been concentrated, helping traders identify potential reversal or continuation zones.
## Key Features
### Volume Profile Analysis
- Displays a horizontal volume profile on the right side of the chart
- Divides volume into bid (buying) and ask (selling) components
- Color-codes bid and ask volumes differently for easy identification
- Customizable profile width, opacity, and placement
### Dynamic Support and Resistance Detection
- Automatically identifies significant price levels based on volume concentration
- Uses an adjustable percentile threshold to filter for the most important levels
- Color-codes support/resistance lines based on bid/ask dominance:
- Red lines: Bid-dominant levels (more buying pressure)
- Green lines: Ask-dominant levels (more selling pressure)
- Extends lines across the chart for clear visualization
### Customization Options
- Adjustable lookback period for volume analysis
- Configurable number of price divisions (bars)
- User-selectable volume percentile threshold (50-100%)
- Customizable colors for all elements
- Adjustable line length and position
## How It Works
1. The indicator divides the price range into a specified number of horizontal zones
2. It analyzes historical price and volume data within the lookback period
3. For each price zone, it calculates the total volume and separates bid/ask components
4. It identifies zones with volume exceeding the user-defined percentile threshold
5. It draws color-coded horizontal lines at these significant levels, extending across the chart
6. Lines are colored based on whether buying or selling was dominant at each level
## Usage Guidelines
- Higher percentile values (80-95%) will show fewer, but more significant levels
- Lower values (50-70%) will show more potential support/resistance zones
- Red lines often represent potential support levels (buyer-dominated)
- Green lines often represent potential resistance levels (seller-dominated)
- Areas where multiple lines cluster indicate highly significant zones
## Applications
- Identifying key price levels for entry and exit points
- Recognizing potential reversal zones
- Setting strategic stop-loss and take-profit levels
- Confirming support/resistance levels from other technical analysis methods
- Understanding the volume distribution and market structure
This indicator combines volume profile analysis with automatic support/resistance detection, providing traders with a powerful tool to identify significant price levels based on actual trading activity rather than just price patterns.
Volume By FOBOSThis indicator visualizes the aggregated trading volume of a selected cryptocurrency asset across multiple leading exchanges. It consolidates volume data into a single, easy-to-read chart.
Indicator Features:
Volume Aggregation: Displays cumulative trading volume from user-defined exchanges (1 to 40 exchanges).
Dynamic Visualization: Volume columns colored dynamically based on price direction (green for rising prices, red for falling).
24-hour Average Volume: Optional line displaying the average trading volume over the past 24 hours, facilitating quick volume comparisons.
Automated Volume Formatting: Clearly presents volume figures with automatic formatting for readability (in thousands or millions).
Multi-Timeframe Support: Automatically adapts calculations to the current chart timeframe for accurate average volume computation.
User Settings:
Adjustable number of exchanges (1 to 40).
Toggle visibility of the 24-hour average volume line.
Note:
This indicator is designed solely for informational purposes and does not provide trade recommendations or signals.
Volume PACustom volume histogram that visually represents trading volume in relation to the price action of the current bar. The histogram is colored based on whether the current bar is bullish or bearish, and it greys out when the current volume is lower than the volumes of the previous specified number of bars.
Customizable Bar Count: Users can specify how many previous bars to compare against for determining if the current volume is lower.
Default color-coded histogram:
Green: Indicates a bullish bar (closing price is greater than opening price).
Red: Indicates a bearish bar (closing price is less than opening price).
Grey: Indicates that the current volume is lower than the volumes of the previous specified number of bars.
Volume+This volume indicator uses a long WMA to establish an average volume and calculates the standard deviation based on that average. Each deviation level from 1 to 3 is also plotted with the bar color gradually increasing in intensity when more than one standard deviation is exceeded.
Volume Trailing IntegralAbout
This indicator is an attempt to quantify the volume of buying vs. selling in the last N bars. The hypothesis is that on upticks, there was more bull volume than bull volume, and vice versa. "Trailing Integral" refers to the fact that this indicator shows the sum of bear and bull volume in the last N bars, which is akin to an integral of money flow.
Method
To compute the bear vs. bull volume on a given day, the Z score of a price change is mapped to the volume. For example, for upticks, a highly negative Z score results in a ~50/50 bull/bear volume, while a highly positive Z score results in a ~(Max weighting)/(1-Max weighting) bull/bear volume (if max weighting is 0.8, then a large uptick results in 0.8V bull and 0.2V bear volume). Volume is then summed over the last N bars, where N is the length. EMAs are applied at various points to smooth things. Stdevs are calculated for upticks and downticks independently.
Usage
I like to use this like an enhanced OBV, with a smarter bias towards bull/bear ticks. Look first at the total volume and then look for follow through by bear/bull volume. For example, a rally on low volume, with bias towards bear volume is sellable; a bottom with more bull volume on consolidation is buyable, etc.
Volume Buy/Sell SplitVisually decompose each bar’s total volume into estimated “buy” and “sell” components, so you can instantly see which side—buyers or sellers—dominated on each candle.
Key Features
Total Volume Base
A solid grey histogram shows the absolute volume on every bar.
Buy vs. Sell Split
Buying Volume is calculated as
```volume × (close – low) / (high – low)```
Selling Volume is calculated as
```volume × (high – close) / (high – low)```
These estimates assume that when price closes near the high, more of that bar’s volume was “aggressive buying,” and vice versa.
Dynamic Stacking
The larger of the two components (buying vs. selling) is plotted directly on top of the grey base, in blue (if buying dominates) or yellow (if selling dominates).
The smaller component is plotted above that, in the complementary color, so the full column still represents total volume.
30‑Bar Average Marker
A thin purple line appears at the 30‑bar simple moving average of volume—but only on bars where volume exceeds that average—helping you spot volume spikes at a glance.
How to Interpret
Tall grey columns = high total volume bars.
Blue‑tinted sections = buying pressure; yellow‑tinted sections = selling pressure.
When the blue (buy) portion is larger, buyers had the upper hand; a larger yellow portion indicates sellers dominated.
Purple markers highlight bars where volume is above its 30‑period average, drawing your eye to unusually active sessions.
Usage Notes
Overlay: false (panel below price)
No external inputs to adjust—plug and play.
Ideal for spotting divergences between price and volume aggression, confirming breakouts, or identifying potential exhaustion moves when one side’s volume spikes.
Add this script to your charts to gain clear, color‑coded insights into buying vs. selling activity on every candle.
Volume Spike 20%+This indicator highlights volume spikes that exceed the 20% threshold above the 20-period simple moving average of volume.
🔹 Gray bars: Normal volume
🔹 Green bars: Volume is at least 20% higher than the 20-period average
🔸 Orange line: The 20-period volume moving average
Use case:
This tool helps traders quickly spot abnormal trading activity or increased interest in a stock, which may precede a price breakout or reversal.
Simple, clean, and effective – perfect for momentum, breakout, or volume-based strategies.
Volume Pulse: Mobile-Optimized Candle Volume Viewer✨ Description ✨
Sleek. Simple. Sexy.
A modern, minimal volume tracker designed for mobile and desktop users who want clean data without clutter.
✅ Displays the volume of the last N candles with intuitive green/red background colors based on candle direction (bullish/bearish).
✅ Automatically converts numbers into K/M/B format for quick understanding.
✅ Comes with a text size setting, so it's fully readable whether you're on a phone or desktop.
Perfect for traders who want to:
Spot volume spikes at a glance
Quickly compare recent candle volumes
Stay mobile-friendly with a visual style that actually fits
Volume Patterns [SS]Hey everyone,
Been a while since doing anything with Pinescript.
Here is my iteration of a Volume Pattern identification, inspired by Bulkowski's work on patterns and volume.
The indicator aims to identify the 4 major types of volume patterns, these are:
Bullish Breakout Volume
Bearish Breakout Volume
Inverted Domes
Domes
Classification
These patterns are all assigned to a classification based on theory. For example, dome volume is usually bearish, inverted dome is usually bullish, etc. etc. However, in order to accommodate changing sentiments and volatility, I have coded logic into the indicator to assess for the actual sentiment associated with these patterns itself.
The indicator calculates the average return associated with each pattern, scaling the data into a percent return. It then has the ability to re-scale the target using the close price associated with the pattern at the time of pattern signaling, to calculate the target price and plot the target on the chart for you.
Additionally, it provides you with the following:
Labels to signal when a pattern has happened
A table that shows you the average returns associated with the 4 major patterns
Target lines with labels that visually show you the target price associated with the pattern, as well as which pattern they are associated with.
All of these things can be toggled on or off depending on your preference.
Customizing the indicator
In addition to being able to toggle the visuals on or off depending on what you want to see or not see, there are some minor customization abilities in terms of training the indicator to recognize the patterns and predict the TP.
The first one is the Training length
In the settings, you will see "Train", and the default is 500. This is the amount the indicator is looking back in history to learn the patterns and returns associated with them. This 500 is appropriate in most cases and on most timeframes.
Lastly, the Lookforward Length
The look forward length represents the number of bars forward you want to determine the returns for. It is defaulted to 10, but you can modify it.
So, if you are on the 1-Minute chart and have the look forward set to 10, then once a signal happens, the target price is calculated based on 10 minutes from the time of signal. You can increase this or decrease this based on your preference.
Longer look forwards can be good for swingers but should be used on the larger timeframes, shorter are good for scalpers but should be used on the shorter timeframes.
The indicator's use is incredibly simple, you'll pick it up in no time!
Hope you enjoy it and as always, safe trades!
Just an FYI for those who may have questions:
The indicator is open source. This means you are free to take it and modify it as you wish. You do not need to ask me.
Please read the description carefully, as 100% of questions I am asked about indicators are covered in the description. ;-)
Have a good one guys and gals! 🚀🚀🚀
Volume Standard Deviation Alert GusPurpose
The script detects and alerts traders when the volume of a trading asset significantly exceeds a calculated threshold based on the standard deviation of volume over a specified lookback period. It optionally filters these alerts based on whether the price action is bullish or bearish.
Key Components
Inputs
lookback (default: 20)
The number of bars to consider when calculating the moving average and standard deviation of volume.
stdDevFactor (default: 2.0)
The multiplier for the standard deviation to determine the threshold for a volume spike.
alertOnClose (default: true)
Determines whether alerts should only be triggered after the bar has closed.
checkBullBear (default: false)
Enables filtering of alerts based on the bullishness or bearishness of the bar.
Calculations
volSMA
The simple moving average (SMA) of the volume over the lookback period.
volStd
The standard deviation of the volume over the lookback period.
threshold
The alert threshold is calculated as:
Threshold
=
volSMA
+
(
stdDevFactor
×
volStd
)
Threshold=volSMA+(stdDevFactor×volStd)
isBullish & isBearish
Determines whether the current bar is bullish (close > open) or bearish (close < open).
volumeSpikeCondition
A condition that triggers when the current volume exceeds the calculated threshold.
bullishCondition & bearishCondition
Refines the spike condition by requiring the bar to be bullish or bearish when checkBullBear is enabled.
finalCondition
The ultimate alert condition based on the user’s preference for bullish/bearish filtering.
finalTrigger
Ensures the alert only triggers at bar close if alertOnClose is set to true.
Visualization
Plots the SMA of the volume (volSMA) and the threshold line (threshold), helping traders visually understand the conditions.
Histograms the current volume and colors the bars:
Red: Volume exceeds the threshold.
Blue: Volume is below the threshold.
Alerts
The script generates an alert message when the finalTrigger condition is met:
"Bullish Volume Spike!" if the bar is bullish.
"Bearish Volume Spike!" if the bar is bearish.
"High Volume Spike!" if no bull/bear filter is applied.
Alerts are sent using alert() with the message and set to trigger once per bar close.
Usage
Traders can use this script to identify unusual volume activity, which often precedes significant price movements.
Customizability allows traders to tune the lookback period, standard deviation multiplier, and whether to filter for bullish/bearish spikes.
Visual and audible cues help in identifying important market events in real time.
This indicator is particularly useful for spotting market breakouts or breakdowns driven by high trading activity.
Volume TableDisplays a table of volume and short volume.
When chart timeframe is intraday or daily, table will show daily values. If chart is on weekly, table will show weekly values. If chart is on monthly, table will show monthly values.
If a ticker doesn’t have short volume, uncheck “Show Short Volume” in settings for table to work.
Table rows:
Date row (Day/Week/Month) text:
Green when close > open
Red when close < open
White when close equals open
Volume (Vol) row text:
Default: Black
If “Check for inside candles” is checked, when the high and low (or open and close if “Use H/L not O/C” is unchecked) is within the previous time period (day/week/month), text will be white
Volume (Vol) row background:
Default: Gray
Colored based on values and colors set in settings:
>= Very High Volume
>= High Volume
<= Low Volume
<= Very Low Volume
Short Volume (SV) row cell background color:
SV < “Lower Threshold”: Black
“Lower Threshold” <= SV < “Low Threshold”: Gray
“Low Threshold” < SV < First “Short Volume Color Increment”: Silver
“Short Volume Color Increment's (5 million increments by default): purple, blue, teal, green, lime, yellow, orange, red, maroon, white
Short Volume text color is just colored to be visible based on SV cell background.
There are labels that can be displayed to look back at data further back than the table goes (recommend being on the daily timeframe).
Volume Z-Score Bar ColorA simple script help you identify significant upticks in volume for a particular candle.
Using the standard z-score calculation you can change the bar color based on the user selected standard deviation range.
Calculation
z = (x - μ) / σ, where:
z: is the z-score
x: is the current volume
μ: is the mean volume
σ: is the standard deviation
Options include setting the bottom and top end of the deviation range. This will allow you to see a moderated uptick in volume as well as an extreme uptick. You can also choose the colors for the moderate bull/bear volume and extreme bull/bear volume.
Volume Analysis Table MTF - Buy vs SellVolume Analysis Table MTF - Buy vs Sell Indicator
Take control of your trading decisions with the Volume Analysis Table MTF - Buy vs Sell indicator for TradingView! This powerful Pine Script code empowers you to analyze volume trends across various timeframes, providing valuable insights into buying and selling pressure within the market.
Unveiling Market Sentiment Through Volume Analysis:
Multi-Timeframe Analysis: Gain a comprehensive understanding of volume activity by examining different timeframes, from 1 minute to 1 month. Identify potential turning points and gauge the strength of trends.
Buy vs Sell Volume Differentiation: Effortlessly distinguish between buying and selling volume. The indicator color-codes the results, highlighting periods dominated by buying or selling pressure with clear visuals.
Customizable Table: Tailor the indicator to your preferences. Choose the number of bars to analyze, select the timeframes you want to display, and position the table conveniently on your chart using the built-in options.
Weekly and Monthly Period Support: Go beyond the traditional daily timeframe. The indicator allows you to incorporate weekly and monthly volume data for a broader market perspective (requires enabling the respective options).
Empower Your Trading with Actionable Insights:
Identify Potential Entry and Exit Points: By analyzing the volume distribution across different timeframes, you can potentially spot opportunities to enter or exit trades based on shifts in buying and selling pressure.
Confirm Trend Strength: Volume analysis can strengthen your existing trend identification strategies. High buying volume during uptrends and high selling volume during downtrends can add confidence to your trading decisions.
Gain a Competitive Edge: Understanding volume dynamics can provide valuable clues about market sentiment and potential turning points. This information can be a crucial advantage in fast-paced trading environments.
The Volume Analysis Table MTF - Buy vs Sell indicator is an indispensable tool for any serious trader utilizing TradingView. Simplify your volume analysis, gain actionable insights, and elevate your trading game!
------------------------------------------------------------------
Türkçe
Volume Analysis Table MTF - Buy vs Sell
Piyasada hakim olan alım-satım gücünü anlamak, başarılı bir yatırım için kritik öneme sahiptir. Volume Analysis Table MTF - Buy vs Sell göstergesi, farklı zaman dilimlerindeki hacim verilerini analiz ederek size bu konuda derinlemesine bir bakış açısı sunar.
Neden Bu Göstergeyi Kullanmalısınız?
Çoklu Zaman Dilimi Analizi: 1 dakikalık grafikten 1 aylık grafiğe kadar farklı zaman dilimlerindeki hacim verilerini tek bir bakışta görerek piyasanın genel eğilimini daha iyi anlayabilirsiniz.
Alım ve Satım Hacimlerini Karşılaştırma: Alım ve satım hacimlerini görsel olarak karşılaştırarak piyasadaki güç dengesini belirleyebilirsiniz.
Potansiyel Dönüm Noktalarını Tespit Etme: Hacimdeki ani değişimler, potansiyel trend değişikliklerine işaret edebilir. Bu gösterge sayesinde bu tür noktaları daha kolay tespit edebilirsiniz.
Tüm Yatırım Düzeyleri İçin Uygun: Hem yeni başlayan hem de deneyimli yatırımcılar bu göstergeden faydalanabilir.
Ana Özellikler:
Çoklu Zaman Dilimi Desteği: 1 dakika, 5 dakika, 15 dakika, 30 dakika, 1 saat, 2 saat, 4 saat, 1 gün, 1 hafta, 1 ay
Özelleştirilebilir Arayüz: Tablo pozisyonu, metin boyutu gibi ayarları kişiselleştirebilirsiniz.
Net ve Anlaşılır Görselleştirme: Alım ve satım hacimleri farklı renklerle gösterilir, böylece kolayca ayırt edilebilirler.
Volume Spectrum - WhvntrThe "Volume Spectrum" by Whvntr has been developed to analyze and visualize trading volume patterns in financial markets, offering traders insights into volume dynamics relative to historical performance. This tool can be particularly useful for identifying periods of unusually high or low trading activity, which are often associated with significant price movements.
Intended Markets and Conditions
The Volume Spectrum indicator is versatile and can be applied across a variety of markets, including stocks, forex, commodities, and cryptocurrencies. It is designed to be relevant in both bullish and bearish markets, as well as in varying volatility conditions. The primary focus is on identifying shifts in trading volume that could indicate potential trading opportunities or risks.
Features and Relevance for Trading
Volume Analysis: The indicator calculates and plots the average volume over a user-defined period (length) and compares it to a shorter-term average volume (avg_length). This comparison helps in identifying trends in trading volume.
Smoothing Options: Users can select from four types of smoothing methods (RMA, SMA, EMA, WMA) to calculate the moving averages, allowing for customization based on trading strategy and personal preference.
High and Low Volume Identification: It highlights periods of high and low volume relative to the average, using customizable color schemes for easy visual identification.
Volume Alerts: The script generates alerts for significant increases or decreases in volume, enabling traders to react promptly to potential trading signals.
Customizability: Traders can adjust various parameters, including volume length, average length, smoothing method, and visual elements like plot colors and background highlights.
Volume Histogram: An optional volume histogram can be displayed, with colors indicating whether the volume is increasing and if the closing price was higher or lower than the opening price.
This indicator can be particularly relevant for traders looking to capitalize on volume-based trading strategies. High volume periods may indicate strong interest in a security at its current price, whereas low volume may suggest a lack of interest. By identifying these conditions, traders can make more informed decisions about entry and exit points.
Disclaimer
The Volume Spectrum indicator, like any analytical tool, should be used as part of a comprehensive trading strategy. It is important to note that past performance is not indicative of future results. Trading involves risk, and the effectiveness of this or any indicator may vary based on market conditions, settings used, and other factors. Traders should exercise caution, do their own research, and consider seeking advice from a financial professional before making trading decisions. This indicator is provided without warranty regarding its accuracy, timeliness, or completeness, and users assume all risks associated with its use.
Volume Highlighter(VM) by Tirano안녕하세요. 다이너스티 팀의 안드레아 입니다.
기존에 티라노라는 이름으로 활동했습니다
Volume Highlighter (Vm) 소개
주식시장에서 흔히 중요하게 생각하는 지표 중 하나가 거래량 입니다.
거래량이 "많이" 나올때가 하나의 기준이 되지요.
본 지표는 평균 거래량을 파란색 선으로, 평균 거래량의 일정 배수를 빨간색 선으로 표현하여 발생한 거래량이 빨간색 선을 상향돌파할때 노란색으로 강조해 주는 기능을 가지고있습니다.
기타 문의사항은 댓글 남겨주시면 감사하겠습니다.
Hi. this is Andreas of the Dynasty team.
Introduction to Volume Highlighter (Vm)
One of the most important indicators in the stock market is trading volume.
It is a standard when the volume of transactions is "much".
This indicator has the function of highlighting the average trading volume as blue line and a certain number of average trading volume as red line and highlighting when the trading volume exceeds the red line.
If you have any other questions, please leave a comment.
Volume x PriceThis is a simple indicator that calculates volume times price (money volume). Both asset volume and money volume are important indicators in TA. As you can see in the chart above, money volume (moving average) was increasing while the asset volume was not during late 2017. This could have led to wrong interpretations. Money volume becomes more important to consider when the difference in asset price is 'relatively' high.
Features:
- In addition to default options on volume indicator, it is possible to color volume bars based on "money flow multiplier" sign (close-(low+high)/2)
- Money factor can be disabled to show regular volume
Note: Most exchanges show asset volume but there are some like Bitmex that show money volume. Using this indicator on Bitmex type tickers should be avoided.
PS: I couldn't find any indicator for money volume so I had to develop this.
Your feedback is very welcome. If you know similar indicators, please let me know.