DncrA's Ema
This indicator contains 4 emas with weekly ema.
This is only test indicator for try. All risks are yours.
Indicators and strategies
𝓡/𝓑 𝓢𝓲𝓰𝓷𝓪𝓵𝓼 [XN13GD]Core Purpose
1. Identifies Key Levels
- Plots dynamic support/resistance levels (`hstore`/`lstore`) based on weighted moving averages of highs/lows.
2. Detects Two Types of Signals
- 𝓡 (Rejection Signals)
- Bullish: Price rejects lower levels (wick below support + close above)
- Bearish: Price rejects upper levels (wick above resistance + close below)
- 𝓑 (Breakout Signals)
- Bullish: Strong volume breakout above resistance
- Bearish: Strong volume breakdown below support
3. Trend Confirmation
- Colors candles and plots a trend line (HMA) when breakouts are active.
核心功能
1. 识别关键价位
- 基于高/低点的加权移动平均,动态绘制支撑/阻力位(`hstore`/`lstore`)
2. 检测两种信号类型
- 𝓡(拒绝信号)
- 看涨:价格拒绝更低水平(下影线跌破支撑后收盘回上方)
- 看跌:价格拒绝更高水平(上影线突破阻力后收盘回下方)
- 𝓑(突破信号)
- 看涨:伴随高交易量向上突破阻力
- 看跌:伴随高交易量向下跌破支撑
3. 趋势确认
- 当突破信号有效时,自动标记K线颜色并绘制趋势线(基于HMA均线)。
BARPUMP [BOLL TREND]Barpump Bollinger Bands Strategy
Barpump Bollinger Bands Strategy
Barpump Bollinger Bands Strategy
Barpump Bollinger Bands Strategy
Barpump Bollinger Bands Strategy
Barpump Bollinger Bands Strategy
Barpump Bollinger Bands Strategy
Barpump Bollinger Bands Strategy
Barpump Bollinger Bands Strategy
BB 熱度附圖 (靈敏過濾版 / 2H)依照我自己的邏輯製作出來的 要用 一定要問 不然 會不懂
Made according to my own logic. If you need to use it, you must ask, otherwise you won't understand
Scalp SaitamaThis indicator was created for those looking for quick entries on the 1-minute chart, making it ideal for scalping operations. It uses the crossover between the 9 EMA and 20 EMA to generate buy and sell signals.
⚙️ How it works:
✅ Buy signal: When the 9 EMA crosses above the 20 EMA → Green triangle below the candle.
✅ Sell signal: When the 9 EMA crosses below the 20 EMA → Red triangle above the candle.
📌 Recommended use:
Preferably use it on the 1-minute chart.
Set alerts for EMA crossovers to manage your trade entries and exits.
Combine with other filters such as volume, RSI, liquidity, or price action to increase accuracy.
Useful for identifying moments of acceleration or short-term reversals.
改良 DMI 指標 (2H版 / 提前動能提示 / RMA / 無表格)依照我自己的邏輯製作出來的 要用 一定要問 不然 會不懂
Made according to my own logic. If you need to use it, you must ask, otherwise you won't understand.
合併版:進場判斷 + BTC 控盤表格依照我自己的邏輯製作出來的 要用 一定要問 不然 會不懂
Made according to my own logic. If you need to use it, you must ask, otherwise you won't understand.
SessionsA bar at the bottom of the page with the various institutional trading times.
Asia (orange) - Europe (green) - USA (blue, dark blue and pink)
It's pretty much calibrated for crypto with the extended US session which includes after hours.
You can change the settings as you wish
30分圖顯示 2小時 Vegas 趨勢 + EMA12訊號(2H+1H版)依照我自己的邏輯製作出來的 要用 一定要問 不然 會不懂
Made according to my own logic. If you need to use it, you must ask, otherwise you won't understand.
𝓡/𝓑 𝓢𝓲𝓰𝓷𝓪𝓵𝓼 [XN13GD]Core Purpose
1. Identifies Key Levels
- Plots dynamic support/resistance levels (`hstore`/`lstore`) based on weighted moving averages of highs/lows.
2. Detects Two Types of Signals
- 𝓡 (Rejection Signals)
- Bullish: Price rejects lower levels (wick below support + close above)
- Bearish: Price rejects upper levels (wick above resistance + close below)
- 𝓑 (Breakout Signals)
- Bullish: Strong volume breakout above resistance
- Bearish: Strong volume breakdown below support
3. Trend Confirmation
- Colors candles and plots a trend line (HMA) when breakouts are active.
核心功能
1. 识别关键价位
- 基于高/低点的加权移动平均,动态绘制支撑/阻力位(`hstore`/`lstore`)
2. 检测两种信号类型
- 𝓡(拒绝信号)
- 看涨:价格拒绝更低水平(下影线跌破支撑后收盘回上方)
- 看跌:价格拒绝更高水平(上影线突破阻力后收盘回下方)
- 𝓑(突破信号)
- 看涨:伴随高交易量向上突破阻力
- 看跌:伴随高交易量向下跌破支撑
3. 趋势确认
- 当突破信号有效时,自动标记K线颜色并绘制趋势线(基于HMA均线)。
Fractal Reversal TrackerThis script establishes a multi-timeframe breakout and fakeout validation system, designed for structural reversal, continuation, and false breakout detection. It leverages higher timeframe (HTF) candles to define structural levels, while using lower timeframe (LTF) data to validate the legitimacy of breakouts with fine-grained logic. At the core of the system is a mechanism that evaluates the breakout status once per closed HTF candle and stores the result in a boolean array breakout_flags, allowing for seamless state tracking without violating Pine Script's restrictions on global variable modification within functions.
For breakout detection, the script identifies classic continuation patterns—specifically, when the HTF candle closes above the previous high or below the previous low. If continuation conditions are not met, it evaluates for fakeouts (fake_up or fake_down) using detailed LTF logic. This includes tracking the LTF candle that caused the HTF high or low, identifying the first impulsive candle (bullish or bearish), and checking whether the close of the pullback candle is later violated by price. Only when these strict criteria are met is a fakeout confirmed.
Instead of relying on global boolean flags, the script stores the latest breakout status in a single-entry boolean array (breakout_flags), which is cleared and updated at each new HTF candle. This ensures clean and consistent breakout tracking while avoiding conflicts with Pine Script's scope limitations. Visually, the script draws HTF candle structures, breakout lines, and extended fakeout lines on the chart. When a confirmed, non-fake breakout occurs, it also draws an extended opening line on the LTF chart. Altogether, this system provides structural clarity and trade-level confirmation for breakout and reversal strategies.
OpenIn SHG"This indicator is a key tool for understanding the internal dynamics of the market. It analyzes open interest and compares the volume of contracts traded within the futures and financial options markets. By observing this data, it becomes possible to more accurately identify areas where significant institutional activity is concentrated. Since large market participants—such as investment funds, banks, and professional traders—require specific conditions to engage in a market, this indicator becomes a strategic advantage for anticipating significant price movements, assessing the strength of a trend, and detecting potential accumulation or distribution zones."
RSI Tops and Bottoms with AlertsThis script is a Relative Strength Index (RSI)-based indicator that highlights potential overbought (sell) and oversold (buy) conditions on the chart. It also provides visual markers and alert conditions when these signals occur.
How it Works:
1. RSI Calculation:
It calculates the RSI using a user-defined length (default: 14 periods).
The RSI is based on a selected price source (default: close).
2. Bands/Thresholds:
Two levels are set:
Upper Band (default: 70) — used to detect overbought conditions.
Lower Band (default: 30) — used to detect oversold conditions.
3. Visual Output:
The RSI line is plotted in purple.
The upper and lower bands are shown as gray horizontal lines.
The area between the bands is filled with a light purple background for easy visual reference.
4. Signal Detection:
Buy Signal: RSI drops below the lower band → considered oversold.
Sell Signal: RSI rises above the upper band → considered overbought.
5. Alerts:
Alerts are created for:
Buy Alert: When RSI crosses below the lower band.
Sell Alert: When RSI crosses above the upper band.
These alerts can be used to notify the user when a potential entry or exit signal appears.
6. Chart Markers:
Green upward labels are shown at the bottom when a Buy Signal is triggered.
Red downward labels are shown at the top when a Sell Signal is triggered.
Use Case:
This indicator is useful for traders who use RSI to time entries and exits based on momentum. It automates the detection of typical RSI signals and enhances visibility and alerting on the chart.
Buy and Sell with Entry-SL-TGT The Buy & Sell with Entry-SL-TGT Indicator is a trend-following tool that generates Buy (B), Sell (S), Risky Buy (RB), and Risky Sell (RS) signals. It is designed based on Average True Range (ATR) calculations and integrates seamlessly with basic trading studies. Developed to provide double-confirmation signals, it enhances trend-following strategies. The indicator filters standalone signals using the TD Line to reduce false positives. It plots customizable Entry, Stop-Loss (SL), and Target (TP) lines with user-defined Risk-Reward Ratios (1:1, 1:2, 1:3) and accounts for gap-ups/downs (0.3% threshold). A Smart Rebalancer plots a 12.5% downside line for positional trading. Alerts are configurable for specific or all signals. It is not intended for standalone use without market knowledge.
TBR(3AM, 9AM, 3PM)How It Works
• Monitors 3 key institutional hours: 3AM (London Open), 9AM (New York Open), and 3PM (US Close)
• Captures the full range (high and low) of each 1H candle at those times
• Confirms breakout only if the next 1H candle closes above or below the range
• Draws the zone (box) aligned with the original hourly candle (not delayed)
• Displays retracement lines at:
- 25% (initial reaction)
- 50% (mitigation level)
- 75% (deep retracement entry)
Key Features
• Precise zone alignment — Boxes are anchored to the actual breakout candle
• Mitigation logic — Zones are considered mitigated once price revisits the 0.5 level
• Expiry filter — Zones automatically remove after 7 days
• Time zone support — Choose from major time zones or fixed UTC offsets (e.g., Etc/GMT+4)
• Multi-timeframe compatible — Works on all timeframes (1m, 5m, 15m, etc.)
• Clean structure — No duplicated boxes on lower timeframes
• Fully customizable colors and visibility toggles
Settings
• Toggle visibility for 3AM / 9AM / 3PM zones independently
• Choose time zone (supports America/New_York, UTC, Asia/Tokyo, etc.)
• Adjust how long zones stay visible (in hours)
• Enable/disable auto-removal after mitigation
Ideal For
• ICT traders
• Smart money concepts (SMC)
• Zone-based entries and liquidity grabs
• Traders using mitigation and premium/discount retracement logic
Tip
• Use this script with liquidity/volume indicators or SMT divergence for even stronger confluence.
𝓡/𝓑 𝓢𝓲𝓰𝓷𝓪𝓵𝓼 [XN13GD]Core Purpose
1. Identifies Key Levels
Plots dynamic support/resistance levels (`hstore`/`lstore`) based on weighted moving averages of highs/lows.
2. Detects Two Types of Signals
- 𝓡 (Rejection Signals)
- Bullish: Price rejects lower levels (wick below support + close above)
- Bearish: Price rejects upper levels (wick above resistance + close below)
- 𝓑 (Breakout Signals)
- Bullish: Strong volume breakout above resistance
- Bearish: Strong volume breakdown below support
3. Trend Confirmation
- Colors candles and plots a trend line (HMA) when breakouts are active.
Master [Trade Snipers]✅ How It Works
The Master indicator is a custom-developed trend and signal tool based on a modified range filter algorithm, specifically designed for clarity, non-repainting signals, and actionable trade execution.
🔧 1. Custom Adaptive Range Filter (Original Logic)
At its core is a custom-built filter that adapts to price volatility. Unlike standard MAs or public-domain range indicators, this version:
(1) Uses a double-smooth EMA logic on absolute price changes.
(2)Multiplies the range by an Impact Factor, giving a dynamic width.
(3) Applies a custom filter algorithm that limits noise and locks on trend movement.
This logic was modified from the concept of range-based filters, but entirely re-engineered to serve trend-following and TP triggering.
🟩 2. Visual Trend Zones (Upper/Lower Lines)
The filtered value generates two dynamic lines:
(1)One above the filter
(2)One below the filter
These create a color-filled “trend tunnel”, making it easy to identify:
(3)🔵 Uptrend (blue fill)
(4)🔴 Downtrend (red fill)
(5)🟡 Sideways market (no fill or neutral color)
These visual cues allow instant identification of market direction without reading complex data
📈 3. Smart Buy/Sell Signals (Confirmed, Non-Repainting ✅)
(1)🚀 Smart Buy is triggered when a confirmed uptrend begins (filter shifts upward with a
new confirmation).
(2)🔻 Smart Sell appears at the start of a confirmed downtrend.
(3)Sideways filters out choppy signals, reducing whipsaws.
✅ All signals are confirmed only after the candle closes (barstate.isconfirmed is used), meaning:
🔒 No repainting or false previews — 100% reliable on live charting.
💰 4. Take Profit System (Unique Utility)
This indicator tracks the entry price after a signal, and auto-detects when a Take Profit level
(in pips) is reached.
(1)💰 Book Profit alert is triggered above/below the candle.
(2)Helps secure gains without relying on external bots or platforms.
🔔 5. Real-Time Alerts Included
All alerts are built-in for automation:
(1)🚀 Smart Buy
(2)🔻 Smart Sell
(3)💰 Book Profit (Buy/Sell)
Trading Time Highlighter v2Check boxes for days of week.
Set the time you want to trade or backtest.
Adjust for UTC time.
GM
Dynamic Candle rating by Nikhil DoshiThis custom TradingView indicator assigns a rating from 1 to 5 to each candlestick on the chart based on the relative position of the close within its high-low range. It provides an at-a-glance visual assessment of candle strength or weakness, which can be useful for gauging intrabar sentiment.
Label colors provide intuitive visual cues:
🟩 1 (Green) – Strong bullish
🟢 2 (Lime) – Mild bullish
⚪ 3 (Gray) – Neutral
🟠 4 (Orange) – Mild bearish
🔴 5 (Red) – Strong bearish
True Buy Entry Signal – Real Breakout Filter**Updated Version – Now Filters Fake Breakouts!**
This is an enhanced version of the original *True Buy Entry Signal* script.
What's new:
- Filters out fake breakouts by requiring that the breakout bar:
- Has **volume above the average**
- **Closes as a bullish candle** (close > open)
- Still looks for:
- Volume spike buy signals near a user-defined **daily resistance level**
- High breakout within a confirmation window
Why this update?
Some previous ENTRY signals were triggering on weak breakouts, leading to failed trades. This version ensures that only **strong and intentional breakouts** generate entry signals.
---
Ideal For:
- 15-minute to 1-hour timeframes
- Pre-breakout sniper entries
- Smart money detection
How to Use:
- Set your resistance level based on the daily chart
- Watch for BUY signals just below resistance
- Enter when ENTRY triangle appears (confirmed breakout with strong volume)
If you're using the previous version, we recommend switching to this one for more reliable signals.
Developed by: ChartJay
True Buy Signal - Pre-Resistance Entry📈 **True Buy Entry Signal – Catch the Move Before Breakout!**
This script is designed for traders who want to **enter early** — before a breakout on the daily chart.
It detects **true buy pressure** using:
- High-volume spikes (compared to the 20-bar average)
- Strong bullish candle structure (close near high)
- Momentum confirmation (close > previous close)
**ENTRY signal** is shown **only when:**
- A valid buy signal occurs *near a user-defined daily resistance level*
- The candle’s high is broken within a few bars (default: 5 bars)
This helps traders:
- Identify **institutional or large buyer activity**
- Enter on 15-minute chart *before the breakout is obvious*
- Avoid late entries on already-exploded daily candles
**Ideal for:**
- Intraday swing traders
- Smart money concepts
- Early breakout positioning
---
**Custom Settings:**
- Volume Spike Threshold
- Daily Resistance Level
- Proximity % to Resistance
- Confirmation Window (Bars)
Use it with your own daily resistance lines for **powerful sniper entries.**
Developed by:
Abhi's Binary Candle Prediction - Non RepaintedThis script identifies Candlestick patterns for both bullish and bearish scenarios using a non-repainting logic structure. It combines candlestick behavior with a trend filter based on a user-defined EMA to improve signal quality. Here's what it does:
🔍 Key Features:
Detects Bullish and Bearish Mat Hold patterns based on a strong trend candle followed by 2–3 pullback candles and a breakout confirmation.
Uses a 50 EMA (default) to filter trades in the direction of the trend.
Displays a warning symbol on the 5th candle when a pattern is forming (before confirmation).
Plots Buy (triangle up) and Sell (triangle down) signals on the confirmation candle (6th candle).
Draws a visual line from the initial big candle to the confirmation candle for better pattern visibility.
Provides built-in alert conditions for both the warning and confirmation stages to support real-time decision making.
📈 Customization:
Set the number of pullback candles (1–3).
Adjust the EMA length for trend filtering.
This tool is ideal for traders looking for binary-style trade setups with defined entry criteria and no repainting signals. Use it on higher timeframes for more reliable results, and always test in a simulated environment before live trading.
Gold Important Smart SignalsScript Overview:
The script generates buy and sell signals for trading the Gold asset (or any asset you apply the script to) based on the following indicators:
Digital Root of Price (a numerology concept applied to the price levels),
Swing High/Low (price action based on relative highs and lows),
SMA (Simple Moving Average) filter.
Explanation of Key Components:
Swing High/Low Calculation:
Swing Highs and Swing Lows are identified by comparing the current price with the nearby price bars (left and right). If the high of a bar is greater than both the left and right prices, it is a swing high, and if the low is lower than both, it is a swing low.
The parameters left = 7 and right = 1 mean that we check 7 bars to the left and 1 bar to the right to confirm whether the current bar is a swing high or low.
Digital Root Filter:
The digital root of a number is the sum of its digits until a single-digit number is obtained. For example, the digital root of 345 would be calculated as 3 + 4 + 5 = 12, then 1 + 2 = 3.
For price levels (like swing highs and lows), the script checks if the digital root is equal to 1, 3, 6, or 9, which are considered "valid" for trade signals in this context. This filter is based on the assumption that these numbers may hold significance in predicting market reversals.
SMA (Simple Moving Average) Filter:
The SMA is calculated over a period defined by the user input (smaPeriod). The default value is 21 periods, but you can change it to any number (e.g., 50, 100).
Buy Signal is confirmed when the price is above the SMA, and a Swing Low signal (from the digital root filter) occurs.
Sell Signal is confirmed when the price is below the SMA, and a Swing High signal (from the digital root filter) occurs.
Final Signal Confirmation:
A Buy Signal occurs when both the digital root of the confirmed swing low and the price being above the SMA are true.
A Sell Signal occurs when both the digital root of the confirmed swing high and the price being below the SMA are true.
Visualization of Signals:
Instead of arrows, the signals are visualized as "BUY" and "SELL" labels on the chart, with red labels for sell signals and green labels for buy signals.
The labels are placed on the bar where the signal occurs, either above or below the price, making it clear when to consider opening a trade.
Optional Features:
Highlighting the 7th Bar Before Swing: This is a visual feature where the script highlights the 7th bar before a swing signal. It helps to visually identify significant price action leading up to a signal.
Plotting the SMA: The script optionally plots the SMA line on the chart, allowing you to visually track the price's relation to the moving average.
How This Script Can Be Used for Trading:
Buy Signals:
The script will mark Buy Signals when:
A Swing Low is confirmed with a valid digital root (1, 3, 6, or 9).
The price is above the SMA (this indicates an uptrend or a stronger market condition).
This is considered a long position signal and might be interpreted as an entry point to buy the asset.
Sell Signals:
The script will mark Sell Signals when:
A Swing High is confirmed with a valid digital root (1, 3, 6, or 9).
The price is below the SMA (indicating a downtrend or weakening market).
This is considered a short position signal and might be interpreted as an entry point to sell the asset.
Risk Management:
The script does not directly offer risk management strategies (like stop losses or take profits). These can be added manually based on the signals provided, or additional rules can be incorporated into the script for automatic risk management.
Testing and Optimization:
Since the script uses the SMA as a trend filter, it is important to test this strategy over different time periods and market conditions to verify how it performs.
The parameters, such as the smaPeriod, can be adjusted through the input field in the script to optimize the performance.
TradingView Rules and Notes:
Backtesting:
TradingView allows users to backtest strategies. This script is more of an indicator that provides visual cues on the chart, so you can manually observe how well the signals would have worked in the past. If you'd like to automate the strategy for backtesting purposes, you can convert this indicator into a strategy by adding buy and sell orders within the script.
Signal Confirmation:
The script requires two conditions for each trade:
The digital root must be one of 1, 3, 6, or 9, and
The price must be on the correct side of the SMA (above for buys, below for sells).
This two-step confirmation helps to filter out false signals and improves the reliability of the strategy.
Trade Execution:
The script provides only visual signals; you will need to execute the trades manually or modify the script into a strategy that can send buy or sell orders directly.
Market Conditions:
The SMA filter helps the script adapt to different market conditions. It avoids buying in downtrends (when the price is below the SMA) and selling in uptrends (when the price is above the SMA).
It's still important to apply proper risk management, as the strategy does not include any stop-loss or take-profit rules.
Final Thoughts:
The script provides a non-repeating signal system that aims to capture swing highs and lows while considering the overall market trend (via the SMA).
By using Buy and Sell labels, this script makes it easy to visualize trade opportunities.
It would be most effective when used in combination with a larger trading strategy that incorporates risk management and possibly other indicators.