RTH & Overnight ETH Levels (Configurable + Labels)Plots yesterday’s RTH high, low, close, today’s RTH open, and the latest overnight ETH high/low with fully customizable lines and floating labels.
Candlestick analysis
Low Volume Detector//@version=5
indicator("Low Volume Detector", overlay=true)
// Parameters
length = input.int(20, title="Volume MA Length")
threshold = input.float(0.5, title="Low Volume Threshold (as % of MA)", minval=0.1, step=0.1)
// Volume logic
vol = volume
volMA = ta.sma(vol, length)
lowVol = vol < (volMA * threshold)
// Plot background when volume is low
bgcolor(lowVol ? color.new(color.red, 85) : na, title="Low Volume Background")
// Optional: plot volume and its MA in separate pane
plot(vol, title="Volume", color=color.gray, style=plot.style_columns)
plot(volMA, title="Volume MA", color=color.orange)
Multi-Layer Pin Zone AnalyzerAnalyzes LOW (bottom wicks) and HIGH (top wicks) to detect repeated touches within a defined tolerance.
Clusters nearby pin levels and, when the number of touches exceeds a threshold, draws infinite horizontal rectangles (zones) to highlight key areas.
LOW (teal): Support zones
HIGH (red): Resistance zones
COMBINED (orange): Mixed zones using both highs and lows
Each type has independent settings for tolerance (%), minimum touches, and maximum zones.
Automatically visualizes strong support, resistance, and consolidation areas across the chart.
GC Scalping Plan - No Stop LossLevels for Gold...........................................................................................................................................................
3HH/3LL → Next Bar Inside = Signal (Neon)Detects 3 consecutive Higher Highs or 3 consecutive Lower Lows.
Signals only when the very next candle is an Inside Bar.
Uses your Neon Lime (HH case) and Neon Pink (LL case) colors.
3HH/3LL → Next Bar Inside = Signal (Neon)Here’s a minimal, compile-ready Pine v5 indicator that does exactly this:
Detects 3 consecutive Higher Highs or 3 consecutive Lower Lows.
Signals only when the very next candle is an Inside Bar.
Uses your Neon Lime (HH case) and Neon Pink (LL case) colors.
ORB 30 Alerts (ATH)Overview
ATH ORB 30m automates the Opening Range Breakout (ORB) process across multiple global sessions — Tokyo, London, and New York — and delivers clean, consolidated alerts when fresh breakouts occur.
It’s built for traders who track several tickers and want precise, non-repeating signals that reflect genuine momentum shifts, not constant noise.
How it works
The script defines a 30-minute Opening Range (ORB) for each enabled session and plots its high, low, and midpoint levels.
Every 10-minute candle close is evaluated to detect first-time crosses of those range boundaries — upward or downward.
Once a breakout triggers, that side’s alert is disabled until price returns inside the range, where the system automatically re-arms.
Multiple triggers in the same bar are batched into one combined alert, listing all symbols that broke out.
A built-in debug panel and optional chart labels visualize each trigger and re-arm event in real time.
Key features
-Multi-session ORB logic (Tokyo, London, New York)
-10-minute confirmation filter to validate breakouts
-Automatic alert re-arming when price re-enters range
-Combined per-bar alert messages (no duplicates)
-Optional on-chart labels and debug diagnostics
-Optimized for watchlists and multi-symbol scanners
Usage
Designed for day traders and momentum scalpers, this tool highlights early directional strength during market opens.
Add it to your chart, enable your preferred sessions, and set alert conditions for “ORB Breakouts (BUY),” “ORB Breakdowns (SELL),” or "Any alert() function call" You’ll receive one concise message each bar showing exactly which symbols broke out and in which direction.
DISCLAIMER:
This script is for educational and informational purposes only.
It does not constitute financial advice or a recommendation to buy or sell any security.
Always perform your own due diligence and backtesting before using any trading strategy live.
Trading involves risk; past performance does not guarantee future results.
Session SFPThis script is a powerful, multi-timeframe tool designed to identify high-probability Swing Failure Patterns (SFPs) at key historical levels.
Instead of looking for traditional "pivots" (like a 3-bar swing), this indicator finds the actual high and low of a previous higher-timeframe (HTF) bar (e.g., the previous weekly high/low) and waits for a lower-timeframe (LTF) candle to sweep that level and fail.
This allows you to spot liquidity sweeps and potential reversals at significant, structural price points.
How It Works
The indicator's logic is based on a simple, two-timeframe process:
Level Detection: First, it finds the high and low of the previous bar on your chosen "Level Timeframe" (e.g., W for Weekly, D for Daily). It plots these as small 'x' markers on your chart.
SFP Identification: Second, it watches price action on a lower "SFP Timeframe" (e.g., 240 for 4H). A potential SFP is identified when a candle's wick sweeps above a key high or below a key low.
Confirmation: The SFP is only confirmed after the SFP candle closes back below the high (for a bearish SFP) or above the low (for a bullish SFP). It then waits for a set number of "Confirmation Bars" to pass. If price does not close back over the level during this window, the signal is locked in, and a label is printed.
How to Use (Key Settings)
Level Timeframe (Most Important): This is the timeframe for the levels you want to trade. Set this to W to find SFPs of the previous weekly high/low. Set it to D to find SFPs of the previous daily high/low.
SFP Timeframe: This is the timeframe you want to use to find the SFP candle itself. This should be lower than your Level Timeframe (e.g., 240 or 60).
Level Lookback: This controls how many old levels the script will track. A value of 10 on a W Level Timeframe will track the highs and lows of the last 10 weeks.
Confirmation Bars: This is your "patience" filter. It's the number of SFP Timeframe bars that must close without reclaiming the level after the SFP. A value of 0 will confirm the SFP immediately on the candle's close.
Enable Wick % Filter: A quality filter. If checked, this ensures the SFP candle's rejection wick is a significant percentage of the candle's total range.
Chart Visuals
'x' Markers: These are the historical highs and lows from your "Level Timeframe". You can turn these on or off in the settings.
SFP Label: When an SFP is fully confirmed, a label (Bearish SFP or Bullish SFP) will appear, detailing the level that was swept and the timeframes used.
SFP Line: A solid horizontal line is drawn from the 'x' marker to the SFP candle to highlight the sweep.
Colored Boxes (Optional): If you are viewing a chart timeframe lower than your "SFP Timeframe", you can enable background boxes to highlight the exact SFP candle and its confirmation bars.
EMA 200 - 50 - 20 | Davide BuncugaThis script displays three key Exponential Moving Averages (EMAs) on the chart: EMA 200, EMA 50, and EMA 20.
These moving averages are commonly used by traders to identify the overall market trend, medium-term structure, and short-term momentum.
EMA 200 – Represents the long-term trend and acts as a dynamic support/resistance.
EMA 50 – Used to identify the medium-term direction of the market.
EMA 20 – Highlights short-term momentum and pullback areas within the trend.
This indicator is designed to help traders quickly analyze market structure and align their trading decisions with the dominant trend.
Fractional + Heikin-Ashi Candlestick – CF / ABNew model of Candlestick, Tis model constructed on Fractional Calculus mathematical, use two kernel - Caputo-Fabrizio and Atangana-Baleanu.
26 EMA Reversal LogicThis indicator identifies two distinct price behaviours on the daily charts of SPY, SPX, QQQ, or IXIC, using the 26-period EMA as a reference. It plots one signal per downtrend — either a yellow circle (bearish continuation) or a green circle (bullish reversal) — and locks further signals until price closes above the 26 EMA.
The yellow circles are when we close below the 26-day EMA and the next day we make a lower low.
The green circles are when we close below the 26-day EMA and the next day we actually open higher and that low is never revisited.
Symbol Restriction
Only works on: SPY, SPX, QQQ, IXIC
On any other symbol, the script will display an error and stop.
Timeframe Restriction
DAILY chart only — will show an error on any other timeframe.
Core Logic: Two-Candle Pattern Detection
Both signals start with the same Day 1 condition:
Day 1: The candle closes below the 26 EMA
From there, Day 2 determines the signal:
Yellow Circle (Bearish Continuation)
Plotted BELOW the Day 2 candle
Conditions:
Day 1 closed below the 26 EMA
Day 2 makes a lower low than Day 1’s low → low < low Interpretation:
Price is weakening — pushing to new lows below the EMA.
Confirms downward momentum.
Green Circle (Bullish Reversal / Failed Breakdown)
Plotted ABOVE the Day 2 candle
Conditions:
Day 1 closed below the 26 EMA
Day 2 opens higher than Day 1’s close → open > close
Day 2’s low never revisits Day 1’s low → low >= low Interpretation:
Buyers defend the prior low with a higher open — classic false breakdown.
Suggests a potential reversal higher.
One Signal Per Downtrend (Lock & Reset)
After either a yellow or green circle is plotted, no more circles appear
Prevents clutter — focuses on first meaningful reaction
Reset Rule:
Lock is released only when price closes above the 26 EMA
Best Used On
Daily timeframe
SPY, SPX, QQQ, IXIC only
With trend, volume, or broader market context
Alpha Trader University - Average Session SolatilityBast Indictor
You will need this indicator in your daily life, use it properly and make money.
TOBYGBADE1: Dynamic Big Candle Pip RangeDisplays candle ranges in pips as a histogram in a separate pane, highlights big candles exceeding a dynamic threshold, and colors bars and labels green/red based on bullish or bearish direction.”
CME Close PriceThis script adds the closing price of another asset on your chart, such as the BTC1! Futures Price on your BTC Spot Chart for example.
HA Countdown Alert🟡 HA Countdown Alert — Heikin Ashi Candle Timing Assistant
Description:
This indicator is designed for traders who use Heikin Ashi candles on the 5-minute timeframe and want to receive a precise alert in the final seconds before the candle closes — when momentum is already defined but the bar hasn’t closed yet.
How it works:
Monitors Heikin Ashi direction (Bullish / Bearish) on a fixed 5-minute timeframe.
Activates a visual and sound alert when the remaining time before candle close is below your chosen countdown.
Displays a yellow marker and a dynamic label on the chart when the condition is active.
Allows you to customize the alert message directly from the input panel.
Inputs:
🟢 Direction: Bullish / Bearish
⏱ Countdown (seconds before close)
💬 Custom alert message
Why it helps:
This tool is perfect for traders who want to prepare for setups before the candle closes, stay focused on timing, and reduce FOMO-driven decisions.
It alerts you exactly when momentum confirms but the candle is still forming — giving you time to act with confidence.
Strict Engulfing + Rich Email Alerts (v6, stable)an engulfing pattern indicator designed to alert whenever the pattern forms in the chart. this is killer pattern when used together with market structure. not final version though
Multi-EMA Session Breakout Strategythis is a strategy that use the session high and low and the EMA LOWS 2 3 6 9 110 355 AND 480
Breakout an Reversal Signal Detector with Colored in Bar TrendsThe script detects breakouts and/or reversals: when candles close outside the recent period high or low, it prompts a signal, indicating a change in market trend.
You can customize the bar color to indicate trending phases.
It can be used effectively to identify both breakouts and reversals, making it a versatile tool for trend and reversal analysis.
Simple yet effective.
Enjoy!
Direction LineThis is a simplified indicator for the TradingView platform, intended for beginner traders. It draws a line that follows the candle's closing price, coloring it green on an uptick (close > open) and red on a downtick. The indicator helps visualize the market impulse direction based on the basic concept of pivot levels, without unnecessary elements such as labels, alerts, or additional levels. Ideal for those who want to quickly understand the trend without data overload.
鲨鱼交易指标(创始版)If you need more good indicators, please contact me.
需要更多无敌指标,请联系我:
钉钉:shayv888
wx:19117160239
tg:@SYSY11123
Pannello Multi-Account con Spread e Dimensione Regolabile📘 Indicator Description: Multi-Account Execution Panel with Spread-Adjusted Risk
This indicator is designed for traders who manage multiple accounts with different capital sizes and execution models—such as a personal account and a prop firm account. It provides a visual panel that calculates and displays the ideal position size for each account, factoring in stop loss, spread, and risk preferences.
🔧 Key Features:
- Manual risk input in USD for the personal account (e.g., $2, $5, $10)
- Percentage-based risk for the prop firm account (e.g., 1% of €5,000)
- Spread-adjusted stop loss for each account, ensuring accurate risk calculation
- Real-time pip value calculation based on the current symbol
- Position size output:
- In units for the personal account
- In standard lots for the prop firm account
- Adjustable table size (Compact, Standard, Extended) to fit your screen and workflow
🧠 Ideal for:
- Traders who execute sequentially across multiple accounts
- Those who want precise, spread-aware sizing without manual calculations
- Discretionary strategies that require visual clarity and execution discipline
Italian






















