Twiggs Money FlowTwiggs Money Flow (TMF)
This indicator is an implementation of the Twiggs Money Flow (TMF), a volume-based tool designed to measure buying and selling pressure over a specified period. TMF is an enhancement of Chaikin Money Flow (CMF), utilizing more sophisticated smoothing techniques for improved accuracy and reduced noise. This version is highly customizable and includes advanced features for both new and experienced traders.
What is Twiggs Money Flow?
Twiggs Money Flow was developed by Colin Twiggs to provide a clearer picture of market momentum and the balance between buyers and sellers. It uses a combination of price action, trading volume, and range calculations to assess whether a market is under buying or selling pressure.
Unlike traditional volume indicators, TMF incorporates Weighted Moving Averages (WMA) by default but allows for other moving average types (SMA, EMA, VWMA) for added flexibility. This makes it adaptable to various trading styles and market conditions.
Features of This Script:
Customizable Moving Average Types:
Select from SMA , EMA , WMA , or VWMA to smooth volume and price-based calculations.
Tailor the indicator to align with your trading strategy or the asset's behavior.
Optional HMA Smoothing:
Apply Hull Moving Average (HMA) smoothing for a cleaner, faster-reacting TMF line.
Perfect for traders who want to reduce lag and capture trends earlier.
Dynamic Thresholds for Signal Filtering:
Set user-defined thresholds for Long (LT) and Short (ST) signals to highlight significant momentum.
Focus on actionable trends by ignoring noise around neutral levels.
Bar Coloring for Visual Clarity:
Automatically colors your chart bars based on TMF values:
Aqua for strong bullish signals (above the long threshold).
Fuchsia for strong bearish signals (below the short threshold).
Gray for neutral or undecided market conditions.
Ensures that trend direction and strength are visually intuitive.
Configurable Lookback Period:
Adjust the sensitivity of TMF by customizing the length of the lookback period to suit different timeframes and market conditions.
How It Works:
True Range Calculation: The script determines the high, low, and close range to calculate buying and selling pressure.
Adjusted Volume: Incorporates the relationship between price and volume to gauge whether trading activity is favoring buyers or sellers.
Weighted Moving Averages (WMAs): Smooths both volume and adjusted volume values to eliminate erratic fluctuations.
TMF Line: Computes the ratio of adjusted volume to total volume, representing the net buying/selling pressure as a percentage.
HMA Option (if enabled): Smooths the TMF line further to reduce lag and enhance trend identification.
Bar Coloring Logic:
Bars are colored dynamically based on TMF values, thresholds, and smoothing preferences.
Provides an at-a-glance understanding of market conditions.
Input Parameters:
Lookback Period: Defines the number of bars used to calculate TMF (default: 21).
Use HMA Smoothing: Toggle Hull Moving Average smoothing (default: true).
HMA Smoothing Length: Length of the HMA smoothing period (default: 14).
Moving Average Type: Select SMA, EMA, WMA, or VWMA (default: WMA).
Long Threshold (LT): Threshold value above which a long signal is considered (default: 0).
Short Threshold (ST): Threshold value below which a short signal is considered (default: 0).
How to Use It:
Confirm Trends: TMF can validate trends by identifying periods of sustained buying or selling pressure.
Divergence Signals: Watch for divergences between price and TMF to anticipate potential reversals.
Filter Trades: Use the thresholds to ignore weak signals and focus on strong trends.
Combine with Other Indicators: Pair TMF with trend-following or momentum indicators (e.g., RSI, Bollinger Bands) for a comprehensive trading strategy.
Example Use Cases:
Spotting breakouts when TMF crosses above the long threshold.
Identifying sell-offs when TMF dips below the short threshold.
Avoiding sideways markets by ignoring neutral (gray) bars.
Notes:
This indicator is highly customizable, making it versatile across different assets (e.g., stocks, crypto, forex).
While the default settings are robust, tweaking the lookback period, moving average type, and thresholds is recommended for different trading instruments or strategies.
Always backtest thoroughly before applying the indicator to live trading.
This version of Twiggs Money Flow goes beyond standard implementations by offering advanced smoothing, custom thresholds, and enhanced visual feedback to give traders a competitive edge.
Add it to your charts and experience the power of volume-driven analysis!
Candlestick analysis
Single Candle Model-DTFXThe script identifies the candles with engulfing body and marks the 50% of the candle for easy entry based on model of #DTFX single candle entry
Interpreting the Signals:
Look for candles labeled as "BE". These represent significant price action where the range is larger than the previous candle's range.
Pay attention to the 50% line of the "BE" candle:
A green line indicates a bullish "BE" candle.
A red line indicates a bearish "BE" candle.
Watch for Buy ("B") and Sell ("S") labels:
"B": Indicates a potential bullish breakout.
"S": Indicates a potential bearish breakdown.
Alerts:
Configure alerts in TradingView to notify you whenever a "B" or "S" signal is detected. This allows you to act on the signals without constantly monitoring the chart.
Use in Trading Strategies:
Combine this indicator with other tools like support/resistance levels, moving averages, or trend analysis to validate the signals.
Use the midpoint (50% line) of the "BE" candle as a potential reference point for stop-loss or target levels.
Customizations:
Adjust the appearance of labels and lines by modifying their style, color, or placement in the script.
Add filters (e.g., timeframes or volume conditions) to refine the detection of "BE" candles.
This indicator helps traders identify pivotal price movements and act on potential breakouts or breakdowns with clear visual markers and alerts.
MTF Countdown with Direction - AynetIndicator Definition and Inputs:
pineCopyindicator('MTF Countdown with Direction - Aynet', overlay = true)
This code creates a Multiple Time Frame (MTF) countdown indicator with direction
The overlay = true parameter places the indicator on top of the price chart
Timeframe Options:
Users can choose to show/hide the following timeframes:
1 minute
5 minutes
15 minutes
30 minutes
1 hour
4 hours
Daily
Time Calculations:
pineCopyget_current_time()
Calculates the current time
Converts Unix timestamp to seconds
Calculates time since midnight
Returns time broken down into hours, minutes, and seconds
Countdown Calculation:
pineCopyget_period_countdown(period_seconds)
Calculates remaining time for each timeframe
Computes elapsed time in current period
Returns remaining time in hours, minutes, and seconds
Direction and Closing Price Calculation:
Separate functions for each timeframe (get_direction_and_close_1m(), get_direction_and_close_5m(), etc.)
Each function:
Gets current closing price
Compares with previous closing price
Determines direction (up: 1, down: -1, sideways: 0)
Returns direction and closing price
Table Creation and Updates:
Creates a table in the top right corner
Table consists of 4 columns:
Period (Timeframe)
Time Left (Remaining time)
Direction (Shown with arrows)
Close (Closing price)
Each row has a different background color
Direction arrows:
Green up arrow (▲): Price rising
Red down arrow (▼): Price falling
Gray line (―): Price sideways
Dynamic Data Structures:
pineCopyvar timeframes = array.new_int()
var timeframe_names = array.new_string()
var show_array = array.new_bool()
Uses dynamic arrays for timeframes
Adds selected timeframes to arrays on first run
Key Features:
Shows remaining time until period close
Displays price direction for each timeframe
Shows current closing prices
All information in a single, easy-to-read table
This indicator helps traders by providing a comprehensive view of:
When each timeframe will close
The direction of price movement
Current closing prices
across multiple timeframes in a single table, making it easier to track market movements across different time periods.
The color-coding and arrow system makes it visually intuitive to understand market direction at a glance, while the countdown timer helps with timing decisions.
Enigma Endgame with Dynamic Trend-Based FibonacciThe Enigma Endgame script combines dynamic trend-based Fibonacci levels with the core principles of the ENIGMA strategy. It provides traders with actionable signals by identifying key levels of fractal support and resistance and highlighting opportunities to trade with market momentum. This tool is designed for multi-timeframe analysis and is especially effective during high-volatility sessions like London and New York.
Purpose and Usefulness
This script was developed to simplify complex market dynamics by integrating Fibonacci principles with ENIGMA's logic of fractal support and resistance. Traders can use it to:
- Identify key breakout and retracement levels dynamically.
- Understand the shift between support and resistance as price action evolves.
- Gain confidence in their entries with real-time signals derived from logical fractal behavior.
By merging Fibonacci levels with fractal-based trading insights, this script offers a unique and comprehensive approach to analyzing market structure.
How It Works
The script uses a dual approach to provide insights:
1. Dynamic Fibonacci Levels:
- Automatically plots Fibonacci retracement and extension levels based on recent high and low swings, adjusting dynamically to current market trends.
- Allows traders to visualize key levels where price might reverse or extend.
2. Fractal Support and Resistance Logic:
- The script identifies fractal support and resistance by analyzing candle formations.
- When a candle body closes below the low of a previous candle, the previous low, which was fractal support, now becomes fractal resistance. The script generates a bearish signal, encouraging traders to look for sell opportunities at or above the previous low.
- Conversely, when a candle body closes above the high of a previous candle, the previous high, which was fractal resistance, becomes fractal support. The script generates a bullish signal, encouraging traders to look for buy opportunities at or below the previous high.
Real-Time Signals
The script marks these transitions with arrows on the chart:
- Bearish arrows indicate broken fractal support turning into resistance.
- Bullish arrows** indicate broken fractal resistance turning into support.
These signals help traders stay aligned with the trend and trade with market momentum.
Key Features
1. Session-Based Analysis: Focuses on high-probability setups by allowing traders to customize session times, such as London or US sessions.
2. Multi-Timeframe Support: Works seamlessly across multiple timeframes for both scalpers and swing traders.
3. Real-Time Alerts: Sends customizable alerts when price interacts with critical Fibonacci levels or fractal support/resistance shifts.
How to Use the Script
1. Apply the script to a clean chart for clear visualization. Avoid combining it with other scripts unless necessary.
2. Use the arrows to identify shifts in fractal support and resistance and validate opportunities for buy/sell trades.
3. Monitor the dynamic Fibonacci levels to find confluence with key price areas.
4. Customize session times to focus on high-probability trading hours.
Key Notes for Traders
- This script provides insights based on logical market structure but should be used alongside proper risk management and trading plans.
- The fractal-based approach works well in conjunction with dynamic Fibonacci levels, helping traders build confidence in their strategy.
- Adapt the script settings to match your unique trading style and timeframe preferences.
By offering a seamless integration of fractal logic and Fibonacci principles, Enigma Endgame empowers traders with actionable insights to navigate markets effectively.
Santa's Adventure [AlgoAlpha]Introducing "Santa's Adventure," a unique and festive TradingView indicator designed to bring the holiday spirit to your trading charts. With this indicator, watch as Santa, his sleigh, Rudolf the reindeer, and a flurry of snowflakes come to life, creating a cheerful visual experience while you monitor the markets.
Key Features:
🎁 Dynamic Santa Sleigh Visualization : Santa's sleigh, Rudolf, and holiday presents adapt to price movements and chart structure.
🎨 Customizable Holiday Colors : Adjust colors for Santa’s outfit, Rudolf’s nose, sleigh, presents, and more.
❄️ Realistic Snow Animation : A cascade of snowflakes decorates your charts, with density and range adjustable to suit your preferences.
📏 Adaptive Scaling : All visuals scale based on price volatility and market dynamics.
🔄 Rotation by Trend : Santa and his entourage tilt to reflect market trends, making it both functional and fun!
How to Use :
Add the Indicator to Your Chart : Search for "Santa's Adventure" in the TradingView indicator library and add it to your favorites. Use the input menu to adjust snow density, sleigh colors, and other festive elements to match your trading style or holiday mood.
Observe the Market : Watch Santa’s sleigh glide across the chart while Rudolf leads the way, with snowflakes gently falling to enhance the visual charm.
How It Works :
The indicator uses price volatility and market data to dynamically position Santa, his sleigh, Rudolf, and presents on the chart. Santa's Sleigh angle adjusts based on price trends, reflecting market direction. Santa's sleigh and the snowstorm are plotted using advanced polyline arrays for a smooth and interactive display. A festive algorithm powers the snowfall animation, ensuring a consistent and immersive holiday atmosphere. The visuals are built to adapt seamlessly to any market environment, combining holiday cheer with market insights.
Add "Santa's Adventure" to your TradingView charts today and bring the holiday spirit to your trading journey, Merry Christmas! 🎅🎄
Filtered ATR with EMA OverlayFiltered ATR with EMA Overlay is an advanced volatility indicator designed to provide a more accurate representation of market conditions by smoothing the standard Average True Range (ATR). This is achieved by filtering out extreme price movements and abnormal bars that can distort traditional ATR calculations.
The indicator applies an Exponential Moving Average (EMA) to the filtered ATR, creating a dual-layered system that highlights periods of increased or decreased volatility.
Key Features:
Filtered ATR: Filters out extreme bars, reducing noise and making the ATR line more reliable.
EMA Overlay: An EMA (default period of 10) is applied to the filtered ATR, allowing traders to track average volatility trends.
Volatility Signals:
Filtered ATR > EMA(10): Indicates higher-than-average volatility. This often correlates with trend breakouts or strong price movements.
Filtered ATR < EMA(10): Suggests reduced volatility, signaling potential consolidation or sideways price action.
Parameters:
atrLength (Default: 5):
The number of bars used to calculate the ATR. A shorter period (e.g., 3-5) responds faster to price changes, while a longer period (e.g., 10-14) provides smoother results.
multiplier (Default: 1.8):
Controls the sensitivity of the filter. A lower multiplier (e.g., 1.5) filters out more bars, resulting in smoother ATR. Higher values (e.g., 2.0) allow more bars to pass through, retaining more price volatility.
maxIterations (Default: 20):
The maximum number of bars processed to detect abnormal values. Increasing this may improve accuracy at the cost of performance.
ema10Period (Default: 10):
The period for the Exponential Moving Average applied to the filtered ATR. Shorter periods provide faster signals, while longer periods give smoother, lagging signals.
Trading Strategies:
1. Breakout Strategy:
When filtered ATR crosses above EMA(10):
Enter long positions when price breaks above a key resistance level.
Higher volatility suggests strong price action and momentum.
When filtered ATR drops below EMA(10):
Exit positions or tighten stop-loss orders as volatility decreases.
Lower volatility may indicate consolidation or trend exhaustion.
2. Trend Following Strategy:
Use the filtered ATR line to track overall volatility.
If filtered ATR consistently stays above EMA: Hold positions or add to trades.
If filtered ATR remains below EMA: Reduce position size or stay out of trades.
3. Mean Reversion Strategy:
When filtered ATR spikes significantly above EMA, it may indicate market overreaction.
Look for price to revert to the mean once ATR returns below the EMA.
4. Stop-Loss Adjustment:
As volatility increases (ATR above EMA), widen stop-loss levels to avoid being stopped out by random fluctuations.
In low volatility (ATR below EMA), tighten stop-losses to minimize losses during low activity periods.
Benefits:
Reduced Noise: By filtering abnormal bars, the indicator provides cleaner signals.
Better Trend Detection: EMA smoothing highlights volatility trends.
Adaptable: The indicator can be customized for scalping, day trading, or swing trading.
Intuitive Visualization: Traders can visually see volatility shifts and adjust strategies in real-time.
Best Practices:
Timeframes: Works effectively on all timeframes, but higher timeframes (e.g., 1H, 4H, Daily) yield more reliable signals.
Markets: Suitable for forex, crypto, stocks, and commodities.
Combining Indicators: Use in combination with RSI, Moving Averages, Bollinger Bands, or price action analysis for stronger signals.
How It Works (Under the Hood):
The script calculates the Daily Range (High - Low) for each bar.
The largest and smallest bars are filtered out if their difference exceeds the multiplier (default 1.8).
The remaining bars are averaged to generate the filtered ATR.
An EMA(10) is then applied to the filtered ATR for smoother visualization.
Brijesh TTrades candle plot"Brijesh TTrades candle plot" is a powerful and customizable indicator that allows you to overlay higher timeframe candles directly on your chart. Choose your desired timeframe (e.g., Daily, Hourly) and plot up to 10 recent candles with precise control over color, wick style, and width. The candles are offset by 40 bars to the right, providing a clear and unobstructed view of the current price action. Ideal for multi-timeframe analysis and gaining deeper insights into market trends.
The Ultimate strategy by ATK**The Ultimate Strategy by ATK**
This comprehensive trading script is designed to enhance market analysis and trading strategies by integrating advanced tools for market structure, SMT (Separation and Divergence), Fair Value Gaps (FVG), and session-based insights. With customizable features, real-time alerts, and multi-timeframe functionality, this script caters to both scalpers and long-term traders seeking deeper market insights.
### 🔵 **Key Features**
**🔹 SMT (Divergence) Detection:**
- **High/Low SMT Analysis:** Compares highs and lows between a primary symbol (e.g., NQ1!) and a user-defined comparison symbol (e.g., ES1!).
- Automatically visualizes discrepancies with red (highs) and green (lows) lines.
- Supports two modes: real-time comparison and historical range checks.
- Alerts for detected SMT conditions.
- **Close Price SMT Analysis:** Compares closing prices to highlight divergences.
- Includes user-defined lookback periods and granular cycle-based SMT detection.
**🔹 PSP (Precision Swing Point):**
- Detects and highlights price divergences between symbols, such as NQ and ES, with multi-timeframe compatibility (15-minute, 1-hour, 4-hour).
- Integrated PSP table for visualizing divergences across timeframes.
- Configurable for first PSP detection only or all patterns without lower timeframe interference.
**🔹 Session Analysis with ASIA Session Insights:**
- Tracks high and low prices during the Asia session (1:00–7:00 AM Israel time).
- Draws horizontal lines marking session highs and lows.
- Alerts when prices cross session boundaries.
**🔹 FFMS (First Five-Minute Strategy):**
- Utilizes the high and low of the first five minutes of the trading day.
- Generates buy or sell signals based on retracement and breakout conditions around the previous day’s high/low.
- Real-time alerts for long and short opportunities.
**🔹 Multi-Timeframe Tables and Alerts:**
- Displays SMT and PSP conditions across multiple timeframes (1-minute, 15-minute, 1-hour, etc.).
- Alerts for SMT divergences and PSP patterns across selected time intervals.
**🔹 Visual Enhancements and Customizability:**
- Color-coded lines and labels for easy interpretation of SMT, PSP, and session levels.
- User-friendly input settings for symbol selection, session tracking, and cycle configuration.
- Flexible session range adjustments with macro and micro cycle segmentation (90-minute and 6-hour sessions).
### 🎯 **Use Cases**
- **Scalping:** Analyze short-term divergences with real-time SMT and PSP detection on lower timeframes.
- **Swing Trading:** Leverage session-based insights and SMT conditions to identify potential reversal points.
- **Multi-Symbol Analysis:** Compare key indices or assets (e.g., NQ vs. ES) for SMT-based opportunities.
This script is perfect for traders looking to combine advanced tools into a seamless, actionable trading system. Stay ahead of the markets with **The Ultimate Strategy by ATK**!
Weekly and daily separators - MKThis indicator is designed to provide easier usability and greater customization for traders. The update brings enhanced stability and reliability in detecting day, week, and month changes across various timeframes, ensuring consistent and accurate visuals on your charts.
Key Features:
Time Zone Customization: Select the time zone to determine when session changes are marked.
Adjustable Line Coverage: Lines can now be customized to only partially cover the top and bottom of the chart, offering a cleaner look.
Optional Labels: Enable labels to display the starting month, calendar week, or day. Day formats include:
Weekday name
Date in formats: dd.MM or MM.dd
Visual Enhancements:
Default line widths and colors now use an orange hue for better visibility.
Added a monthly separator line for better long-term trend tracking.
Higher time frame color options for clarity.
Independent customization of line styles and widths.
Additional Improvements:
Ability to hide daily lines on daily charts and higher timeframes. Similarly, weekly lines can be hidden on weekly charts and higher.
Secondary line width for weekly separators on daily and higher timeframes, ensuring cleaner chart aesthetics.
Updated color selection and default values for better readability.
Multi-Timeframe Candle Analysis [by Oberlunar]Multi-Timeframe Candle Analysis
Scalping often requires traders to make rapid decisions based on price movements within a short timeframe. However, a key challenge is understanding the broader trend and market pressure across higher timeframes without cluttering the workspace with multiple charts. This can lead to a lack of clarity, missed opportunities, or poorly timed trades.
The Multi-Timeframe Candle Analysis script addresses this challenge by providing a consolidated view of essential information across multiple timeframes in a single interface. This script calculates and displays the volatility, strength, and type (bullish or bearish) of candles for up to six customizable timeframes. With this data presented in a neat table, traders can quickly assess market conditions without the need to open multiple charts.
How It Works
The script analyzes six user-defined timeframes, ranging from intraday intervals (e.g., 15 or 30 minutes) to daily or even weekly periods. It extracts critical data such as open, high, low, and close prices for the current and previous candles. From this data, the script computes:
Candle Type: Identifies whether the candle is bullish or bearish based on the close relative to the open.
Volatility Percentage Change: Measures the percentage change in candle volatility compared to the previous candle.
Candle Strength: Evaluates the strength of price movements within the candle relative to the previous one.
These metrics are organized into an easy-to-read table that updates dynamically as the market moves. The table color codes bullish and bearish candles for quick visual recognition, enhancing decision-making speed.
Divergences of Machine Learning Matrix and Clustering RSISlope-Based Divergences of Machine Learning Matrix and Clustering RSI
This advanced indicator leverages machine learning concepts, clustering techniques, and slope analysis to identify divergence patterns and adaptive market signals. It integrates various metrics, including volatility, momentum, and probabilistic modeling, to provide a comprehensive view of market dynamics. The goal is to highlight opportunities based on price and oscillator divergences while dynamically adapting to different market conditions.
Key Features:
Machine Learning Framework:
A learning matrix is used to store and process adaptive RSI values.
Monte Carlo simulations are applied to generate probabilistic signals, incorporating weighted momentum, volatility, and clustering factors.
Feedback loops adjust learning rates and memory factors for continuous refinement of the system.
Clustering System:
Volatility levels are grouped into three clusters (Low, Medium, High), which influence weighting factors.
Cluster-based adjustments dynamically adapt the behavior of the indicator to current market conditions.
Dynamic RSI with Adaptive Feedback:
RSI calculations are based on dynamically adjusted lengths, leveraging memory feedback and volatility reinforcement.
Smoothed RSI values reflect high-volatility conditions, providing a refined overbought and oversold framework.
Slope Analysis:
Tracks the slope of both price movements and oscillator behavior over a range of lengths.
Highlights divergences (bullish or bearish) when price and oscillator slopes diverge significantly.
Incorporates slope-based signals for hidden divergences, offering additional insights into underlying market strength or weakness.
Multi-Factor Reinforcement Learning:
Combines smoothed RSI, true RSI, and memory-based feedback into a single reinforced signal.
Adjusts dynamically for extreme market conditions using a Z-score approach.
Volatility-Aware Thresholds:
Calculates dynamic overbought and oversold levels based on volatility and market conditions.
Ensures that thresholds are adaptable, offering greater relevance in various market environments.
Divergence Detection:
Bullish and Bearish Divergences:
Identifies divergences between price and oscillator slopes.
Pinpoints reversal opportunities when the oscillator slope conflicts with price behavior.
Hidden Divergences:
Detects hidden bullish or bearish divergences to uncover potential continuations or hidden trends.
Utilizes percentile ranks to assess extreme slope conditions.
Visual Markers:
Plots labeled markers on the chart to clearly indicate divergence events:
Green labels for bullish divergences.
Red labels for bearish divergences.
Probabilistic and Feedback Systems:
Monte Carlo Simulations:
Simulates hundreds of iterations to account for randomness and assess potential signals.
Factors include momentum, volatility, and cluster-based weightings.
Dynamic Learning Rate:
Adjusts learning rate based on current volatility, allowing the system to adapt faster during high-volatility phases.
Recursive Memory Feedback:
Stores recent RSI values in memory for deeper learning.
Integrates memory averages into the final signal calculation for enhanced stability.
Applications:
Trend Reversals:
Provides signals for potential market turning points using divergences and adaptive RSI levels.
Momentum and Volatility Analysis:
Incorporates volatility and momentum into its adaptive framework to better align with market behavior.
Scalping and Swing Trading:
Suitable for short-term scalping and medium-term swing trading by adjusting inputs for lookback and clustering thresholds.
Dynamic Thresholds for Extreme Markets:
Detects extreme market conditions with Z-score adjustments, helping traders identify overbought and oversold scenarios dynamically.
Visualization:
Primary Signal:
Plots a combined machine learning-enhanced RSI signal, providing a smoothed, adaptive oscillator view.
Divergences:
Visual markers for bullish, bearish, and hidden divergences displayed directly on the chart.
This indicator is a powerful tool for traders who seek a nuanced approach to market analysis, blending cutting-edge techniques like machine learning and clustering with practical trading insights.
Magic Candles PRO [MW]The Magic Candles indicator provides users with low risk/high reward entries on small candles with big volume. It uses calculations that uniquely define high volume/low price movement (volume hammer) candles and engulfing pattern candles. In theory, measuring a volume hammer candle seems relatively simple, but it is in the definition of high and low with respect to volume and price movement, and with respect to each other that requires a novel method of defining the relationship. The definition that is ultimately used gives users the ability to identify candles that typically precede large price movements, because the volume necessary to drive the price exists by definition even though it is not reflected in the size of the current candle.
Similarly, engulfing candle patterns are useful because they show an acceleration of price movement from the previous candle. The difficulty in calculating engulfing candles, as with volume hammer candles, is in the interpretation of candle size, or “engulfing”. In many cases, engulfing simply means that a candle has reversed direction from the previous candle, and the body of the previous candle sits between the open and close of the new candle. Sometimes wicks are used, sometimes they aren’t. Our differentiation is that we allow the user to change “engulfing” to their preference, so that it can include candle bodies, full candles, dojis, and candle patterns where the body of the previous candle is not necessarily in between the open and close of the new candle. It also uses a double stochastic calculation on ATRs that filter out engulfing candles that may not be as meaningful.
Settings
Volume Hammer Candles
ATR Period: The ATR period that is used to compare the candle size against. (Default: 5)
Candle Portion to Use: The candle size can be defined as just the body, or the entire candle. (Default: Candle Body)
Volume Absorption Threshold: The threshold for the volume ratio relative to the candle size ratio. (Default: 4.5)
Volume ATR Period: The ATR period that is used to compare the volume against. (Default: 3)
3 Consecutive Volume increases and 3 Bullish Candles: (Default: ON)
3 Consecutive Volume Increases and 3 Bearish Candles: (Default: ON)
2 Consecutive Volume increases Prior to Current Candle: (Default: ON)
Engulfing Pattern Candles
Show Engulfing Candles: (Default: ON)
Include Candle Wicks in Calculation: (Default: ON)
Show Bullish Candles: (Default: ON)
Show Bearish Candles: (Default: ON)
Use Dojis for Reversed Candles: Typically engulfing candles are compared against candles that are in the opposite direction of the new candle. However, dojis, or candles with small candle bodies and relatively large wicks, can be optionally used to measure against. (Default: OFF)
ATR Period 1: We use 2 levels of stochastic calculation to compare against in order to determine if an engulfing candle is valid. This is the shorter period ATR. (Default: 14)
ATR Period 2: The 2nd of 2 ATR periods used in a 2-level stochastic calculation that’s used to evaluate valid engulfing candles. (Default: 21)
Stochastic Period: The Stochastic Period used for both levels of ATR calculations. (Default: 14)
Smoothing: The period used to “smooth” the stochastic curves. (Default: 3)
Calculations
This indicator uses a comparison between relative volume (raw volume compared to its average true range) and relative price action as determined by candle size (specifically, candle size compared to the average true range of the candle size). The ratio between the relative volume and relative price action are compared as a ratio. Once that ratio hits a defined threshold a signal is generated in the form of a bright yellow bar, which we refer to as a “volume hammer”, because of the heavy volume acting on an unmoving object (price).
The indicator also identifies engulfing candle patterns by
Determining the candle body size or full candle size.
Checking to see if there was a reversal of direction, or checking to see if the first candle was a doji (small body with relatively large wicks).
Calculating the stochastic ATR patterns across two periods in order to normalize the ATR behavior for comparison.
Calculating the delta between those stochastic ATRs
Calculating the stochastic patterns of the delta between the stochastic ATRs to add further sensitivity to the comparison between candles.
How to Use
Volume Hammer
When a bright yellow bar appears in the lower window it means that the ratio of relative volume to relative price movement is very high, which indicates that a volatile move will occur within the next candle or so. In this scenario using a small risk that is not much larger than the candle itself can be paired with a large reward/risk ratio when setting a take profit target.
For example, if the body of a candle has a range of less than $0.02 and the full candle is less than $0.10 in range, then a $0.10 stop can be used with the expectation that the large volume will generate a volatile move in one direction or the other. The expected move is generally 3x the size of the full candle, but typically more.
Sometimes, however, that 3x move will reverse and turn into even a larger move in the opposite direction if a key support or resistance level is hit. So, it is very useful to use this indicator with a tool that can identify key support/demand zones and resistance/supply zones such as the Magic Order Blocks or QQQ and SPY Price Levels for equities based on the NASDAQ and S&P 500. It can also be combined with indicators that provide upper and lower bounds like Magic Linear Regression Channel , ATR Bands (Keltner Channel) Wick and SRSI Signals , and/or Bollinger Band Wick and SRSI Signals .
Additionally, the bright yellow candles have color-coded indicators that reflect the behavior of preceding volume behavior.
- Orange Dot - 3 consecutive candles of increasing volume
- Green Dot - 3 consecutive candles of increasing volume with a bullish candle pattern
- Red Dot - 3 consecutive candles of increasing volume with a bearish candle pattern
- Blue Dot - 2 consecutive candles of increasing volume followed by a candle with volume that is greater than the starting candle.
These only reflect the volume and candle pattern. They can provide insight, but should not be used as buy or sell signals, especially when encountered at key price levels.
Engulfing Candle Pattern
Frequently, the bright yellow bar in the lower window will be followed by an engulfing candle in the main chart. Engulfing candle patterns can themselves be useful on their own in a market that is not highly volatile. They tend to be indicative of price reversals, or trend continuations following consolidation. Following an engulfing candle, risk can be set at the “far end” of the candle with the expectation that if it does accurately define the direction, then the price will be less likely to go back to the candle’s starting price.
Other Usage Notes and Limitations
Occasionally a large gray bar will appear that is above the relative volume to relative candle size threshold. This indicates that although there is little price movement when compared to the volume, the actual volume is trailing off. This could lead to a quick move in a bullish or bearish direction, but it potentially would not be as sustained as in the case where volume has been consistently rising.
There are also faded yellow bars that appear when volume is increasing when the relative price movement is small. However, when the ratio of the relative volume is not large enough when compared to the price movement (i.e. it does not meet the threshold requirement) its color remains a dim yellow color.
It's important for traders to be aware of the limitations of any indicator and to use them as part of a broader, well-rounded trading strategy that includes risk management, fundamental analysis, and other tools that can help with reducing false signals, determining trend direction, and providing additional confirmation for a trade decision. Diversifying strategies and not relying solely on one type of indicator or analysis can help mitigate some of these risks.
Inside Bar Multi-Currency ScannerDescription:
This script is an Inside Bar Scanner that allows you to monitor multiple currency pairs across different timeframes (15 minutes, 1 hour, and 4 hours). Its main features include:
Inside Bar Detection:
An Inside Bar is a candlestick where both the High and Low are within the range of the previous candle.
The script automatically identifies Inside Bars and displays the results in a table.
Customizable Timeframes:
Supports scanning in 15-minute, 1-hour, and 4-hour timeframes.
Results are displayed for each timeframe separately.
Multi-Currency Support:
Scan up to 10 currency pairs simultaneously.
Currency pairs are customizable and selected by the user.
Candle Coloring:
Inside Bars are highlighted with colors:
Semi-transparent green for bullish Inside Bars.
Semi-transparent red for bearish Inside Bars.
Colors are customizable and selected by the user.
Alerts:
Custom alerts for detecting Inside Bars in selected timeframes.
Receive notifications when an Inside Bar is detected in any of the selected currency pairs.
How to Use:
Select your desired currency pairs from the Scanner Currencies section.
Enable your preferred timeframes in the Scanner Timeframe section.
The script will display a table of results with Inside Bar information for each currency pair and timeframe.
Optionally, customize the candle colors in the Scanner InsideBar Color section.
Additional Explanation for Timeframe Status:
In each selected timeframe, there are three possible states for the candles:
Previous Candle is an Inside Bar:
Displayed with a green background and the symbol ✔.
Previous Candle is NOT an Inside Bar:
Displayed with a red background and the symbol ✘.
Current Candle is an Inside Bar:
Displayed with an orange background and the symbol ⌕.
These visual indicators provide a clear and quick overview of the Inside Bar status for each selected currency pair and timeframe.
First-Principles Market Structure Explorer - Impulse Finder The goal of this script is to identify meaningful impulses instead of trying to find the trend by looking at volume asymmetry.
The assumption going into making this was that the market is nothing more than impulses followed by directional drift with those impulses eating up large amounts of liquidity in short periods letting drift have a direction.
The First-Principles Market Structure Explorer is a sophisticated TradingView indicator designed to analyze market dynamics by identifying significant price clusters, measuring volatility asymmetry, and evaluating price acceleration. By focusing on fundamental market principles, it provides traders with insights into potential support and resistance zones, as well as the strength of price movements away from these zones.
Key Features:
Price-Level Clustering: Segments recent price data into user-defined bins, assessing volume and time within each bin to identify significant price clusters.
Volatility Analysis: Calculates the standard deviation of price changes over a specified lookback period, distinguishing between upward and downward movements to determine volatility asymmetry.
Price Acceleration Measurement: Computes price acceleration by analyzing changes in price velocity, offering insights into the momentum behind price movements.
Bounce Strength Evaluation: Measures the strength of price movements after exiting significant clusters, aiding in the assessment of breakout or reversal potential.
How to Use:
Configure Input Parameters:
Lookback Length for Clustering: Defines the number of bars to consider for clustering analysis.
Volatility Lookback: Sets the period over which volatility is calculated.
Price Bin Width for Clustering: Determines the granularity of price bins used in clustering.
Min Volume Std Dev for Cluster Significance: Specifies the threshold for a cluster to be considered significant based on volume.
Min Time Persistence Bars: Sets the minimum number of bars a price must remain within a bin to qualify as a persistent zone.
Bounce Strength Lookahead Bars: Defines the number of bars to evaluate after exiting a cluster to measure bounce strength.
Interpret the Plots:
Horizontal Lines: Represent significant price clusters, with color intensity indicating relative volume at each level.
Volatility Asymmetry Plot: Shows the difference between upward and downward volatility, highlighting directional bias.
Bounce Strength Plot: Measures the strength of price movement after leaving a cluster, assisting in evaluating breakout potential.
Limitations:
Historical Analysis: The indicator analyzes past data and may not predict future market movements with certainty.
Parameter Sensitivity: Results can vary significantly based on input parameters; users should adjust settings to align with their specific trading strategies and market conditions.
Notes:
Ensure that the max_labels_count and max_lines_count parameters are set appropriately to accommodate the plotting needs of this script.
Regularly update input parameters to reflect changing market dynamics and maintain the relevance of the analysis.
This indicator is a powerful tool for traders seeking to understand market structure through first-principles analysis, offering a blend of volume, volatility, and price action insights to inform trading decisions.
ATR Multi-Timeframe (Trend Direction + Current Levels) Indicator Name
ATR Multi-Timeframe (Trend Direction + Current Levels)
Description
This indicator helps you visualize support and resistance levels based on the Average True Range (ATR) and track the current trend direction across multiple timeframes (daily, weekly, and monthly). It is a valuable tool for traders looking to enhance decision-making and market volatility analysis.
Key Features
Multi-Timeframe ATR Analysis:
Calculates the Average True Range (ATR) and True Range (TR) for daily, weekly, and monthly timeframes.
Trend Direction Indicators:
Displays trend direction using arrows (▲ for uptrend, ▼ for downtrend) with color-coded labels (green for uptrend, red for downtrend).
Support and Resistance Levels:
Dynamically calculates trend levels (Open ± ATR) and opposite levels for each timeframe.
Persistent lines extend these levels into the future for better visualization.
Customizable Settings:
Toggle visibility of daily, weekly, and monthly levels.
Adjust line width and colors for each timeframe.
Summary Table:
Displays a compact table showing ATR percentages, TR percentages, and trend direction for all timeframes.
Why Use This Indicator?
Quickly identify key support and resistance levels across different timeframes.
Understand market volatility through ATR-based levels.
Spot trends and reversals with easy-to-read visual elements.
How to Use:
Add the indicator to your chart.
Enable or disable specific timeframes (Daily, Weekly, Monthly) in the settings.
Adjust line styles and colors to match your preferences.
Use the displayed levels to plan entry/exit points or manage risk.
This indicator is perfect for both swing and intraday traders who want a clear and dynamic view of volatility and trend across multiple timeframes.
Fair Value Gap [by Oberlunar]Fair Value Gap
This indicator is designed to identify and display Fair Value Gaps (FVG) on the price chart. Fair Value Gaps are areas between candles where the price lacks continuity, leaving a "gap" that can serve as a reference point for price retracements. These zones are often considered important by traders as they represent market imbalances that tend to be "mitigated" (i.e., filled or tested) over time.
Purpose of Publication
This indicator addresses a common gap in FVG indicators. Most existing FVG indicators do not visually distinguish between mitigated (touched) FVGs and those that remain intact. With this indicator:
Mitigated FVGs are clearly displayed with distinct colors, allowing traders to identify which zones have been partially or fully filled by the price.
Unmitigated FVGs remain prominent, representing potential points of interest.
Key Features
Identification of Fair Value Gaps:
A Bullish FVG (upward gap) forms when the high of the three previous candles (candle -3) is lower than the low of the next candle (candle -1).
A Bearish FVG (downward gap) forms when the low of the three previous candles (candle -3) is higher than the high of the next candle (candle -1).
Dynamic Coloring:
Unmitigated FVGs are highlighted with specific colors: green for Bullish and red for Bearish gaps.
When an FVG is "touched" by the price (i.e., mitigated), the color changes:
Yellow-green for mitigated Bullish FVGs.
Purple for mitigated Bearish FVGs.
Handling Mitigated FVGs:
When an FVG is touched by the price, it is visually updated with a different color.
An option can be enabled to "shrink" the mitigated zone, adjusting the box to reflect the remaining untested portion of the gap.
Customization:
Configure the maximum number of FVGs to display on the chart.
Set specific colors for mitigated and unmitigated FVGs.
Choose whether to automatically shrink mitigated zones.
How to Identify Support and Resistance Levels
Support:
Bullish FVGs represent potential support levels, as they indicate areas where the price might return to seek liquidity or fill the imbalance.
An FVG that is repeatedly touched without being fully filled becomes a significant support zone.
Resistance:
Bearish FVGs represent potential resistance levels, indicating zones where the price might stall or reverse direction.
Why a Repeatedly Mitigated FVG is Significant
When an FVG is touched or mitigated multiple times, it means the market recognizes that area as significant. This can happen for several reasons:
Accumulation or Distribution: Institutional traders may use these zones to accumulate or distribute positions without causing excessive market movement.
Presence of Liquidity: FVGs often represent areas with pending orders (stop-losses, limit orders), and the price revisits these zones to seek liquidity.
Market Equilibrium: When an FVG is repeatedly filled, it indicates the market's attempt to balance a demand-supply imbalance. This makes the zone an important level to monitor for potential breakouts or reversals.
Intrabar BoxPlotThe Intrabar BoxPlot publication highlights an uncommon technique by displaying statistical intrabar Lower Timeframe (LTF) values on the chart.
🔶 USAGE
🔹 Middle 50% Boxes
By showing the middle 50% intrabar values through a box, we can more easily see where the intrabar activity is mainly situated.
The middle 50% intrabar values are referred to from here on as Interquartile range (IQR).
In this example, the successive IQRs form a channel where the price eventually breaks out.
Disproportionately distributed values can give insights which can be used to find potential support/resistance areas.
IQR gaps can give valuable information as well. Potentially, the price can return to these gaps.
Seeing the IQR areas against regular candles gives an alternative image of the underlying price movements.
🔹 Highest volume Price level
The script displays the price level with the highest volume situated, dependable on the user's source setting. Setting the source at 'close' will only display intrabar close values; the same goes for high, low, ...
As seen in the above example, the volume levels can aid in finding support/resistance.
🔹 Median
The location of the median off all intrabar values is displayed as a coloured dot: green when the close price is higher than the opening price and red if otherwise. The median can give valuable insights into price movements.
🔹 Outliers
Medium (white dots) and extreme (white X) outliers, in combination with the IQR box, can help identify potential areas of interest.
🔹 Volume Delta
When there is a discrepancy between the delta volume and direction of the candle, this will be displayed as follows:
Green candle: when the sum of the volume of red intrabars is higher than the sum of the volume of green intrabars, the candle will be coloured orange.
Red candle: when the sum of the volume of green intrabars is higher than the sum of the volume of red intrabars, the candle will be coloured blue.
🔹 Highlight Boxplot only
Probably the easiest way to display boxplot only is by changing the Bar's style to Bars .
🔶 DETAILS
All intrabar values (Lower TimeFrame - LTF) are sorted and evaluated. Values can be close , high , low , ... by selecting this in Settings ( source ).
The middle 50% of all values are displayed as a box; this contains the values between percentile 25 (p25) and percentile 75 (p75). The value of percentile rank 75 means 75% of all values are lower. The value of percentile rank 25 means 25% of all values are lower, or 75% is higher.
The difference between p75 and p25 is also known as Interquartile range (IQR)
IQR is used to check for outliers.
Wiki: Boxplot , Interquartile range
Extreme high: maximum value, higher than p75 + IQR*3
Max outlier high: maximum value, higher than p75 + IQR*1.5 but lower than p75 + IQR*3
Max: maximum value, lower than p75 + IQR*1.5
Min: minimum value, higher than p25 - IQR*1.5
Min outlier low: minimum value, lower than p25 - IQR*1.5 but higher than p25 - IQR*3
Extreme low: minimum value, lower than p25 - IQR*3
Max and min must not be interpreted with the current candle high/low.
🔹 Example: Length of chart-puppets
The following example can make it easier to digest. Forty "chart-puppets" are sorted by their length.
The p25 value is 97
The p50 value is 120
The p75 value is 149
75% of all "chart-puppets" are smaller than p75, and 25% is larger than p75.
50% of all "chart-puppets" are smaller than p50, and 50% is larger than p50 (= median).
25% of all "chart-puppets" are smaller than p25, and 75% is larger than p25.
IQR = 149 - 97 = 52
Extreme outlier limit max: p75 + IQR*3 = 149 + 52*3 = 305
Mild outlier limit max: p75 + IQR*1.5 = 149 + 52*1.5 = 227
Mild outlier limit min: p25 - IQR*1.5 = 97 - 52*1.5 = 19
Extreme outlier limit min: p25 - IQR*3 = 97 - 52*3 = -59
In this example there are no outliers to be found, all values are located between p25 - IQR*1.5 (19) and p75 + IQR*1.5. (227)
🔹 Source settings
Note that results are dependable on the chosen source (settings). When, for example, close is chosen as the source, only intrabar close prices are included. This means a low or high can stretch further then the min or max.
Here we can see different results with different source settings
🔹 LTF settings
When 'Auto' is enabled (Settings, LTF), the LTF will be the nearest possible x times smaller TF than the current TF. When 'Premium' is disabled, the minimum TF will always be 1 minute to ensure TradingView plans lower than Premium don't get an error.
Examples with current Daily TF (when Premium is enabled):
500 : 3 minute LTF
1500 (default): 1 minute LTF
5000: 30 seconds LTF (1 minute if Premium is disabled)
🔶 SETTINGS
Source: Set source at close, high, low,...
🔹 LTF
LTF: LTF setting
Auto + multiple: Adjusts the initial set LTF
Premium: Enable when your TradingView plan is Premium or higher
🔹 Intrabar Delta : Colors, dependable on different circumstances.
Up: Price goes up, with more bullish than bearish intrabar volume.
Up-: Price goes up, with more bearish than bullish intrabar volume.
Down: Price goes down, with more bearish than bullish intrabar volume.
Down+: Price goes down, with more bullish than bearish intrabar volume.
🔹 Table
Show table: Show details at the top right corner
Show TF: Show LTF at the bottom right corner
Text color/table size
See DETAILS for more information
PO3 ExotradesPO3 Exotrades Indicator
The PO3 Exotrades indicator is designed to provide an advanced and customizable way to visualize market trends on higher timeframes. It displays scaled and color-coded candles with precise wick and body structures for better chart analysis. This indicator is ideal for traders who want to analyze and monitor higher timeframe (HTF) market data directly on lower timeframe charts.
Key Features:
Scaled and Customizable Candles: The indicator allows for adjustable candle size and spacing, making it suitable for different trading styles and preferences. You can scale up or down the candle body width while maintaining the original height to ensure accurate visual representation.
Color-Coding for Market Direction: The indicator automatically colors the body of the candles based on the market's trend. Green represents a bullish candle, while red represents a bearish candle, giving quick visual cues for price movement direction.
Wicks Visualization: The indicator also visualizes the wicks of the candles, providing detailed insight into price action and volatility. Wicks can be color-customized for both bullish and bearish movements.
Timeframe Customization: You can set the timeframe (TF) to your preferred value, allowing for flexibility in analyzing high timeframe candles on lower timeframe charts.
Chart Trading (CRT) Friendly: Ideal for Chart Trading (CRT), the indicator's clean and clear visuals help traders spot key market signals more effectively, making it a perfect tool for those who engage in intra-day or long-term chart trading.
User-Friendly Adjustments: Customize the appearance of the candles, wicks, and their spacing to suit your preferences, enhancing your chart analysis and trading strategy.
How to Use:
Apply the PO3 Exotrades indicator to your chart.
Adjust the scale to increase or decrease the candle width for better visual clarity.
Use the indicator's color-coded candles to identify bullish and bearish market conditions quickly.
Analyze the wick structures to understand volatility and price action during key market movements.
Leverage the HTF data on lower timeframes to align your trading strategies with higher timeframe trends, optimizing your entries and exits.
Whether you're a scalper, day trader, or swing trader, the PO3 Exotrades indicator enhances your technical analysis and provides an edge in your trading decisions by visualizing HTF data in a clear and actionable way.
Volume Delta Candles HTF [TradingFinder] LTF Volume Candles 🔵 Introduction
In financial markets, understanding the concepts of supply and demand and their impact on price movements is of paramount importance. Supply and demand, as fundamental pillars of economics, reflect the interaction between buyers and sellers.
When buyers' strength surpasses that of sellers, demand increases, and prices tend to rise. Conversely, when sellers dominate buyers, supply overtakes demand, causing prices to drop. These interactions play a crucial role in determining market trends, price reversal points, and trading decisions.
Volume Delta Candles offer traders a practical way to visualize trading activity within each candlestick. By integrating data from lower timeframes or live market feeds, these candles eliminate the need for standalone volume indicators.
They present the proportions of buying and selling volume as intuitive colored bars, making it easier to interpret market dynamics at a glance. Additionally, they encapsulate critical metrics like peak delta, lowest delta, and net delta, allowing traders to grasp the market's internal order flow with greater precision.
In financial markets, grasping the interplay between supply and demand and its influence on price movements is crucial for successful trading. These fundamental economic forces reflect the ongoing balance between buyers and sellers in the market.
When buyers exert greater strength than sellers, demand dominates, driving prices upward. Conversely, when sellers take control, supply surpasses demand, and prices decline. Understanding these dynamics is essential for identifying market trends, pinpointing reversal points, and making informed trading decisions.
Volume Delta Candles provide an innovative method for evaluating trading activity within individual candlesticks, offering a simplified view without relying on separate volume indicators. By leveraging lower timeframe or real-time data, this tool visualizes the distribution of buying and selling volumes within a candle through color-coded bars.
This visual representation enables traders to quickly assess market sentiment and understand the forces driving price action. Buyer and seller strength is a critical concept that focuses on the ratio of buying to selling volumes. This ratio not only provides insights into the market's current state but also serves as a leading indicator for detecting potential shifts in trends.
Traders often rely on volume analysis to identify significant supply and demand zones, guiding their entry and exit strategies. Delta Candles translate these complex metrics, such as Maximum Delta, Minimum Delta, and Final Delta, into an easy-to-read visual format using Japanese candlestick structures, making them an invaluable resource for analyzing order flows and market momentum.
By merging the principles of supply and demand with comprehensive volume analysis, tools like the indicator introduced here offer unparalleled clarity into market behavior. This indicator calculates the relative strength of supply and demand for each candlestick by analyzing the ratio of buyers to sellers.
🔵 How to Use
The presented indicator is a powerful tool for analyzing supply and demand strength in financial markets. It helps traders identify the strengths and weaknesses of buyers and sellers and utilize this information for better decision-making.
🟣 Analyzing the Highest Volume Trades on Candles
A unique feature of this indicator is the visualization of price levels with the highest trade volume for each candlestick. These levels are marked as black lines on the candles, indicating prices where most trades occurred. This information is invaluable for identifying key supply and demand zones, which often act as support or resistance levels.
🟣 Trend Confirmation
The indicator enables traders to confirm bullish or bearish trends by observing changes in buyer and seller strength. When buyer strength increases and demand surpasses supply, the likelihood of a bullish trend continuation grows. Conversely, decreasing buyer strength and increasing seller strength may signal a potential bearish trend reversal.
🟣 Adjusting Timeframes and Calculation Methods
Users can customize the indicator's candlestick timeframe to align with their trading strategy. Additionally, they can switch between moving average and current candle modes to achieve more precise market analysis.
This indicator, with its accurate and visual data display, is a practical and reliable tool for market analysts and traders. Using it can help traders make better decisions and identify optimal entry and exit points.
🔵 Settings
Lower Time Frame Volume : This setting determines which timeframe the indicator should use to identify the price levels with the highest trade volume. These levels, displayed as black lines on the candlesticks, indicate prices where the most trades occurred.
It is recommended that users align this timeframe with their primary chart’s timeframe.
As a general rule :
If the main chart’s timeframe is low (e.g., 1-minute or 5-minute), it is better to keep this setting at a similarly low timeframe.
As the main chart’s timeframe increases (e.g., daily or weekly), it is advisable to set this parameter to a higher timeframe for more aligned data analysis.
Cumulative Mode :
Current Candle : Strength is calculated only for the current candlestick.
EMA (Exponential Moving Average) : The strength is calculated using an exponential moving average, suitable for identifying longer-term trends.
Calculation Period : The default period for the exponential moving average (EMA) is set to 21. Users can modify this value for more precise analysis based on their specific requirements.
Ultra Data : This option enables users to view more detailed data from various market sources, such as Forex, Crypto, or Stocks. When activated, the indicator aggregates and displays volume data from multiple sources.
🟣 Table Settings
Show Info Table : This option determines whether the information table is displayed on the chart. When enabled, the table appears in a corner of the chart and provides details about the strength of buyers and sellers.
Table Size : Users can adjust the size of the text within the table to improve readability.
Table Position : This setting defines the table’s placement on the chart.
🔵 Conclusion
The indicator introduced in this article is designed as an advanced tool for analyzing supply and demand dynamics in financial markets. By leveraging buyer and seller strength ratios and visually highlighting price levels with the highest trade volume, it aids traders in identifying key market zones.
Key features, such as adjustable analysis timeframes, customizable calculation methods, and precise volume data display, allow users to tailor their analyses to market conditions.
This indicator is invaluable for analyzing support and resistance levels derived from trade volumes, enabling traders to make more accurate decisions about entering or exiting trades.
By utilizing real market data and displaying the highest trade volume lines directly on the chart, it provides a precise perspective on market behavior. These features make it suitable for both novice and professional traders aiming to enhance their analysis and trading strategies.
With this indicator, traders can gain a better understanding of supply and demand dynamics and operate more intelligently in financial markets. By combining volume data with visual analysis, this tool provides a solid foundation for effective decision-making and improved trading performance. Choosing this indicator is a significant step toward refining analysis and achieving success in complex financial markets.
Support and Resistance TrendlinesStrategy:
Support: Identified as the lowest low over a specific period.
Resistance: Identified as the highest high over a specific period.
Dynamic Trendlines: We’ll use the concept of a rolling window to calculate the highest highs and lowest lows over the last n bars (you can adjust the number of bars for more sensitivity).
Explanation:
Lookback Period (length): The number of bars over which we calculate the support and resistance levels. You can adjust this value depending on the timeframe and the sensitivity you want for the trendlines.
Resistance: This is the highest high over the length of bars. We use ta.highest(high, length) to find the highest high within the specified lookback period.
Support: This is the lowest low over the length of bars. We use ta.lowest(low, length) to find the lowest low within the specified lookback period.
Plotting the Lines:
We plot the support and resistance as horizontal lines on the chart using plot().
Additionally, we create dynamic trendlines that update automatically with each new bar. The line.new function creates lines that can be modified dynamically as new price data comes in.
Line Persistence:
The line functions are used to create horizontal lines that persist across bars. The trendlines adjust their position as the bars move forward.
How It Works:
This indicator will automatically detect the highest and lowest prices over the last n bars and draw support (green line) and resistance (red line) levels on the chart.
The trendlines will adjust as the market evolves and provide visual reference points for potential areas of price reversal.
How to Use This Script:
Copy and paste the Pine Script code into the Pine Script Editor on TradingView.
Save the script, and then add it to your chart.
Adjust the Lookback Period input to suit your trading strategy and timeframe.
The support and resistance levels will be drawn dynamically, and the lines will update as new bars form.
Customizations:
You can modify the number of bars (length) used to calculate support and resistance, depending on the timeframes you're interested in.
If you need more advanced trendline drawing (such as drawing trendlines between significant high/low points or automatic adjustment to more complex patterns), you might need to implement more advanced logic using peaks and valleys or price action patterns.
Let me know if you need any further adjustments!
Alert Kabi Family Unlimited Alarm indicator for any time frame and any type of currency, stock and index
اندییکاتور آلارم نامحدود برای هر تایم فریم و هر شاخص و ارز و سهام
Settings :
1- Before starting, clear all alarms in the trading view alarm section
2- Specify your alarm areas and currency pairs in the indicator settings section
3- Go to the trading view alarm section, click create alert, select the name of the indicator and click OK
4- Good Luck
T e L : @Ar3781
1- قبل از شروع تمام آلارم های تریدینگ ویو را پاک کنید
2- در قسمت تنظیمات اندیکاتور نواحی آلارم و جفت ارز خود را مشخص کنید
3- به قسمت الارم تریدینگ ویو رفته ایجاد هشدار را زده و اسم اندیکاتور را انتخاب کنید و اوکی کنید
4- مـــــــوفق بــــــاشـید
Inside barИндикатор, который подсвечивает внутренний бар. Не использовать в качестве сигнального индикатора.
Percent Movement HighlighterThe Percent Movement Highlighter is a custom TradingView indicator that visually highlights candles based on their percentage movement relative to the previous day's close. The indicator uses two user-defined thresholds:
Positive Threshold: Marks candles that move up by a specified percentage or more.
Negative Threshold: Marks candles that move down by a specified percentage or more.
Features:
Visual Highlights:
Green candles for upward moves exceeding the positive threshold.
Red candles for downward moves exceeding the negative threshold.
Dynamic Counters:
Displays a summary label that counts the number of positive, negative, and neutral candles dynamically as the chart progresses.
User Inputs:
Customizable positive and negative percentage thresholds to suit different trading strategies.
This tool is useful for traders seeking to identify significant price movements and analyze market volatility efficiently.