MestreDoFOMO Renko Underground v4.0Description:
The "MestreDoFOMO Renko Underground v4.0" is a custom indicator for TradingView that creates a dynamic Renko chart to help identify trends and reversal points in the market. Unlike traditional candlestick charts, Renko focuses solely on significant price movements, ignoring time and market noise. This script includes advanced features like support and resistance channels, moving averages, and alerts to assist with your trading decisions.
How It Works:
Dynamic Renko Bricks:
The brick size (price units to form each "box" on the chart) is calculated automatically using the ATR (Average True Range) with an adjustable multiplier. This means the size adapts to the asset's volatility (e.g., BTC/USDT). When the price moves up or down by the brick size, a new brick is created (green for up, red for down).
Reversal Signals:
Green triangles (🔼) appear below bars when the trend shifts to bullish, and red triangles (🔽) appear above when it shifts to bearish. These signals only appear on direction changes, reducing false signals.
Renko Channel:
The script draws two lines (green for resistance and red for support) based on the highs and lows of the last 10 bricks (or the value you set). This helps identify key price zones.
Moving Average on Bricks:
An orange line shows the moving average (EMA or SMA, your choice) of the last 20 bricks, helping confirm the overall trend.
Alerts:
You can set up alerts in TradingView to be notified when the trend shifts to bullish or bearish, perfect for active trading.
Visualization:
A gray dashed line shows the level of the last brick, providing a clear reference for the next expected move.
How to Use:
Add the indicator to your chart (e.g., BTC/USDT 1D).
Adjust parameters like the ATR multiplier, channel length, and moving average type in the settings menu.
Watch the bricks and signals to identify trends, and use the channels and moving average to plan entries and exits.
Enable alerts to receive real-time notifications.
Tip:
Test on different timeframes (1H, 4H, 1D) and adjust the ATR multiplier to match the volatility of the asset you're trading. Combine with other indicators (like RSI) for better results!
Penunjuk dan strategi
SIGNALS FROM FUHere's the core logic of your customized indicator broken down into key components:
### 1. **Engulfing Pattern Detection**
- **Bullish Engulfing** (Long Setup):
- Current candle closes ABOVE previous high
- Current low <= previous low
- Previous candle was bearish (close < open)
- **Bearish Engulfing** (Short Setup):
- Current candle closes BELOW previous low
- Current high >= previous high
- Previous candle was bullish (close > open)
### 2. **Signal Storage System**
- Stores price levels from valid engulfing patterns in arrays
- Keeps track of:
- Price level (wick low/high)
- Bar index of occurrence
- Cross status (activated or not)
- Automatically removes oldest entries to limit memory usage (max 100 entries)
### 3. **Reverse Cross Trigger Logic**
- **Long Signals** (Purple ▲):
- Triggers when price makes HIGH >= stored bullish engulfing low
- Requires cross BELOW signal level
- Must wait minimum 90 bars after initial pattern
- **Short Signals** (Purple ▼):
- Triggers when price makes LOW <= stored bearish engulfing high
- Requires cross ABOVE signal level
- Same 90-bar minimum delay
### 4. **Trend Alignment Filter**
- Uses 10-period double-smoothed EMA (smema) for trend direction:
- **Up Trend**: smema > previous smema
- **Down Trend**: smema < previous smema
- Only shows:
- Long signals in uptrends
- Short signals in downtrends
### 5. **Price Action Confirmation**
- Final filter requires:
- For Longs: Bearish close (close < open) on trigger bar
- For Shorts: Bullish close (close > open) on trigger bar
### 6. **Signal Display**
- Clean visual output:
- Purple triangles ONLY (no trend lines/bands by default)
- ▲ Above bars for long entries
- ▼ Below bars for short entries
- No secondary indicators cluttering chart
This creates a focused trading system that:
1. Identifies strong reversal patterns
2. Waits for confirmation of breakout failure
3. Aligns with underlying trend direction
4. Requires decisive price action at trigger point
5. Shows only essential signals on clean chart
The combination of failed breakout + trend alignment + immediate price confirmation creates high-probability reversal signals while filtering out false positives.
RDBRB Strategy with Filters + Cooldowns + LabelsRDBRB Strategy with Filters + Cooldowns
This script implements the RDBRB (Rally-Drop-Base-Retest-Breakout) strategy, a classic price action setup designed to identify structured trade opportunities using volume, volatility bands, and trend alignment. It’s ideal for traders looking for clean, rule-based entries across any timeframe.
🧠 Core Components
Rally & Drop Detection
Identifies short-term momentum shifts using moving average crossovers:
✅ Ra = Rally (bullish crossover)
🔻 Dr = Drop (bearish crossunder)
Base Formation
A statistical base is defined using a moving average with a standard deviation envelope (Upper/Lower BB). This forms the foundation for breakout or retest setups.
Retest Zone (RT)
When price returns to the lower band (but stays below the base), it suggests a potential re-accumulation or reaction zone before a breakout.
Breakout Confirmation (BO)
A breakout is validated when:
Price crosses above the upper band
Volume exceeds the 20-bar average by a threshold multiplier
RSI is above a bullish momentum level
Price is trending above the longer-term EMA
⏱️ Smart Cooldown Logic
Each signal (Rally, Drop, Retest, Breakout) has an independent cooldown timer to prevent multiple triggers within a short range, filtering out noise and duplicate signals:
Customizable cooldown periods via input settings
Ensures signals are meaningful and not clustered
💡 Visual Markers
All signals are shown as small, color-coded labels:
Ra : Green label below bar
Dr : Red label above bar
RT : Yellow label below bar
BO : Green breakout label below bar
Bands and base are plotted for structure reference.
🛠️ Customizable Settings
Cooldown periods for each signal type
MA lengths, volume and RSI thresholds
Trend filter and base calculation inputs
This script is ideal for price action traders who want a clean, structured method to trade consolidations and trend continuations while avoiding over-signaling. Use it on any timeframe and combine with higher-timeframe confirmation for best results.
StockTrend_VolThe MACD is computed as normal: EMA(fast) - EMA(slow).
It’s then scaled by volume, normalized over a moving average of volume.
The signal line is the EMA of this volume-weighted MACD.
A histogram shows the difference, as with standard MACD.
1M Scalp Setup – 2ndHi/2ndLo Breakout1M Scalp Setup – 2ndHi/2ndLo Breakout
This script is designed for 1-minute chart scalpers seeking high-probability intraday breakout setups based on early session price action. The strategy revolves around identifying the first high and low of the day, and then detecting the second breach (2nd high or 2nd low) to anticipate breakout entries.
🔍 Core Logic:
EMA Filter : A configurable EMA (default 8-period) is plotted for trend context.
1st High/Low Detection : Captures the very first high and low of each trading day.
2nd High/Low Markers : Identifies the second time price breaks the initial high or low, acting as a potential signal zone.
Breakout Signals :
A Buy Signal is triggered when price closes above the 2nd high.
A Sell Signal is triggered when price closes below the 2nd low.
Each signal is only triggered once per day to reduce noise and avoid overtrading.
🖌️ Visual Markers:
1stHi and 1stLo : Early session levels (red and green).
2ndHi and 2ndLo : Key breakout reference points (purple and blue).
B and S Labels : Buy and Sell triggers marked in real-time once breakouts occur.
⚙️ Inputs:
EMA Length (default: 8)
Customizable Colors for Buy/Sell signals and key markers
This tool is best used in fast-moving markets or during high-volume sessions. Combine with volume or higher-timeframe confirmation for improved accuracy.
Premarket High/Low (Horizontal Rays)=== Script Description ===
This TradingView script automatically detects and displays the high and low prices
during the premarket session (04:00–09:30 Eastern Time) for the current trading day.
It draws horizontal rays that extend across the chart and labels them as "PM High" and "PM Low".
These markers are refreshed daily and only apply to today's session.
The script also provides full customization for:
- Line color, width, and style (solid, dotted, dashed)
- Label text color, background color, size, and style (left, right, up, down)
Time note: This script assumes data aligned with U.S. market hours.
Tradecademy CandlesThe script highlights high-volume candles .
Upward candles with significantly increased volume = green
Upward candles with moderately increased volume = blue
Downward candles with significantly increased volume = red
Downward candles with moderately increased volume = pink
Simple Buy/Sell SignalsThe code works by continuously monitoring the relationship between two moving averages (MAs) on live price data — a fast MA (shorter period) and a slow MA (longer period). These MAs smooth out price action to help identify trends. Here's how it functions step-by-step:
Inputs: The user selects the MA type (SMA or EMA) and the lengths (periods) for the fast and slow MAs.
Calculation: The script calculates the chosen MAs using real-time closing prices.
Signal Logic: It detects a Buy signal when the fast MA crosses above the slow MA (crossover) and a Sell signal when the fast MA crosses below the slow MA (crossunder).
Plotting: When a signal occurs, the script plots a green "BUY" arrow below the candle or a red "SELL" arrow above it.
Alerts: It includes alert conditions so users can receive notifications when a buy or sell condition is met.
Wick BreakoutLong wick reversal strategy. The script indicates the top long wick candle on a swing high or bottom long wick candle on a swing low. Enter on the opening of the second candle. Use 2min timeframe.
YB Pips Academy ProYB Pips Academy Pro
Unlock the power of smart market zones and multi-timeframe confluence with the official YB Academy script.
Main Features:
Automatic Support & Resistance: Detects and draws swing-based SNR zones for fast, visual identification of market turning points.
Dynamic S&R; Levels: Adaptive support and resistance bands using ATR logic to follow price action and breakout moves.
Trend & Momentum Filters: Uses EMA, MACD, and RSI to confirm only high-probability entries and avoid false signals.
Multi-Timeframe Buy/Sell Signals: Instantly see confirmed entries from M1, M5, M15, M30, H1, H4, and D1 – all with color-coded labels right on your chart.
YB Custom Entry Logic: Get unique "YB Buy/Sell" signals combining all filters and SNR zones, only when conditions align.
One-Click Alerts: Instantly set alerts for any BUY or SELL event, with price included in the alert message. Perfect for mobile or Telegram push!
Customizable: Change all zone, trend, and signal parameters to match your strategy or risk level.
How to Use:
Enable/disable any timeframe signals via the settings panel.
Wait for buy/sell labels to appear at key SNR or dynamic levels, then confirm with your own analysis.
Set TradingView alerts using the built-in “BUY at price” / “SELL at price” logic for hands-free notifications.
Created by YB Academy – made for serious traders who want speed, accuracy, and clarity on every chart.
Chris Order Flow Progives order flow on the 1min 5min and the 1h. it identifies the trend for you so you dont need to waste time analysing the charts. and improve your trading. by: @chr_futures on tiktok
🚀 KRAL / KING ROKET - Stoch RSI & CCI ComboHello. I am publishing a strategy that captures an uptrend with cci and stoch rsi indicators. You can parametrically optimize the stoch rsi lower band value, cci lower band value and cci based ma lower band values according to the product you are following.
AI Cloud Market Indicator + FVG & OB + ZonesAI Robot Indicator
Tradingview Indicator
EMA
SMA
Supertrend
Alerta Nueva Vela 5mThis indicator notifies you when a new 5-minute candle appears.
Add it to your chart
Open the object tree
Right-click
Set alert on indicator
Select “once per bar”
Done!
SMC ICT – Simplified Daily Trend & Reversal AnalyzerThis Pine Script provides a simplified approach to analyzing daily trends and potential reversals using concepts inspired by Smart Money Concepts (SMC) and ICT (Inner Circle Trader).
What It Does:
• Detects daily uptrend and downtrend conditions by comparing the current daily high/low to the previous day’s values.
• Highlights potential bullish or bearish reversal zones when price behavior suggests a shift in sentiment.
• Automatically draws dashed lines for the previous day's high and low.
• Labels these high/low levels for quick visual reference.
How to Use:
Apply this indicator to any timeframe chart. Use the plotted trend markers to assess daily direction and potential reversal signals. The dashed lines (previous high/low) can be used as reference points for liquidity zones or break/retest entries.
User Interface:
The indicator displays labels and shapes in English. This script is intended for educational and trading workflow enhancement purposes.
Note:
This is an open-source tool designed for clarity and basic SMC/ICT application. It is best used in combination with other confluences like FVGs, order blocks, and liquidity sweeps.
DECODE Moving Average ToolkitDECODE Moving Average Toolkit: Your All-in-One MA Analysis Powerhouse!
This versatile indicator is designed to be your go-to solution for analysing trends, identifying potential entry/exit points, and staying ahead of market movements using the power of Moving Averages (MAs).
Whether you're a seasoned trader or just starting out, the Decode MAT offers a comprehensive suite of features in a user-friendly package.
Key Features:
Multiple Moving Averages: Visualize up to 10 Moving Averages simultaneously on your chart.
Includes 5 Exponential Moving Averages (EMAs) and 5 Simple Moving Averages (SMAs).
Easily toggle the visibility of each MA and customize its length to suit your trading style and the asset you're analyzing.
Dynamic MA Ribbons: Gain a clearer perspective on trend direction and strength with 5 configurable MA Ribbons.
Each ribbon is formed between a corresponding EMA and SMA (e.g., EMA 20 / SMA 20).
The ribbon color changes to indicate bullish (e.g., green) or bearish (e.g., red) sentiment, providing an intuitive visual cue.
Toggle ribbon visibility with a single click.
Powerful Crossover Alerts: Never miss a potential trading opportunity with up to 5 customizable MA Crossover Alerts.
Define your own fast and slow MAs for each alert from any of the 10 available MAs.
Receive notifications directly through TradingView when your specified MAs cross over or cross under.
Optionally display visual symbols (e.g., triangles ▲▼) directly on your chart at the exact crossover points for quick identification.
Highly Customizable:
Adjust the source price (close, open, etc.) for all MA calculations.
Fine-tune the appearance (colors, line thickness) of every MA line, ribbon, and alert symbol to match your charting preferences.
User-Friendly Interface: All settings are neatly organized in the indicator's input menu, making configuration straightforward and intuitive.
How Can You Use the Decode MAT in Your Trading?
This toolkit is incredibly versatile and can be adapted to various trading strategies:
Trend Identification:
Use longer-term MAs (e.g., 50, 100, 200 period) to identify the prevailing market trend. When prices are consistently above these MAs, it suggests an uptrend, and vice-versa.
Observe the MA ribbons: A consistently green ribbon can indicate a strong uptrend, while a red ribbon can signal a downtrend. The widening or narrowing of the ribbon can also suggest changes in trend momentum.
Dynamic Support & Resistance:
Shorter-term MAs (e.g., 10, 20 period EMAs) can act as dynamic levels of support in an uptrend or resistance in a downtrend. Look for price pullbacks to these MAs as potential entry opportunities.
Crossover Signals (Entries & Exits):
Golden Cross / Death Cross: Configure alerts for classic crossover signals. For example, a 50-period MA crossing above a 200-period MA (Golden Cross) is often seen as a long-term bullish signal. Conversely, a 50-period MA crossing below a 200-period MA (Death Cross) can be a bearish signal.
Shorter-Term Signals: Use crossovers of shorter-term MAs (e.g., EMA 10 crossing EMA 20) for more frequent, shorter-term trading signals. A fast MA crossing above a slow MA can signal a buy, while a cross below can signal a sell.
Use the on-chart symbols for quick visual confirmation of these crossover events.
Confirmation Tool:
Combine the Decode MAT with other indicators (like RSI, MACD, or volume analysis) to confirm signals and increase the probability of successful trades. For instance, a bullish MA crossover combined with an oversold RSI reading could strengthen a buy signal.
Multi-Timeframe Analysis:
Apply the toolkit across different timeframes to get a broader market perspective. A long-term uptrend on the daily chart, confirmed by a short-term bullish crossover on the 1-hour chart, can provide a higher-confidence entry.
The DECODE Moving Average Toolkit empowers you to tailor your MA analysis precisely to your needs.
MACD Differential Crossover Alerts & Arrows🔥 MACD Differential Crossover Alerts & Arrows
This lightweight yet powerful indicator tracks momentum shifts using the MACD Differential — the difference between the MACD Line and its Signal Line. When this differential crosses the zero line, it often signals the start of a new trend or an early momentum reversal.
✅ Core Logic:
MACD Line = EMA(Fast Length) − EMA(Slow Length)
Signal Line = EMA(MACD Line, Signal EMA Length)
MACD Differential = MACD Line − Signal Line
📈 Visual Cues:
White Up Arrow when the MACD Differential crosses above zero (bullish signal)
White Down Arrow when it crosses below zero (bearish signal)
Ideal for fast-paced setups on 1-min to 15-min charts
⚙️ Customizable Settings:
Setting Type Default Description
Fast EMA Length Integer 9 Sets the short-term EMA for the MACD Line
Slow EMA Length Integer 20 Sets the long-term EMA for the MACD Line
Signal EMA Length Integer 6 Smooths the MACD Line to form the Signal Line
Show Arrows Boolean true Toggles visibility of up/down arrows on chart
Enable Alerts Boolean true Enables alert conditions for crossover events
🔔 Built-in Alerts:
"MACD Diff crossed ABOVE zero" → Bullish momentum alert
"MACD Diff crossed BELOW zero" → Bearish momentum alert
Aftershock by Session [SAKANE]■ Background & Motivation
In 24/7 markets like crypto, not all participants react simultaneously to major events.
Instead, reactions unfold across different regional trading sessions — Asia (APAC), Europe (EU), and the United States (US) — each with its own tempo and sentiment.
This indicator is designed to visualize which session drives the market after a key event — capturing the "aftershock" effect that ripples through time zones.
■ Key Features
Tracks price return (open → close) for each session: APAC / EU / US
Cumulative session returns are calculated and visualized
Smoothing options: SMA, EMA, or Ehlers SuperSmoother
Optimized for daily charts to highlight structural momentum shifts
Toggle visibility of each session independently
■ Why “Aftershock”?
Take April 2, 2025 — the day of the “Trump Tariff Opening.”
That policy announcement triggered a market-wide response. But:
Which session reacted first?
Which session truly moved the market?
This indicator is named “Aftershock” because it helps you see the ripple effect of such events — when and where momentum followed.
■ How to Use
Search for “Aftershock by Session ” on TradingView
Add it to your chart (use Daily timeframe)
Customize sessions and smoothing options via settings
You can also bookmark it for quick access.
■ Insights & Use Cases
Detect which session initiated or led market moves after news events
Understand geo-temporal dynamics — did the move start in Asia, Europe, or the US?
For example, on April 2, 2025, the day Trump’s tariff pivot was announced:
You can instantly see which session took the lead —
the APAC session hesitated, while the US session drove the trend.
This insight becomes visually obvious with the cumulative lines.
■ Unique Value
Unlike typical indicators based on raw price action,
Aftershock analyzes market movement through a session-based structural lens.
It captures where capital actually moved — and when.
A tool not just for technical analysis, but for event-driven, macro-aware market reading.
■ Final Thoughts
To truly understand market mechanics, we must look beyond candles and trends.
Aftershock by Session breaks down the 24-hour cycle into meaningful regional flows,
allowing you to track the true drivers behind price momentum.
Whether you're trading, researching, or tracking macro catalysts,
this tool helps answer the key question:
“Who moved the market — and when?”
Mark 7+/10 scriptLiquidity grabs with 7+ out of the last 10 candles being either positive (for sell) or negative (for buys).
My script
### 🔥 **4AM–5AM GMT Breakout Strategy (5-Min Entry Confirmation)**
#### ⏱ **Time Zone**
* **All times are GMT+0 (UTC)**
---
### 📌 **Step-by-Step Guide**
1. **Timeframe Setup**
* Use the **1-hour chart** to identify the 4:00 AM – 5:00 AM candle.
* Mark the **high and low** of that specific candle (the range).
2. **Draw Levels**
* At **5:00 AM**, after the candle closes:
* Draw a **horizontal line or zone** at the **high** and another at the **low** of the 4:00–5:00 AM candle.
3. **Switch Timeframe**
* Switch to the **5-minute chart**.
4. **Breakout Confirmation**
* Wait for a **5-minute candle to break**:
* **Buy Entry**: If a 5-minute candle **closes above the high**, enter a **BUY**.
* **Sell Entry**: If a 5-minute candle **closes below the low**, enter a **SELL**.
5. **Trade Management (Recommended)**
* **Stop Loss (SL)**: Just below/above the opposite side of the range.
* **Take Profit (TP)**: Use a risk-to-reward ratio (1:1.5 or 1:2), or follow market structure.
* Optional: Trail the stop loss once in profit.
---
### ✅ **Strategy Highlights**
* Works best with **GOLD (XAUUSD)** due to its volatile movement during London Open.
* Also effective with pairs like **GBPUSD, EURUSD**, etc., but test before use.
* Avoid using it on days with high-impact news during this time.
---