KKS_CUSTOMThis Pine Script combines a **Relative Strength Index (RSI) indicator with smoothing options** (SMA, EMA, WMA, VWMA, and Bollinger Bands) and **divergence detection** for bullish and bearish signals. It allows users to customize RSI settings, apply different moving averages, and enable Bollinger Bands for enhanced trend analysis. The script also detects **regular bullish and bearish divergences**, marking them on the chart with labels and providing alert conditions for potential trade signals. This versatile indicator helps traders identify overbought/oversold conditions and possible trend reversals efficiently. 🚀
Volume
Lila Rai's doubling strategyYou can gain a good profit if you stick on the strategy. You must apply this strategy in the trading bot instead of manual
Show Volume BuzzThis script calculates and visualizes a Volume Buzz indicator, which approximates the relative volume of a stock compared to its average volume over the past 100 days. The script provides insights into volume spikes, helping traders understand whether a stock is experiencing higher or lower trading volume compared to its historical average.
VWAP on ChartThe VWAP (Volume Weighted Average Price) Indicator calculates the volume-weighted average price based on the hlc3 source and displays it as an orange line on the chart.
Source: HLC3 (High, Low, Close Average)
Timeframe: Chart (with session anchoring)
Visual: Orange line, plotted directly on the price chart for easy reference
Precision: Default (adjustable)
Offset: 0 (adjustable)
Wait for Timeframe Close: Yes
VWAP with ±2 & ±3 Sigmao integrate the VWAP and CDV logic for entry along with the ATR-based trailing stop loss for exits, we can combine the concepts and modify the strategy as follows:
Strategy Overview:
Long Entry:
Price is above VWAP.
CDV is positive (bullish).
Short Entry:
Price is below VWAP.
CDV is negative (bearish).
Exit Logic:
For Long: Use the ATR trailing stop. Exit when price crosses below the ATR line.
For Short: Use the ATR trailing stop. Exit when price crosses above the ATR line.
Candle Coloring by Volumecolor candles if volume is times 3 of previous volume
orange bullish
purple bearish
Dk// Custom Indicator: EMA (21, 51, 101) + VWAP
//@version=5
indicator("EMA + VWAP Indicator", overlay=true)
/**
* Description:
* This custom TradingView indicator combines three Exponential Moving Averages (EMAs) and VWAP
* to help traders identify trends and key price levels.
*
* Features:
* - EMA 21 (Short-term trend)
* - EMA 51 (Medium-term trend)
* - EMA 101 (Long-term trend)
* - VWAP (Volume Weighted Average Price for institutional activity tracking)
* - Background color changes to indicate bullish or bearish trends
* - Alerts for EMA crossovers and VWAP breakouts/breakdowns
*
* Usage:
* - If EMA 21 > EMA 51 > EMA 101 → Bullish trend
* - If EMA 21 < EMA 51 < EMA 101 → Bearish trend
* - If price crosses above VWAP → Potential breakout
* - If price crosses below VWAP → Potential breakdown
*/
// Define EMAs
ema21 = ta.ema(close, 21)
ema51 = ta.ema(close, 51)
ema101 = ta.ema(close, 101)
// Define VWAP
vwapValue = ta.vwap
// Plot EMAs
plot(ema21, color=color.blue, linewidth=2, title="EMA 21")
plot(ema51, color=color.orange, linewidth=2, title="EMA 51")
plot(ema101, color=color.purple, linewidth=2, title="EMA 101")
// Plot VWAP
plot(vwapValue, color=color.red, linewidth=2, title="VWAP")
// Background Color for Trend Confirmation
bullish = ema21 > ema51 and ema51 > ema101
bearish = ema21 < ema51 and ema51 < ema101
bgcolor(bullish ? color.green : bearish ? color.red : na, transp=90)
// Alerts for EMA Crossovers
alertcondition(ta.crossover(ema21, ema51), title="Bullish Crossover", message="EMA 21 crossed above EMA 51")
alertcondition(ta.crossunder(ema21, ema51), title="Bearish Crossover", message="EMA 21 crossed below EMA 51")
alertcondition(ta.crossover(close, vwapValue), title="VWAP Breakout", message="Price crossed above VWAP")
alertcondition(ta.crossunder(close, vwapValue), title="VWAP Breakdown", message="Price crossed below VWAP")
House of Traders: Show Volume BuzzThis script calculates and visualizes a Volume Buzz indicator, which approximates the relative volume of a stock compared to its average volume over the past 100 days. The script provides insights into volume spikes, helping traders understand whether a stock is experiencing higher or lower trading volume compared to its historical average.
About House of Traders:
House of Traders offers comprehensive coaching and training for day traders, focusing on building consistent trading skills through personalized guidance. Whether you're a beginner or experienced trader, House of Traders provides a proven framework to help you trade with confidence. Join the community and start mastering the U.S. stock market with expert insights and daily trade ideas tailored to your goals.
Important Links
houseoftraders.nl
instagram.com/houseoftraders.nl
instagram.com/casper.wildemast
PBT's Volume Indicator For TradingViewThis Pine Script indicator displays key volume metrics and market cap for an asset directly on the TradingView chart inspired by PlaybookTrades. It shows:
Current Bar Volume: Volume of the current bar.
1-Day Volume: Total volume over the last day.
30-Day Average Volume: Average volume over the last 30 days.
Volume BarsThis TradingView indicator, written in Pine Script version 5, enhances volume analysis by coloring volume bars and marking specific conditions on the chart. Here's a concise overview of its functionality:
Volume Bar Coloring:
Cyan Bars: Indicate bullish candles (closing price higher than opening) where the volume is at least two standard deviations above the average, suggesting strong buying interest.
Magenta Bars: Represent bearish candles (closing price lower than opening) with volume at least two standard deviations above the average, indicating significant selling pressure.
Yellow Bars: Highlight scenarios such as doji candles (where opening and closing prices are equal), narrow-range bars, or candles with substantial wicks relative to their range, often interpreted as indecision or potential reversal points.
White Bars: Denote candles with volume around the average, reflecting typical market activity.
Gray Bars: Signify candles with below-average volume, indicating lower trading activity.
Special Markers:
Orange Dots: Placed above candles where the volume exceeds five standard deviations above the average, highlighting extreme volume spikes that may precede significant price movements.
The indicator calculates average volume and standard deviations over a user-defined period (default is 975 bars) and allows customization of parameters such as wick thresholds, bar range thresholds, and doji thresholds to fine-tune the sensitivity of the analysis.
By visually distinguishing these conditions, the indicator aids traders in quickly assessing market sentiment, identifying potential reversal points, and recognizing periods of heightened or diminished trading activity.
Volume Spike FilterAn indicator that will reveal volume spikes based on a 20 periods rolling average.
Projected Relative VolumeProjects Volume intraday to see how it will close at market close. Shows as multiplier of the 20 day average.
Open to any ideas to make it better or more robust.
Futures Volume on Nasdaq
Good morning
This indicator that I developed and that I willingly share with you is used to add the volume of the Nasdaq Futures on the Nasdaq Forex chart. You will just need to pay the data in real time on TradingView Nasdaq Futures to be able to add this indicator to your US100 or USTEC chart, etc.
High Volume Points [BigBeluga]High Volume Points is a unique volume-based indicator designed to highlight key liquidity zones where significant market activity occurs. By visualizing high-volume pivots with dynamically sized markers and optional support/resistance levels, traders can easily identify areas of interest for potential breakouts, liquidity grabs, and trend reversals.
🔵 Key Features:
High Volume Points Visualization:
The indicator detects pivot highs and lows with exceptionally high trading volume.
Each high-volume point is displayed as a concentric circle, with its size dynamically increasing based on the volume magnitude.
The exact volume at the pivot is shown within the circle.
Dynamic Levels from Volume Pivots:
Horizontal levels are drawn from detected high-volume pivots to act as support or resistance.
Traders can use these levels to anticipate potential liquidity zones and market reactions.
Liquidity Grabs Detection:
If price crosses a high-volume level and grabs liquidity, the level automatically changes to a dashed line.
This feature helps traders track areas where institutional activity may have occurred.
Volume-Based Filtering:
Users can filter volume points by a customizable threshold from 0 to 6, allowing them to focus only on the most significant high-volume pivots.
Lower thresholds capture more volume points, while higher thresholds highlight only the most extreme liquidity events.
🔵 Usage:
Identify strong support/resistance zones based on high-volume pivots.
Track liquidity grabs when price crosses a high-volume level and converts it into a dashed line.
Filter volume points based on significance to remove noise and focus on key areas.
Use volume circles to gauge the intensity of market interest at specific price points.
High Volume Points is an essential tool for traders looking to track institutional activity, analyze liquidity zones, and refine their entries based on volume-driven market structure.
Wyckoff Method with OBVこのコードを使った戦略は、WyckoffメソッドとOBV(On-Balance Volume)を活用したトレーディング戦略です。以下に、戦略の概要とその実行方法を説明します。
戦略の概要
OBVの分析:
OBVは、価格の動きとボリュームの関係を示す指標です。価格が上昇するときにボリュームが増加している場合、強い上昇トレンドが示唆されます。逆に、価格が下落するときにボリュームが増加している場合、強い下降トレンドが示唆されます。
高ボリュームと低ボリュームのシグナル:
ボリュームが平均の1.5倍を超えると高ボリュームシグナル(赤の三角形)が表示されます。この場合、トレンドの強化が示唆されます。
ボリュームが平均の0.5倍未満の場合、低ボリュームシグナル(緑の三角形)が表示されます。この場合、トレンドの減速や反転が示唆されることがあります。
OBVシグナルの背景色:
OBVの変化に基づいて、背景色が緑または赤に変わります。緑は上昇トレンド、赤は下降トレンドを示します。
戦略の実行方法
エントリーシグナル:
買いエントリー:
OBVが前日よりも増加しており(obvSignal == 1)、かつ高ボリュームシグナルが表示されている時に買いエントリーを検討します。
売りエントリー:
OBVが前日よりも減少しており(obvSignal == -1)、かつ低ボリュームシグナルが表示されている時に売りエントリーを検討します。
ストップロスとテイクプロフィット:
ストップロスを直近のサポートまたはレジスタンスレベルに設定し、利益目標はリスクリワード比を考慮して設定します。
トレンドの確認:
エントリーを行う前に、トレンドの確認を行うために他のテクニカル指標(例えば、移動平均やRSIなど)を併用することも推奨します。
注意点
この戦略は過去のデータに基づいており、将来のパフォーマンスを保証するものではありません。必ずバックテストを行い、自分のリスク許容度に合った設定を見つけることが重要です。
市場の状況によっては、ボリュームシグナルが誤ったシグナルを出す場合もあるため、他の指標やファンダメンタル分析と併用することをお勧めします。
House of Traders: VWAP on ChartThe VWAP (Volume Weighted Average Price) Indicator calculates the volume-weighted average price based on the hlc3 source and displays it as an orange line on the chart.
Source: HLC3 (High, Low, Close Average)
Timeframe: Chart (with session anchoring)
Visual: Orange line, plotted directly on the price chart for easy reference
Precision: Default (adjustable)
Offset: 0 (adjustable)
Wait for Timeframe Close: Yes
About House of Traders:
House of Traders offers comprehensive coaching and training for day traders, focusing on building consistent trading skills through personalized guidance. Whether you're a beginner or experienced trader, House of Traders provides a proven framework to help you trade with confidence. Join the community and start mastering the U.S. stock market with expert insights and daily trade ideas tailored to your goals.
Important Links
houseoftraders.nl
instagram.com/houseoftraders.nl
instagram.com/casper.wildemast
Low Relative Volume Dry-Up (DUV)TradingView Pine Script – Low Relative Volume Dry-Up (DUV) Indicator
pinescript
CopyEdit
//@version=5 indicator("Low Relative Volume Dry-Up (DUV)", overlay=true) // Parameters length = input(50, title="Volume MA Length") // Lookback period for volume average threshold = input(0.3, title="Dry-Up Factor") // Volume must be below X% of average to qualify // Compute moving average of volume vol_ma = ta.sma(volume, length) // Calculate relative volume rel_vol = volume / vol_ma // Identify Dry-Up (DUV) bars dry_up = rel_vol < threshold // Highlight bars with color barcolor(dry_up ? color.blue : na) // Add DUV markers above bars plotshape(dry_up, location=location.abovebar, style=shape.labelup, color=color.blue, size=size.small, title="DUV", text="DUV") // Plot Volume Moving Average for reference plot(vol_ma, color=color.gray, title="Volume MA") // Alert when DUV occurs alertcondition(dry_up, title="DUV Alert", message="Dry-Up Volume Detected!")
The best Dry-Up Factor (DUF) for spotting breakouts depends on the stock’s liquidity and volatility. However, based on breakout trading principles, here are some guidelines:
Optimal Dry-Up Factor (DUF) Ranges for Breakouts
✅ 0.2 - 0.3 (20% - 30% of average volume)
Ideal for highly liquid stocks (e.g., large caps, blue chips).
Good for spotting extreme dry-up zones before volume expansion.
Best used in strong uptrends or consolidations before breakouts.
✅ 0.3 - 0.5 (30% - 50% of average volume)
Works well for mid-cap stocks with moderate volatility.
Captures normal low-volume consolidations before breakouts.
Balances false signals and breakout precision.
✅ 0.5 - 0.7 (50% - 70% of average volume)
Better for small caps and volatile stocks where volume fluctuations are common.
Detects early signs of accumulation before volume expansion.
Reduces the risk of false dry-up signals in choppy markets.
How to Find the Best DUF for Your Stocks
1️⃣ Check historical breakout cases – What was the relative volume before the move?
2️⃣ Test different thresholds – Start with 0.3 - 0.5 and adjust based on stock behavior.
3️⃣ Combine with price action – Look for tight consolidations, inside bars, or squeeze setups.
4️⃣ Use ATR or ADX – Validate if the stock is in a low-volatility phase before expanding.
Elephant Bar Detector by McAiElephant Bar Detector 🐘
Overview:
The Elephant Bar Detector identifies significant bullish and bearish bars (candlesticks) based on size and volume criteria. It also detects follow-through patterns, helping traders confirm strong price movements.
Features:
✅ Elephant Bar Detection:
Bullish Elephant Bar 🐘: A large bullish candle with high volume.
Bearish Elephant Bar 🐘: A large bearish candle with high volume.
✅ Follow-Through Confirmation:
Checks if price continues in the same direction after the Elephant Bar.
Requires at least 80% follow-through over the next few bars.
✅ Visual Markers & Alerts:
Yellow Elephant 🐘 (Bottom) → Bullish signal
Pink Elephant 🐘 (Top) → Bearish signal
Background Highlight: Indicates confirmed follow-through
Alerts: Get notified when an Elephant Bar or follow-through occurs.
How It Works:
Calculates the average candle size over a user-defined period.
Sets a volume threshold (average volume × multiplier).
Identifies Elephant Bars when price movement & volume exceed thresholds.
Confirms follow-through by checking if 80% of the next few bars continue in the same direction.
Customizable Settings:
Length for Average Candle Size (Default: 200)
Volume Multiplier (Default: 1.5)
Number of Follow-Through Bars (Default: 3)
This indicator helps traders spot strong price moves early and confirm trends before entering trades. 🚀🔥
Bollinger Band Signals with POCThe script will give you perfect buy and sell signals.
Red dot for buy signal. !But only when the trend is not downward.
Green dot for sell signal.
RSI & MFI Indexed -100 to 100 With Better DivergencesRSI & MFI Indexed -100 to 100 With Enhanced Divergence Detection
This script displays both the Relative Strength Index (RSI) and Money Flow Index (MFI) on the same scale for better comparison of momentum and volume-based overbought/oversold conditions.
Key features include:
✅ RSI & MFI Display – Both indicators are plotted together to easily identify confluence and divergences.
✅ Gradient Fill for Overbought/Oversold Levels – Each indicator (RSI and MFI) has its own gradient fill applied to its overbought and oversold zones, making it visually intuitive to see how deeply an indicator has entered extreme conditions.
✅ Customizable Combined Overbought/Oversold Levels – Adjust threshold levels separately for RSI and MFI to fit different trading styles.
Receive alerts when both RSI and MFI reach your threshold levels.
✅ Midline & Zero Line Reference – Includes a midline (50) for RSI and MFI to help gauge trend direction and strength.
✅ Custom Colors & Styling – Allows users to modify line colors, gradient intensity, and overall appearance to match their preferences.
✅ Multi-Type Moving Average Smoothing
Option to apply SMA, EMA, SMMA, WMA, or VWMA to RSI values.
Bollinger Bands option allows for detecting volatility-based shifts.
✅ Superior Divergence Detection
Traditional divergence detection often struggles with accuracy due to single-lookback periods. This indicator uses two separate lookback periods (A & B) for RSI and MFI:
Shorter Lookback (A) – Captures smaller trend shifts.
Longer Lookback (B) – Identifies more significant trend reversals.
This dual-approach increases divergence detection accuracy while filtering out noise.
✅ Alerts for Divergences
Automatically detects bullish and bearish divergences for both RSI and MFI.
Generates alerts when divergences occur, helping traders identify potential reversals early.
Why This Indicator Stands Out
Unlike other RSI-MFI combinations, this indicator:
✅ Uses a symmetrical scale (-100 to 100) for RSI & MFI, making direct comparisons easier.
✅ Introduces gradient-filled overbought/oversold zones for better visualization.
✅ Implements a dual-lookback divergence system, leading to far more accurate divergence detection than standard methods.
This is not just a simple overlay of two indicators—it is a refined, enhanced, and more actionable momentum analysis tool. 🚀
SIOVERSE EMA 15 with Buy/Sell Signals, Support & ResistanceThis Pine Script indicator is designed for TradingView and combines Exponential Moving Averages (EMAs), support and resistance levels, buy/sell signals, and volume percentage labels filtered by buy/sell conditions. It is a comprehensive tool for traders who want to analyze price trends, identify key levels, and make informed decisions based on volume and EMA crossovers.
Key Features of the Indicator
EMA 15 (Purple Dashed Line):
A 15-period Exponential Moving Average (EMA) is plotted on the chart as a dashed purple line.
This EMA helps traders identify short-term trends and potential entry/exit points.
Hidden EMA 21 and EMA 34:
The 21-period and 34-period EMAs are calculated but not displayed on the chart.
These EMAs are used to generate buy and sell signals based on crossovers.
Buy/Sell Signals:
Buy Signal: Occurs when the EMA 21 crosses above the EMA 34. A green "BUY" label is displayed below the candle.
Sell Signal: Occurs when the EMA 21 crosses below the EMA 34. A red "SELL" label is displayed above the candle.
These signals help traders identify potential trend reversals or continuations.
Support and Resistance Levels:
Support: The lowest price level over the last lookback_period candles, plotted as a green dashed horizontal line.
Resistance: The highest price level over the last lookback_period candles, plotted as a red dashed horizontal line.
These levels help traders identify key price zones for potential breakouts or reversals.
Volume Percentage Labels (Filtered by Buy/Sell Signals):
The volume percentage is calculated relative to the average volume over the last volume_lookback candles.
Buy Volume Label: When a buy signal occurs, a green label is displayed above the candle with the text "Buy Vol: X.XX%", where X.XX is the volume percentage.
Sell Volume Label: When a sell signal occurs, a red label is displayed below the candle with the text "Sell Vol: X.XX%", where X.XX is the volume percentage.
These labels help traders assess the strength of the buy/sell signals based on volume.
Alerts:
Alerts are triggered when buy or sell signals occur, notifying traders of potential trading opportunities.
WSGTA IndicatorsThis script was built for the Wall Street Global Trading Academy system. The script contains the ema's used in the system... the 9, 15, 30, 65, and 200. They are color coded to match the default's in the WSGTA system. In hopes that an explanation keeps this publication from getting removed, an ema is an exponential moving average. It is an average of a prior time period that has the values weighted towards the current time. This indicator also includes pivot points, vwap (volume weighted average price) and prior day high, low, and close.... Please stop taking the script down, those that know what it is will use it and appreciate it, those that don't, won't care what it is.