Weight Gain 4000 - (Adjustable Volume Weighted MA) - [mutantdog]Short Version:
This is a fairly self-contained system based upon a moving average crossover with several unique features. The most significant of these is the adjustable volume weighting system, allowing for transformations between standard and weighted versions of each included MA. With this feature it is possible to apply partial weighting which can help to improve responsiveness without dramatically altering shape. Included types are SMA, EMA, WMA, RMA, hSMA, DEMA and TEMA. Potentially more will be added in future (check updates below).
In addition there are a selection of alternative 'weighted' inputs, a pair of Bollinger-style deviation bands, a separate price tracker and a bunch of alert presets.
This can be used out-of-the-box or tweaked in multiple ways for unusual results. Default settings are a basic 8/21 EMA cross with partial volume weighting. Dev bands apply to MA2 and are based upon the type and the volume weighting. For standard Bollinger bands use SMA with length 20 and try adding a small amount of volume weighting.
A more detailed breakdown of the functionality follows.
Long Version:
ADJUSTABLE VOLUME WEIGHTING
In principle any moving average should have a volume weighted analogue, the standard VWMA is just an SMA with volume weighting for example. Actually, we can consider the SMA to be a special case where volume is a constant 1 per bar (the value is somewhat arbitrary, the important part is that it's constant). Similar principles apply to the 'elastic' EVWMA which is the volume weighted analogue of an RMA. In any case though, where we have standard and weighted variants it is possible to transform one into the other by gradually increasing or decreasing the weighting, which forms the basis of this system. This is not just a simple multiplier however, that would not work due to the relative proportions being the same when set at any non zero value. In order to create a meaningful transformation we need to use an exponent instead, eg: volume^x , where x is a variable determined in this case by the 'volume' parameter. When x=1, the full volume weighting applies and when x=0, the volume will be reduced to a constant 1. Values in between will result in the respective partial weighting, for example 0.5 will give the square root of the volume.
The obvious question here though is why would you want to do this? To answer that really it is best to actually try it. The advantages that volume weighting can bring to a moving average can sometimes come at the cost of unwanted or erratic behaviour. While it can tend towards much closer price tracking which may be desirable, sometimes it needs moderating especially in markets with lower liquidity. Here the adjustability can be useful, in many cases i have found that adding a small amount of volume weighting to a chosen MA can help to improve its responsiveness without overpowering it. Another possible use case would be to have two instances of the same MA with the same length but different weightings, the extent to which these diverge from each other can be a useful indicator of trend strength. Other uses will become apparent with experimentation and can vary from one market to another.
THE INCLUDED MODES
At the time of publication, there are 7 included moving average types with plans to add more in future. For now here is a brief explainer of what's on offer (continuing to use x as shorthand for the volume parameter), starting with the two most common types.
SMA: As mentioned above this is essentially a standard VWMA, calculated here as sma(source*volume^x,length)/sma(volume^x,length). In this case when x=0 then volume=1 and it reduces to a standard SMA.
RMA: Again mentioned above, this is an EVWMA (where E stands for elastic) with constant weighting. Without going into detail, this method takes the 1/length factor of an RMA and replaces it with volume^x/sum(volume^x,length). In this case again we can see that when x=0 then volume=1 and the original 1/length factor is restored.
EMA: This follows the same principle as the RMA where the standard 2/(length+1) factor is replaced with (2*volume^x)/(sum(volume^x,length)+volume^x). As with an RMA, when x=0 then volume=1 and this reduces back to the standard 2/(length+1).
DEMA: Just a standard Double EMA using the above.
TEMA: Likewise, a standard Triple EMA using the above.
hSMA: This is the same as the SMA except it uses harmonic mean calculations instead of arithmetic. In most cases the differences are negligible however they can become more pronounced when volume weighting is introduced. Furthermore, an argument can be made that harmonic mean calculations are better suited to downtrends or bear markets, in principle at least.
WMA: Probably the most contentious one included. Follows the same basic calculations as for the SMA except uses a WMA instead. Honestly, it makes little sense to combine both linear and volume weighting in this manner, included only for completeness and because it can easily be done. It may be the case that a superior composite could be created with some more complex calculations, in which case i may add that later. For now though this will do.
An additional 'volume filter' option is included, which applies a basic filter to the volume prior to calculation. For types based around the SMA/VWMA system, the volume filter is a WMA-4, for types based around the RMA/EVWMA system the filter is a RMA-2.
As and when i add more they will be listed in the updates at the bottom.
WEIGHTED INPUTS
The ohlc method of source calculations is really a leftover from a time when data was far more limited. Nevertheless it is still the method used in charting and for the most part is sufficient. Often the only important value is 'close' although sometimes 'high' and 'low' can be relevant also. Since we are volume weighting however, it can be useful to incorporate as much information as possible. To that end either 'hlc3' or 'hlcc4' tend to be the best of the defaults (in the case of 24/7 charting like crypto or intraday trading, 'ohlc4' should be avoided as it is effectively the same as a lagging version of 'hlcc4'). There are many other (infinitely many, in fact) possible combinations that can be created, i have included a few here.
The premise is fairly straightforward, by subtracting one value from another, the remaining difference can act as a kind of weight. In a simple case consider 'hl2' as simply the midrange ((high+low)/2), instead of this using 'high+low-open' would give more weight to the value furthest from the open, providing a good estimate of the median. An even better estimate can be achieved by combining that with 'high+low-close' to give the included result 'hl-oc2'. Similarly, 'hlc3' can be considered the basic mean of the three significant values, an included weighted version 'hlc2-o2' combines a sum with subtraction of open to give an estimated mean that may be more accurate. Finally we can apply a similar principle to the close, by subtracting the other values, this one potentially gets more complex so the included 'cc-ohlc4' is really the simplest. The result here is an overbias of the close in relation to the open and the midrange, while in most cases not as useful it can provide an estimate for the next bar assuming that the trend continues.
Of the three i've included, hlc2-o2 is in my opinion the most useful especially in this context, although it is perhaps best considered to be experimental in nature. For that reason, i've kept 'hlcc4' as the default for both MAs.
Additionally included is an 'aux input' which is the standard TV source menu and, where possible, can be set as outputs of other indicators.
THE SYSTEM
This one is fairly obvious and straightforward. It's just a moving average crossover with additional deviation (bollinger) bands. Not a lot to explain here as it should be apparent how it works.
Of the two, MA1 is considered to be the fast and MA2 is considered to be the slow. Both can be set with independent inputs, types and weighting. When MA1 is above, the colour of both is green and when it's below the colour of both is red. An additional gradient based fill is there and can be adjusted along with everything else in the visuals section at the bottom. Default alerts are available for crossover/crossunder conditions along with optional marker plots.
MA2 has the option for deviation bands, these are calculated based upon the MA type used and volume weighted according to the main parameter. In the case of a unweighted SMA being used they will be standard Bollinger bands.
An additional 'source direct' price tracker is included which can be used as the basis for an alert system for price crossings of bands or MAs, while taking advantage of the available weighted inputs. This is displayed as a stepped line on the chart so is also a good way to visualise the differences between input types.
That just about covers it then. The likelihood is that you've used some sort of moving average cross system before and are probably still using one or more. If so, then perhaps the additional functionality here will be of benefit.
Thanks for looking, I welcome any feedack
Search in scripts for "liquidity"
MTF fair value gap v2 thigh gaps yumwell load in 2 FVG indicators one for current chart then one for MTF of interest.
Higher timeframe FVGs are more important and can be used for bias or even targets for internal liquidity.
big thanks @shanxia for basically re-doing the FVGs into arrays hehehe..
Can now delete mitigated or change mitigated color..
I dont know who uses extensions but if you want to suffer in your private time then go ahead...
pre sure this is the sexiest FVG indicator validate me in the description pls
Relative Volume Force IndexThis indicator can anticipate the market movements. Its posible because it calculates how much force (volume) it's necessary to move the price up or down. If it's necessary a lot of volume to move the price a little it's a reversion signal, but if a little volume could change the price whit elevate volatility, it's signal of reversion too. The indicator plots red if the market is down, and green if it's up, the size and the color of the bars cand demonstrate the movement relative force. Does it by the configurable averages. Not works well whit poor liquidity.
Swing Failure Pattern by EmreKbThe indicator detect to swing failure pattern and shows it.
Swing Failure Pattern (or SFP) is a type of reversal pattern in which (swing) traders target stop-losses above a key swing low or below a key swing high to push the price in the other direction by generating enough liquidity.
AMD Setup - Full (Long + Short) ICT ModelICTSNIPERKILLS!
Accumulation, Manipulation, Distribution (AMD) Script!
1. Clarifies Structure: Accumulation, Manipulation, Distribution (AMD)
The script visualizes the AMD framework:
Accumulation → Price ranges inside Initial Balance (IB).
Manipulation → Liquidity sweep above IB High or below IB Low.
Distribution → Market Structure Shift (MSS) confirms a directional move.
This gives you a narrative structure for each session, helping you avoid random trades.
🧠 2. Filters Out Noise with MSS Confirmation
It waits for:
A liquidity sweep (manipulation),
Followed by a market structure shift (MSS),
And then confirms an entry only after a candle closes beyond structure.
This structure:
Reduces false signals,
Improves trade timing,
Helps you align with smart money delivery.
🕘 3. Focuses on the Right Time Window (Initial Balance)
You only engage after the 10:30 AM EST close, once the Initial Balance is formed.This aligns with ICT's focus on:
Killzones (like 9:30–11:00),
Avoiding early overtrading,
Letting the market tip its hand first (through sweeps + MSS).
This timing logic supports discipline and consistency.
🟢🔴 4. Marks Entries with Risk/Reward Guidance
It plots:
AMD SHORT / LONG entries after MSS + candle confirmation,
Basic TP and SL visual markers using a static risk-reward (2:1),
Optional Fair Value Gaps (FVGs) for refinement zones.
While static, these help plan trades visually and frame targets quickly, especially if you're scalping or trading micro futures like MNQ.
📈 5. Alerts You in Real Time
Instead of manually watching:
You'll get alerts when sweeps or MSS setups appear.
You can stay focused during the killzone or walk away and return when signals trigger.
This supports patience and alert-based discipline.
💡
You already:
Use 15M/1M execution,
Wait for ERL or HOD/LOD sweeps,
Look for MSS + CISD,
Trade in killzones only,
Target 50–62–70% Fibs with SMT/FVG confluence.
This script:✅ Automates sweep + MSS detection✅ Plots AMD-based entries visually✅ Simplifies your killzone execution✅ Helps avoid FOMO by filtering setups✅ Keeps your journal entries clean with structure
Financial DeepeningFinancial Deepening is defined as increases in the ratio of a country's financial assets to its GDP. It has the effect of increasing liquidity. Having access to money can provide more opportunities for investment growth. If done properly financial deepening can increase the country's resilience and boost economic growth.
US Money Supply M2 / US GDP. (ratio)
AltSessionHello World
It’s no secret that trading sessions play a massive role in market movement and liquidity. We can clearly see in the image about how important identifying international trading hours are for a trader.
The Asian session starts around 1am GMT and often has a bearish bias through this session lasting for a few hours, after which Frankfurt and London traders start to come online and can often reverse the Asian sentiment.
The London session is the best session to trade traditionally starting around 7am GMT before the American traders come online and reverse market once again.
We have designed this indicator to help identify different trading hours easily with a background shade on the chart and also high/lows of the training session, as these levels can often be revisited.
We hope you find this indicator useful and please feel free to drop a comment if you have any updates you wish to be made or any future indicator script ideas, thank you.
3 Seas RSI Wave OscillatorTraditional Triple RSI Oscillator combining a Fast, Normal, and Slow RSI to achieve high accuracy entry and exit strategies. This indicator is UNIQUE because it uses a mathematical filter to trim false signals from the RSI, thus creating a reliable RSI driven entry and exit indicator represented by red and green arrows. For additional functionality divergences are identified and live plotted. UNIQUELY Alongside the 0 axis an OBV function is charted relative to the RSI to allow OBV and RSI divergences to be observed on equal mathematical scales, this is exceedingly useful to observe relative strength at pools of liquidity. The three main configured RSI's are also plotted for traditional usage case but can be removed.
Green arrow indicates a Buy opportunity optimized for standard Dollar Cost Averaging strategies.
Red arrow indicates a Sell opportunity optimized for standard Dollar Cost Averaging strategies.
Not Financial Advice.
EBB & Flow: a multi-EMA-based BB cloudIntro
This is an idea evolved out of the market maker method and EMA convergence, divergence, and mean reversion.
The market maker method informs us that the 5, 13, 50 and 200 EMAs are important to regulating price. Those EMA lengths are multiples of the 50 and 200 on lower major timeframes -- the 1 minute, 5, 15, 1H, 4H, 1D. I include the 21 because it is also a multiple and in crypto very often respected.
When market makers are testing price, they set their range and spike in the direction they test for liquidity. This can get chaotic. For instance, in a shorter time frame consolidation inside a bigger timeframe uptrend, it can be too easy to forget where you are in the many trends playing out.
When the EMAs are dragged over each other during normal price movement, you get these crisscrossing tracks of price, and the individual breaks can be hard to trace.
The range is what matters, ultimately, and the range is dynamic. In that case, the Bollinger Band is a great tool for detecting outliers in this case.
The Answer
So the answer this indicator seeks to give, is to look for outliers. This gives you a scalping strategy built on Traders Reality thinking and best put together with the PVSRA indicator, which I may include in this indicator just for the sake of concision, but they can work alongside each other or separately.
The key thing is the different EMA clouds, which are bollinger bands. Tight bands mean imminent breaks, favouring the trend. Vector candles out of a zone, pins to the low/high, etc. are all very relevant alongside this indicator.
You can also use it on its own and scalp the breaks of a cloud.
How it works
Each cloud is a standard deviation from their respective EMA, all in the same colour. The deviation multiple is 1.618 by default. Yes, fibonacci sequences are usually nonsense, but it works better with the BB than 2, 2.5 or 3.
Using just the clouds, you can see where each EMA is headed and how it behaves within the deviation of the others.
But that on its own isn't enough.
The indicator will also print snowflakes above and below the candle for notable outliers. It will be in the colour of the cloud it breaks, but only if that break is also breaking the smaller EMA clouds too.
The most snowflakes will be yellow because that's the 13 EMA. That one is dependent on nothing else and every break will print a snowflake. The 21 will be dependent on the 13. The 50 dependent on the 13 and 21 breaks. The 200 the most important.
For example, if the 200 EMA-BB or EBB is broken at the upper band, deviating by more than 162% of price over a 200 period EMA, and that break is not above the 50 EMA cloud, there will be no snowflake. However, if it exceeds the 13, 21, 50, and 200 clouds, then a purple snowflake will appear above the bar.
Any snowflake is an extreme in price. The purple is an especially good point of entry. That doesn't mean it is a perfect entry. You can build position from it, though, and be relatively certain of a price correction in the near future, because not only was this major EMA cloud violated, but all of the smaller ones too.
Reminder
You still need your PVSRA and candlesticks. This indicator on its own may have a nice hit rate for scalping and building position, as an alternative to the TDI or alongside it, but it is not enough on its own, just like the TDI.
Enjoy!
Rolling Relative VolumeThis script sums the volume for the selected period and compares it to the selected period before that. It works on a rolling basis, so it is suitable for 24/7 markets such as crypto. That is the main difference between this and the regular RVOL indicator. Of course lower timeframes can also be selected for comparing changes in volume, but you should be aware how the times when markets are closed affect the calculation. For example, if used on stocks, the indicator will use the data that is available, meaning that the amount of data needed to calculate daily cumulative volume can be stretched out over a few days. If the stock session is 8 hours long, that comes out to 3 days.
There are 2 windows of reference when summing the volume:
1) The Recent volume window -> sums the volume between the current candle and the start of the window
2) The previous volume window -> sums the volume from the start of the current window until the start of the previous window
An example follows at the end :)
How to set up:
1) In settings, select the Timeframe; weekly, daily and hourly (W,D,H) are supported.
2) Choose the multiplier of the recent timeframe (for example 4 for cumulative volume over the last 4h)
3) Choose the multiplier of the previous timeframe (for example 8, if you want cumulative volume of the 8h before the start of the recent window)
Example:
Settings:
Timeframe: D
Recent volume multiplier: 3
Previous volume multiplier: 1
The chart set to 1h timeframe
This will calculate the cumulative volume for the past 24h, starting at the recent candle. Then it will calculate the cumulative volume for 72 hours before the start of the recent (24h) window. So in total it will need 24 + 72 = 96 hours of data to calculate.
After that it will compare the volume of the recent window with the average of the previous window. If values are above 1 the volume is increasing, if below 1 it is decreasing.
Why is this useful?
It's easy to spot changes in the volume and see if the volume is increasing and by how much, compared to previous days. Of course volume also drives liquidity. If volume is picking up, that could be the start of a bigger move.
WARNING!!!
Use on very low timeframes (1m, 3m) with big lookback periods (W) can break the script or make it execute very slowly due to the nature of the indicator.
Because this works on bar data it's possible that changing timeframes will change the calculation slightly. Generally, lower timeframes produce more accurate results, but take longer to calculate. The selected timeframe for the indicator should always be higher than the timeframe of the chart, otherwise the calculations won't make sense.
Leave a comment or send a DM for any improvements, bugs or ideas for automation / algo trading.
Y2050 Market Cap: GRINMethodology:
Composite of Bittrex and Poloniex to smoothen out the skewed values from lack of liquidity.
To be concise, the main advantage that a Y2050 market cap has over a 'regular' market cap is that it takes into account:
Inflation
What supply should be in the future
What the market cap could be in world of tomorrow
I'm having difficulty publishing the script so bear with me if the professional quality of the description is lacking. As always, I hope you are able to make use of this indicator and find new ways to create a consistent system to test out.
NB
Armando Bitmex Liquidation LevelsHi Guys!
- This script show you liquidations levels with leverage of 100X, 50X, 25X & 10X (shorts & longs).
- This indicator "only" works for XBT on Bitmex.
- Other indicators only show the liquidations up to 25X.
- You need to set the time frame according to your graph. e.g. 1, 60, 240, D, 3D, W, etc.
- The idea of this indicator is to help the user to determine those levels where Bitmex hunt liquidity.
Best Regards.
Armando M.
Thunder Cloud Suiteput together a few log space clouds generated by filled in MA's, 2 averages and a confirmed reversal meme i took from the gambit trading suite (dont have access to the code, made my own)
instructions
self explanatory by the pic above. long green bounces, short red ones.
no buzz words like liquidity. i apologize in advance. just trade the bloody thing
LongEntriesA composite signal only to be used by intraday traders . This was originally developed for Indian markets , NSE specifically , but can be applied in any other markets having equivalent liquidity. As the name suggests this currently work best for long signals.
BEATR CandlesThis script isolates candle sticks that are less than 50% of its range and those having range more than 100 period ATR.
These candles collectively help to follow the market movement based on the potential supply and demand nature of trading activities for a short period of time. This does not give any direct signal or does not scope for long term movement. Other parameters and the past movement of the price action can dictate the user to make decision on the potential validity of an entry/exit.
This can be applied to any market where the instruments have higher liquidity.
Pairs Volume FXCM mini accountScript shows the volume of the currency pairs in the FXCM mini account. I set it daily or weekly to see which pair is picking up in activity. My style of currency trading is short holds on the highest volatility. This helps me determine which pairs have the highest volume (or tick activity since there is no true exchange for currency). I use this in conjunction with the other script I wrote, "Pairs Range" which shows which pairs have the highest daily range. This script has a built in 5-sma on each pair. High daily range and high volume is volatility and liquidity. **** This does not include currencies in CHF ****
Forex Session OverlapApplies gray background coloring for each major active Forex session, the more sessions active the lighter the background. Adjusted coloring for low (Sydney, Tokyo) and high (Frankfurt, London, New York) liquidity. Market opening hours for Sydney, Tokyo, Frankfurt, London and New York have been set to 08:00 - 17:00 local time and are converted to EST while taking daylight saving time into account across regions (REMEMBER: configure manually!). Sessions can be turned on or off separately. By default this indicator hides itself in larger time-frames (>30min by default). Enabling session breaks or daily pivots helps distinguish between sessions.
ICT Plus © Trading Whale by SebasV🧠 ICT Plus © Trading Whale by SebasV
A comprehensive smart money concept (SMC) toolkit designed for traders looking to operate with institutional logic, precision, and structure.
🔍 What does this indicator do?
ICT Plus brings together the most powerful elements of price action and smart money strategies, combining them into a single, optimized indicator:
✅ Core Features:
Institutional Sweeps: Detects liquidity grabs with clean labeling and cooldown filters
Swing Highs & Lows: Visual structure mapping for trend analysis
Previous Day High & Low Levels: Automatically plots HOD/LOD with session separators
Market Structure: Identifies CHoCH & BOS based on customizable swing detection
Order Blocks & Breaker Blocks: With optional body-based validation and polarity tracking
Fair Value Gaps (FVG): Includes unmitigated level tracking and mitigation alerts
Scalping Signals: Fast-entry conditions using EMA, RSI, ADX, and confirmation with SuperTrend
Sweep Midpoint London Signal: Exclusive post-London logic with 200 EMA filter
Delta Volume Divergence: Spot hidden buying/selling pressure using cumulative delta and RSI
SuperTrend BIAS Summary Table: Quickly visualize multi-timeframe market bias
Fibonacci Golden Zone Tool: Projects swing-based 0.618 retracement zones with optional risk box
Full Alert System: Configurable alerts for all major signals and setups
📌 Recommendation:
Built for traders who follow ICT concepts, liquidity sweeps, and smart money frameworks, this tool is especially effective for those who combine structure, confluences, and volume-based divergence.
Timeframes from 1-minute to daily are supported. Best used in active sessions like London and New York
BAFD (Price Action For D.....s)🧠 Overview
This indicator combines multiple Moving Averages (MA) with visual price action elements such as Fair Value Gaps (FVGs) and Swing Points. It provides traders with real-time insight into trend direction, structural breaks, and potential entry zones based on institutional price behavior.
⚙️ Features
1. Multi MA Visualization (SMA & EMA)
- Plots short-, mid-, and long-term moving averages
- Fully customizable: MA type (SMA/EMA) and length per MA
- Dynamic color coding: green for bullish, red for bearish (based on close >/< MA)
2. Fair Value Gaps (FVG) Detection
Detects bullish and bearish imbalances using multiple logic types:
- Same Type: Last 3 candles move in the same direction
- Twin Close: Last 2 candles close in the same direction
- All: Shows all valid FVGs regardless of pattern
Gaps are marked with semi-transparent yellow boxes
Useful for identifying potential liquidity voids and retest zones
3. Swing Highs and Lows
- Automatically identifies major swing points
- Customizable sensitivity (strength setting)
Marked with subtle colored dots for structure identification or support/resistance mapping
📈 Use Cases
- Trend Identification: Visualize momentum on multiple timeframes
- Liquidity Mapping: Spot potential retracement zones using FVGs
- Confluence Building: Combine MA slope, FVG zones, and swing points for refined setups
🛠️ Customizable Settings
- Moving average type and length for each MA
- FVG logic selection and color
- Swing point strength
🔔 Note
This script does not generate buy/sell signals or alerts. It is designed as a visual decision-support tool for discretionary traders who rely on market structure, trend, and price action.
Delta Magnet Zone LiteDelta Magnet Zone Lite is exactly what it sounds like. It is areas where price cold potentially act as a magnet zone for price. Delta Magnet Zone Lite is a lightweight yet powerful visual tool that highlights potential liquidity traps and high-probability reversal zones based on volume spikes and wick imbalances. Designed for precision traders, this indicator visually marks key “magnet” zones where price may react, reverse, or consolidate due to prior aggressive buying or selling activity.
🔹 Core Logic:
Volume Spike Detection
Identifies candles with significantly higher volume than the moving average (customizable). These are likely areas of institutional interest or stop-hunt events.
Wick Ratio Analysis
Measures the size of the upper or lower wick relative to the total candle range. When combined with volume spikes, this helps detect:
Bullish Traps: Large lower wicks with strong buying volume
Bearish Traps: Large upper wicks with strong selling volume
Smart Zone Marking
When trap conditions are met, the script draws a semi-transparent colored box (green for bullish, red for bearish) that extends forward in time, highlighting a magnet zone—a price area likely to be retested or respected by future price action.
🛠 Customization Options:
Volume Spike Threshold
Adjust the multiplier for defining what qualifies as "high volume" relative to the average.
Wick Ratio Sensitivity
Fine-tune how extreme the wick size must be to qualify as a trap.
Zone Lifetime (Lookback)
Control how many bars each zone remains active on the chart.
Toggle Visibility
Turn bullish or bearish zones on/off independently for clean charting.
Ideal Use Cases:
Spotting hidden liquidity zones
Identifying exhaustion points in fast markets
Tracking institutional order imbalances
Enhancing confirmation for entry/exit signals
Whether you're trading intraday breakouts or swing-level reversals, Delta Magnet Zone Lite brings clarity to key reaction levels derived from raw price and volume behavior.
Time LevelsTime Levels is a customizable TradingView indicator designed to mark critical intraday price levels based on specific time inputs. This tool helps traders identify significant Open/High/Low/Close (OHLC) levels, support & resistance (S&R) zones, and potential Judas Swing manipulation points—aligned with selected timeframes and adjusted to any time zone via UTC offset.
🔧 Key Features:
OHLC/OLHC Levels: Automatically draws horizontal lines at the candle’s open price for up to four specified time points. Ideal for marking session opens, closes, or key intraday levels.
Support & Resistance Zones: Highlights two time-based S&R levels that can help identify discount and premium pricing zones.
Judas Swing Detection: Marks potential liquidity grab zones (Judas Swings) at three user-defined times, assisting in identifying manipulation and smart money entry points.
Global Timezone Support: Includes a UTC offset input to align levels accurately with your trading session, regardless of your location.
Full Customization: Personalize the color, style (solid, dashed, dotted), and thickness of each line independently for OHLC, S&R, and Judas levels.
🛠️ Use Cases:
New York / London open price tracking
ICT-based SMC level marking
Predefined time-based liquidity level visualizations
Institutional-level price reactions (e.g., during specific market opens)
This indicator is best suited for intraday and short-term (especially ICT) traders looking to bring precision and consistency into their technical analysis framework.
Dr Avinash Talele momentum indicaterTrend and Volatility Metrics
EMA10, EMA20, EMA50:
Show the percentage distance of the current price from the 10, 20, and 50-period Exponential Moving Averages.
Positive values indicate the price is above the moving average (bullish momentum).
Negative values indicate the price is below the moving average (bearish or corrective phase).
Use: Helps traders spot if a stock is extended or pulling back to support.
RVol (Relative Volume):
Compares current volume to the 20-day average.
Positive values mean higher-than-average trading activity (potential institutional interest).
Negative values mean lower activity (less conviction).
Use: High RVol often precedes strong moves.
ADR (Average Daily Range):
Shows the average daily price movement as a percentage.
Use: Higher ADR = more volatility = more trading opportunities.
50D Avg. Vol & 50D Avg. Vol ₹:
The 50-day average volume (in millions) and value traded (in crores).
Use: Confirms liquidity and suitability for larger trades.
ROC (Rate of Change) Section
1W, 1M, 3M, 6M, 12M:
Show the percentage price change over the last 1 week, 1 month, 3 months, 6 months, and 12 months.
Positive values (green) = uptrend, Negative values (red) = downtrend.
Use: Quickly see if the stock is gaining or losing momentum over different timeframes.
Momentum Section
1M, 3M, 6M:
Show the percentage gain from the lowest price in the last 1, 3, and 6 months.
Use: Measures how much the stock has bounced from recent lows, helping find strong rebounds or new leaders.
52-Week High/Low Section
From 52WH / From 52WL:
Show how far the current price is from its 52-week high and low, as a percentage.
Closer to 52WH = strong uptrend; Closer to 52WL = possible value or turnaround setup.
Use: Helps traders identify stocks breaking out to new highs or rebounding off lows.
U/D Ratio
U/D Ratio:
The ratio of up-volume to down-volume over the last 50 days.
Above 1 = more buying volume (bullish), Below 1 = more selling volume (bearish).
Use: Confirms accumulation or distribution.
How This Table Helps Analysts and Traders
Instant Trend Assessment:
With EMA distances and ROC, analysts can instantly see if the stock is trending, consolidating, or reversing.
Momentum Confirmation:
ROC and Momentum sections highlight stocks with strong recent moves, ideal for momentum and breakout traders.
Liquidity and Volatility Check:
Volume and ADR ensure the stock is tradable and has enough price movement to justify a trade.
Relative Positioning:
52-week high/low stats show whether the stock is near breakout levels or potential reversal zones.
Volume Confirmation:
RVol and U/D ratio help confirm if moves are backed by real buying/selling interest.
Actionable Insights:
By combining these metrics, traders can filter for stocks with strong trends, robust momentum, and institutional backing—ideal for swing, position, or even intraday trading.
Magic Levels NQ – 20/30/70/80Magic Levels – Nasdaq Key Zones (20/30/70/80)
Description:
This indicator automatically highlights key price zones in the Nasdaq (NQ) based on so-called Magic Numbers — specifically the areas around 20, 30, 70, and 80 within each 50-point price segment.
These levels are historically significant, as they often align with:
• Options positioning and hedging activity
• Institutional liquidity pools
• Algorithmic reaction zones and stop hunts
Lines are dynamically plotted:
• Green (20/30): Potential support zones
• Orange (70/80): Common resistance or reversal areas
Ideal for intraday traders monitoring Nasdaq for liquidity grabs, reaction levels, and microstructure shifts.
Recommended for:
Scalpers, Orderflow traders, ICT-based strategies, Nasdaq-focused trading
[RenkoCore] PublicWhen it comes the Renko chart, we all know it has its advantages & disadvantages compared to the candle-stick chart. My aim of this was to alleviate some of the disadvantages by providing some sort of structure on Renko chart. These set of tools may hopefully help your trading journey on Renko chart.
Helpful tips:
a) Enable wicks on your Renko settings, this indicator needs wicks to work.
b) Choose correct size (I recommend traditional size option) for your Renko chart as well as for your instrument.
c) Keep it on 1-second time frame, anything other than that doesn't work on TradingView's Renko. This is important as price will not repaint.
d) If you want to see bigger picture (like 4hr/daily on candle-stick chart), just increase your Renko size, but still keep it on 1-second timeframe.
This toolset includes couple different methods to provide some structures as explained below:
1. 📌 Balance | Price Action Equilibrium Zones
Overview
The Balance is a visual framework designed to evaluate directional bias and internal structure in price action. It measures net bullish/bearish momentum within a configurable rolling window, while highlighting key structural turning points based on multiple custom sensitivity levels. This tool helps traders stay in sync with market rhythm by emphasizing balance, imbalance, and inflection zones.
🔧 How It Works:
Inflection Tiers
Three customizable rounds of pivot-based divergence detection—labeled as 1°, 2°, and 3°—automatically identify regular bullish and regular bearish pivot structures. Though may not be always accurate, these structural signals are intended to keep user's focus to continually reflect emerging internal market shifts.
Balance Limit
Monitors directional bar disparity within a customizable retrospective span. When the net balance exceeds ±50% of the range, the line turns green to suggest strong directional bias. A red fill zone between these thresholds indicates equilibrium or no-trade conditions.
Volatility Based Reversal (Candle Reversal Detector)
This tool scans for extreme price movements relative to local volatility baselines, helping traders detect possible tops and bottoms before major price reversals or pauses. Compares current price action to the lowest recent volatility anchor or if price sharply dips below the highest recent volatility anchor.
🧠 Use Case Recommendations:
Discretionary trading to visually confirm balance and momentum shifts.
Confluence strategies, combining the balance counter with trend indicators or support/resistance levels.
Structure mapping, to highlight exhaustion zones or emerging reversals based on internal divergences.
Avoid using this tool in isolation. It is most effective when combined with broader market context or other confirmation layers.
2. 📌 Primary Level Detection
Overview
This is a precision tool for detecting dynamic price zones where significant market reversals may begin. Using a blend of momentum, price tension, and volatility structure, it identifies potential top and bottom areas — and tracks them with adaptive channel levels that evolve in real time.
🔧 How It Works:
Combines price action, RSI-based bias, and volatility deviation to identify moments when price is overextended.
Reacts only to major changes — reducing false positives in choppy markets.
Levels persist on the chart until a new valid reversal is confirmed, giving you visual structure and actionable areas to work with.
🧠 Use Case Recommendations:
Trading reversals, reversion-to-mean, or liquidity sweeps
Confirming entries from other indicators (like divergence, order blocks, or support/resistance)
Analyzing volatile markets where rapid direction changes are common (e.g., crypto, futures, scalping)
3. 📌 Secondary Level Detection
Overview
This tool highlights where price may be overextended and due for a short-term reversal, based on recent price structure.
🔧 How It Works:
It uses dynamic bar-count and swing conditions to identify potential price turning points after extended directional moves or strong sequence of bars in same direction.
Levels persist on the chart until a new valid reversal is confirmed, giving you visual structure and actionable areas to work with.
🧠 Use Case Recommendations:
Trading reversals, reversion-to-mean, or liquidity sweeps
Confirming entries from other indicators (like divergence, order blocks, or support/resistance)
⚠️ Important Notes:
This indicator does not repaint. All pivots and plots are based on closed candles and verified conditions.
This tool does not provide trade signals. It is a structural analysis tool intended to assist in discretionary decision-making. This indicator is for informational and educational purposes only. Use in combination with your own trading strategy, risk management, and market context. The signals generated do not guarantee outcomes and should not be used in isolation.
It is not intended to be financial advice or a recommendation to buy or sell any security or asset. Trading involves risk. Always do your own research and consult with a licensed financial advisor before making any trading decisions. Past performance is not indicative of future results.
The author is not responsible for any losses incurred from the use of this script.