FVG Zones – shrink on fill (bull/bear)Detects classic 3-candle FVGs (ICT definition).
Draws zones as boxes that extend to the right.
On each bar close:
Checks overlap with the current candle.
Shrinks the zone when price wicks into it (bullish: top moves down; bearish: bottom moves up).
Deletes the zone once it’s completely filled/closed.
Inputs: bullish/bearish zone color, border color, and max number of visible FVGs.
Possible extensions:
Multi-timeframe FVGs (e.g. H1 FVGs shown on M5).
Separate limits for bullish and bearish zones.
Alerts for new FVG, partial fill, or closed FVG.
Option “Body only” (ignore wicks when detecting overlap).
Minimum FVG size filter (ticks/ATR).
圖表形態
Abu Muhammad 112 for the directionA small and simple indicator that provides you with a forecast of the market direction for the current and upcoming periods based on the timeframe you choose. It displays buying in green and selling in red. It is not a recommendation to buy or sell.
Varma Fractal TEMA IndicatorThe Indicator uses Fractals and Three EMAs. A fractal is a repeating price pattern, typically consisting of five candlesticks, used to identify potential trend reversals or continuations. A bullish fractal suggests a possible upward price movement, while a bearish fractal indicates a potential downward trend. These patterns, popularized by Bill Williams, can be found across different timeframes and are considered a key part of his technical analysis system. Every Fractal line acts as an immediate support or resistance. The use of three EMAs in trading is well known. One can make own strategies with them.
Trapped Traders [ScorsoneEnterprises]This indicator identifies and visualizes trapped traders - market participants caught on the wrong side of price movements with significant volume imbalances. By analyzing volume delta at specific price levels, it reveals where traders are likely experiencing unrealized losses and may be forced to exit their positions.
The point of this tool is to identify where the liquidity in a trend may be.
var lowerTimeframe = switch
useCustomTimeframeInput => lowerTimeframeInput
timeframe.isseconds => "1S"
timeframe.isintraday => "1"
timeframe.isdaily => "5"
=> "60"
= ta.requestVolumeDelta(lowerTimeframe)
price_quantity = map.new()
is_red_candle = close < open
is_green_candle = close > open
for i=0 to lkb-1 by 1
current_vol = price_quantity.get(close)
new_vol = na(current_vol) ? lastVolume : current_vol + lastVolume
price_quantity.put(close, new_vol)
if is_green_candle and new_vol < 0
price_quantity.put(close, new_vol)
else if is_red_candle and new_vol > 0
price_quantity.put(close, new_vol)
We see in this snippet, the lastVolume variable is the most recent volume delta we can receive from the lower timeframe, we keep updating the price level we're keeping track of with that lastVolume from the lower timeframe.
This is the bulk of the concept as this level and size gives us the idea of how many traders were on the wrong side of the trend, and acting as liquidity for the profitable entries. The more, the stronger.
There are 3 ways to visualize this. A basic label, that will display the size and if positive or negative next to the bar, a gradient line that goes 10 bars to the future to be used as a support or resistance line that includes the quantity, and a bubble chart with the quantity. The larger the quantity, the bigger the bubble.
We see in this example on NYMEX:CL1! that there are lines plotted throughout this price action that price interacts with in meaningful way. There are consistently many levels for us.
Here on CME_MINI:ES1! we see the labels on the chart, and the size set to large. It is the same concept just another way to view it.
This chart of CME_MINI:RTY1! shows the bubble chart visualization. It is a way to view it that is pretty non invasive on the chart.
Every timeframe is supported including daily, weekly, and monthly.
The included settings are the display style, like mentioned above. If the user would like to see the volume numbers on the chart. The text size along with the transparency percentage. Following that is the settings for which lower timeframe to calculate the volume delta on. Finally, if you would like to see your inputs in the status line.
No indicator is 100% accurate, use "Trapped Traders" along with your own discretion.
Liquidity-Weighted Business Cycle (Satoshi Global Base)🌍 BTC-Affinity Global Liquidity Business Cycle (MACD Model)
This indicator models Bitcoin’s macroeconomic business cycle using a BTC-weighted global liquidity index as its foundation. It adapts a MACD-based framework to visualize expansions and contractions in fiat liquidity across major economies with high Bitcoin affinity.
🔍 What It Does:
🧠 Constructs a Global M2 Liquidity Index from the top 10 most BTC-relevant fiat currencies
(USD, EUR, JPY, GBP, INR, CNY, KRW, BRL, CAD, AUD)
— each weighted by its Bitcoin adoption score and FX-converted into USD.
📊 Applies a MACD (Moving Average Convergence Divergence) signal to the index to detect macro liquidity trends.
🟢 Plots a histogram of business cycle momentum (red = expansion, green = contraction).
🔴 Marks potential cycle peaks, useful for macro trading alignment.
⚖️ BTC Affinity-Weighted Countries:
🇺🇸 United States
🇪🇺 Eurozone
🇯🇵 Japan
🇬🇧 United Kingdom
🇮🇳 India
🇨🇳 China
🇰🇷 South Korea
🇧🇷 Brazil
🇨🇦 Canada
🇦🇺 Australia
Weights are user-adjustable to reflect evolving capital controls, regulation, and real-world BTC adoption trends.
✅ Use Cases:
Confirm macro risk-on vs risk-off regimes for BTC and crypto.
Identify ideal entry and exit zones in macro pair trades (e.g., MSTR vs MSTY).
Monitor how global monetary expansion feeds into BTC valuations.
US Liquidity-Weighted Business Cycle📈 BTC Liquidity-Weighted Business Cycle
This indicator models the Bitcoin macro cycle by comparing its logarithmic price against a log-transformed liquidity proxy (e.g., US M2 Money Supply). It helps visualize cyclical tops and bottoms by measuring the relative expansion of Bitcoin price versus fiat liquidity.
🧠 How It Works:
Transforms both BTC and M2 using natural logarithms.
Computes a liquidity ratio: log(BTC) – log(M2) (i.e., log(BTC/M2)).
Runs MACD on this ratio to extract business cycle momentum.
Plots:
🔴 Histogram bars showing cyclical growth or contraction.
🟢 Top line to track the relative price-to-liquidity trend.
🔴 Cycle peak markers to flag historical market tops.
⚙️ Inputs:
Adjustable MACD lengths
Toggle for liquidity trend line overlay
🔍 Use Cases:
Identifying macro cycle tops and bottoms
Timing long-term Bitcoin accumulation or de-risking
Confirming global liquidity's influence on BTC price movement
Note: This version currently uses US M2 (FRED:M2SL) as the liquidity base. You can easily expand it with other global M2 sources or adjust the weights.
VWAP Suite v1.0.5This is the latest script by Kenny at The Nexus Discord. ONLY available to members in The Nexus, please DM Kenny to be approved for the script.
VWAP Suite gives you many different vwaps and Anchored Vwaps to choose from also being able to set your own custom ones from important timeframes. Trump pump? Yep. Major lows, Yup.
Also can email kenny@aceindicators.com for questions.
Season profile Pro++🔹 Key Parts of Volume Profile
Point of Control (POC)
The price level with the highest traded volume.
Strong magnet: price often revisits POC.
High Volume Nodes (HVN)
Areas where a lot of trading happened.
These act like support/resistance zones.
Market accepts these prices (fair value).
Low Volume Nodes (LVN)
Areas with very little trading.
Price usually moves through these zones quickly.
Act as gaps or rejection areas.
Value Area (VA)
Typically 70% of all volume traded.
Split into:
Value Area High (VAH) = upper limit of fair value.
Value Area Low (VAL) = lower limit of fair value.
Market tends to rotate inside VA, and breakouts above/below VAH/VAL are important.
🔹 Types of Volume Profiles
Fixed Range Volume Profile → analyze a custom zone (e.g., one session, swing, or OB).
Session Volume Profile → shows profile for each day/session.
Visible Range Volume Profile → calculates based on what’s visible on your chart.
🔹 How Traders Use Volume Profile
Finding Strong S/R Levels
POC = strong attraction level.
VAH & VAL = breakout or rejection zones.
Identifying Liquidity Areas
HVN = consolidation zones where institutions load up.
LVN = thin zones where price often makes fast moves.
Trend vs Balance
Wide VA = balanced market (sideways).
Narrow VA with price pushing = trending market.
Confluence with ICT Concepts
OB inside a HVN → stronger.
Liquidity grab into LVN → powerful reversal zone.
🔹 Simple Example
Imagine EURUSD has:
POC at 1.0850 (heavy volume traded here).
VAH at 1.0880.
VAL at 1.0820.
Price action v2Core Elements of Price Action
Market Structure
Higher Highs (HH), Higher Lows (HL) → Uptrend
Lower Highs (LH), Lower Lows (LL) → Downtrend
Sideways → Consolidation
📌 Structure tells you whether buyers or sellers are in control.
Support & Resistance (S/R)
Horizontal levels where price has reacted before.
Support = buyers step in (floor).
Resistance = sellers step in (ceiling).
PA traders watch how candles react here → breakout, rejection, fakeout.
Candlestick Behavior
Pin bar / Wick rejections = rejection of price levels.
Engulfing candles = shift in momentum.
Doji / indecision = market pausing before next move.
📌 A single candle tells you the “fight” between buyers and sellers.
Order Blocks (ICT concept)
Last bullish/bearish candle before a strong move.
Represents institutional orders.
Acts like strong S/R zones.
Break of Structure (BOS) & Shift in Market Structure (SMS)
When price breaks a recent high/low, it signals continuation or reversal.
Example: HH → BOS → price retraces to OB → continues.
Liquidity
Price seeks liquidity (stop hunts, fake breakouts).
Equal highs/lows, trendline liquidity, and session highs/lows are key zones.
ICT often calls this the “Judas Swing” before real move.
Market Cycles (Wyckoff/ICT)
Accumulation → sideways, smart money entering.
Manipulation / Fake move (stop hunt).
Expansion / Distribution → strong trending move.
Reversal → cycle repeats.
🔹 Why Price Action Works
Indicators (RSI, MACD, etc.) are derived from price.
If you understand raw price → you’re ahead of lagging tools.
It helps you “read the tape” like institutions.
🔹 Example Workflow of a PA Trader
Identify trend / structure (up, down, range).
Mark key S/R levels, OBs, liquidity zones.
Wait for candle confirmation (engulfing, rejection, BOS).
Enter on retracement (FVG, OB, S/R retest).
Manage risk → Stop Loss below structure, TP at liquidity levels.
Abu Muhammad 44 goals and candlesWith this indicator, you can detect the path of the arrow through the intersections within the bar, and with simple adjustments you make in the settings, you will undoubtedly become a professional. This is not a recommendation to buy or sell.
Triumm algo v2 with Signal Quality1. Core Buy/Sell Logic
Uses two EMAs (9 & 21 by default).
Buy Signal = when fast EMA crosses above slow EMA and RSI < 70 (not overbought).
Sell Signal = when fast EMA crosses below slow EMA and RSI > 30 (not oversold).
At a signal:
It sets an Entry price (current close).
It calculates 3 Take Profit (TP1, TP2, TP3) based on ATR multiples.
It sets a Stop Loss (SL) also based on ATR.
🔹 2. Signal Confidence & Potential
The script doesn’t just give a raw buy/sell, it adds “AI-inspired” grading:
Confidence (0–100%)
Based on:
EMA crossover strength (big gap = higher confidence).
RSI position (closer to 30/70 = more decisive).
Volume trend (if volume > average).
Whether you’re in an ICT Killzone (London, NY, Asia sessions).
Potential (0–100%)
Based on:
How far TP1 is from entry (relative to price).
Trend strength (fast EMA above/below slow EMA).
ATR vs average ATR (volatility score).
✅ Then it gives a Signal Quality Label:
Very Good
Good
Simple
Bad
Very Bad
This helps you filter only strong trades.
🔹 3. Dashboard
On the chart, a dashboard table shows:
Trend direction (Uptrend/Downtrend).
RSI value.
ATR value.
Current Killzone (London, NY, Asia, or OFF).
Suggested timeframe (based on volatility).
🔹 4. Fair Value Gaps (FVGs)
The script also includes FVG detection:
Finds bullish/bearish FVGs (price gaps between candles).
Can show unmitigated/mitigated levels.
Optionally plots them with boxes or dashed lines.
Keeps count of FVGs and shows stats in a dashboard.
🔹 5. CISD (Change in State of Delivery)
Another ICT concept:
Detects when market structure shifts.
Marks +CISD (bullish) or -CISD (bearish) levels with lines/labels.
Deletes or keeps old levels (configurable).
Can send alerts when CISD levels are broken.
🔹 6. AI Multi-Timeframe Trend Check
The script scans 1m, 5m, 15m, 30m:
Each TF gives a score based on EMA, RSI, and Volume.
Picks the best timeframe with strongest setup.
Displays reasoning in a mini “🧠 Triumm AI” table.
🔹 7. Range Filter (Extra Buy/Sell)
At the bottom, there’s a Range Filter system:
Smooths price with EMA-based range filter.
Generates independent Buy/Sell signals when price breaks above/below the filter.
Plots signals with arrows (“Buy” below bars, “Sell” above bars).
Can also be turned into a strategy with TP/SL.
⚡ Summary in Simple Words
This indicator is like an all-in-one trading toolkit:
📈 Entry/Exit with ATR-based TP/SL.
🎯 Confidence & Potential scoring (quality check).
🕰️ ICT Killzones & dashboard.
📊 AI Multi-timeframe trend filter.
🌀 Fair Value Gaps (ICT concept).
🔄 CISD structure shift detection.
📉 Range Filter Buy/Sell signals.
Super orderblock by triummWhat is a Volume Order Block?
An Order Block (OB) is a zone created by institutions (banks, hedge funds, smart money) where they place large orders, usually the last bullish or bearish candle before a strong impulsive move.
A Volume Order Block adds volume analysis into the detection of those zones. Instead of just drawing OBs from price structure, it confirms or filters them with volume imbalances (buyer/seller dominance).
🔹 Why Add Volume?
Regular OBs can appear frequently, and not all are strong. By adding volume metrics, you filter which OBs are truly institutional footprints.
✅ High buy volume in a bullish OB → Smart money accumulation.
✅ High sell volume in a bearish OB → Smart money distribution.
❌ Low volume OB → Weak zone, likely to fail.
🔹 Key Components of Volume Order Blocks
Last Opposite Candle
Bullish OB = last bearish candle before strong rally.
Bearish OB = last bullish candle before strong drop.
Volume Confirmation
OB is valid if its candle(s) show higher than average volume.
Sometimes measured as % of total buy vs. sell volume in that candle.
Imbalance Check
Look for volume imbalance (buyers 60%+ or sellers 60%+).
Confirms smart money dominance.
Reaction Zone
Price revisits the OB → expect reaction (rejection, mitigation, or continuation).
High-volume OBs often act as strong support/resistance
Abu Muhammad 45 candle analysisThis indicator assists in making buy and sell decisions through the color of the candles shown on the chart as well as their intersection with the horizontal trend. The decision to buy or sell is yours.
Señal Emocional 9:30 NY [Smart Money Pro+]9:30 NY Signal Strategy with Recovery Logic
A precision-based strategy that triggers one trade daily at 9:30 AM NY. Combines trend, volume, RSI, fractals, VWAP, and emotional bias to generate high-probability BUY/SELL signals. Includes smart recovery mode to manage losses and maintain risk/reward integrity.
Author: Nelson Joaquin Contact: nelsonadames10@gmail.com
AYUSH ALGO TRAGING STRATEGY TEST VERSION 1)Very good strategy , it uses two moving avg crossovers and also rsi and atr for confirmation, this strategy is fully automated
Señal V1 9:30 NY [Smart Money Pro+]9:30 NY Signal Strategy with Recovery Logic
A precision-based strategy that triggers one trade daily at 9:30 AM NY. Combines trend, volume, RSI, fractals, VWAP, and emotional bias to generate high-probability BUY/SELL signals. Includes smart recovery mode to manage losses and maintain risk/reward integrity.
Author: Nelson Joaquin Contact: nelsonadames10@gmail.com
Abu Muhammad 111 liquidity analysisA script that appears on the chart, enabling us to monitor trading by observing the internal table using colors for buying or selling across different time frames from minute to week.
BB KC Triangle SignalsBased on Trader Oracle's engulfing candle off Bolinger Band.
I added keltner channels as well. So this prints a symbol ( I use triangles) over the engulfing candle at or near the bolinger band/ keltner channel. Don't have to have the bands printed on the screen for them to work. Seems to work on renko too.
Target12Target candle tracker for areas on interest. Highlights areas in colour of interest stratgy users are looking for