Bull/Bear Lower Volume (vijayachandru)Bull/Bear Lower Volume (HA + Box + ±15 Lines)
This indicator tracks intraday Heikin Ashi candles and highlights the lowest-volume bull/bear candles after 9:25 (IST). When price breaks above/below these candles, a breakout box is drawn with optional ±15 point dashed levels. It plots clear Buy/Sell signals, marks box breakouts, and provides alert conditions for all setups—helping traders spot early intraday breakouts driven by volume shifts
Indicadores de Banda
Pump/Dump Detector [Modular]//@version=5
indicator("Pump/Dump Detector ", overlay=true)
// ————— Inputs —————
risk_pct = input.float(1.0, "Risk %", minval=0.1)
capital = input.float(100000, "Capital")
stop_multiplier = input.float(1.5, "Stop Multiplier")
target_multiplier = input.float(2.0, "Target Multiplier")
volume_mult = input.float(2.0, "Volume Spike Multiplier")
rsi_low_thresh = input.int(15, "RSI Oversold Threshold")
rsi_high_thresh = input.int(85, "RSI Overbought Threshold")
rsi_len = input.int(2, "RSI Length")
bb_len = input.int(20, "BB Length")
bb_mult = input.float(2.0, "BB Multiplier")
atr_len = input.int(14, "ATR Length")
show_signals = input.bool(true, "Show Entry Signals")
use_orderflow = input.bool(true, "Use Order Flow Proxy")
use_ml_flag = input.bool(false, "Use ML Risk Flag")
use_session_filter = input.bool(true, "Use Volatility Sessions")
// ————— Symbol Filter (Optional) —————
symbol_nq = input.bool(true, "Enable NQ")
symbol_es = input.bool(true, "Enable ES")
symbol_gold = input.bool(true, "Enable Gold")
is_nq = str.contains(syminfo.ticker, "NQ")
is_es = str.contains(syminfo.ticker, "ES")
is_gold = str.contains(syminfo.ticker, "GC")
symbol_filter = (symbol_nq and is_nq) or (symbol_es and is_es) or (symbol_gold and is_gold)
// ————— Calculations —————
rsi = ta.rsi(close, rsi_len)
atr = ta.atr(atr_len)
basis = ta.sma(close, bb_len)
dev = bb_mult * ta.stdev(close, bb_len)
bb_upper = basis + dev
bb_lower = basis - dev
rolling_vol = ta.sma(volume, 20)
vol_spike = volume > volume_mult * rolling_vol
// ————— Session Filter (EST) —————
est_offset = -5
est_hour = (hour + est_offset + 24) % 24
session_filter = (est_hour >= 18 or est_hour < 6) or (est_hour >= 14 and est_hour < 17)
session_ok = not use_session_filter or session_filter
// ————— Order Flow Proxy —————
mfi = ta.mfi(close, 14)
buy_imbalance = ta.crossover(mfi, 50)
sell_imbalance = ta.crossunder(mfi, 50)
reversal_candle = close > open and close > ta.highest(close , 3)
// ————— ML Risk Flag (Placeholder) —————
ml_risk_flag = use_ml_flag and (ta.sma(close, 5) > ta.sma(close, 20))
// ————— Entry Conditions —————
long_cond = symbol_filter and session_ok and vol_spike and rsi < rsi_low_thresh and close < bb_lower and (not use_orderflow or (buy_imbalance and reversal_candle)) and (not use_ml_flag or ml_risk_flag)
short_cond = symbol_filter and session_ok and vol_spike and rsi > rsi_high_thresh and (not use_orderflow or sell_imbalance) and (not use_ml_flag or ml_risk_flag)
// ————— Position Sizing —————
risk_amt = capital * (risk_pct / 100)
position_size = risk_amt / atr
// ————— Plot Signals —————
plotshape(show_signals and long_cond, title="Long Signal", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small)
plotshape(show_signals and short_cond, title="Short Signal", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.small)
// ————— Alerts —————
alertcondition(long_cond, title="Long Entry Alert", message="Pump fade detected: Long setup triggered")
alertcondition(short_cond, title="Short Entry Alert", message="Dump detected: Short setup triggered")
Leaders DashboardA compact, glanceable leadership dashboard for monitoring market health via your hand-picked “Top 8” stocks. It tracks trend posture and momentum using practical checks (21-EMA, 50-DMA, rising 21, and proximity to highs), plus optional QQQ/SPY benchmark rows , all in a clean, color-forward table that sits on your chart.
What it shows
Sym – your 8 symbols (short format).
>21 – price above the 21-EMA.
>50 – price above the 50-DMA.
↑21 – 21-EMA sloping up.
ΔX% – within X% of high (default logic: ATH; switchable to N-bar High).
Price – last price (toggleable).
Σ Totals row (optional) – counts “passes” across your 8 names for each column, with Neutral or Majority shading.
Benchmarks (QQQ/SPY) are optional rows for context and do not contribute to totals.
Built for signal at a glance
Color-first cells with minimal ink: defaults to labels OFF and ✓ / ✗ markers ON.
Δ% header is compact (e.g., Δ2%) to save space.
Position & size: snap to any chart corner; Tiny/Small/Medium/Large font presets.
Per-column toggles: show/hide any column to match your workflow.
Controls (key inputs)
Symbols: 8 user slots (use exchange prefixes, e.g., NASDAQ:PLTR).
Benchmark rows: None / QQQ / SPY / Both (not counted in Σ).
Table position & size: four corners; Tiny → Large font presets.
Opacity mode:
Per-color (default) – honors each color picker’s opacity (PF/W defaults set to 50%).
Global – one slider controls transparency across the whole table.
YES/NO labels: off by default.
Cell marker: None / Dot / Check/X (default).
Show Price: on by default.
Show totals row (Σ): on by default; Totals color mode = Neutral or Majority.
Δ% logic: choose ATH or N-bar High and set the % threshold and lookback.
How to use it
Drop it on any timeframe; the stats are computed on your current chart timeframe for each symbol.
Enter your 8 leaders (e.g., AVGO, GEV, HOOD, MSFT, NVDA, PLTR, RBLX, TSM) and optionally add QQQ/SPY.
Keep labels off with Check/X markers for a clean, color-driven read.
Watch the Σ row:
- 6/8 passing on >21, >50, and ↑21 suggests healthy leadership breadth.
- A high Δ% count means many leaders are pressing highs.
Notes & tips
If a symbol shows as invalid, confirm the exchange prefix (e.g., NASDAQ:, NYSE:, AMEX:).
ATH proximity uses up to 10,000 bars; switch to N-bar High if you prefer a rolling window.
The table is an overlay; use opacity/size to keep it unobtrusive over price.
Disclaimer: For educational/information purposes only. This script does not provide financial advice, nor does it place or manage orders. Always do your own research.
Pivot ConnectPivot Connect –
a condensed and educational version
Objective
Automatically draws extended horizontal lines at the pivots (relevant highs and lows) of three timeframes:
The current chart (1 min, 5 min, 1 h… whatever you're looking at)
Weekly (W)
4-hour (240 min)
These lines are considered "protected levels": resistances (highs) or supports (lows).
The script also detects when the price breaks only the wick break to change the color/style of the line and warn that the level may have become invalid.
What is a pivot here?
ta.pivothigh / ta.pivotlow calculate a local high/low that has at least n bars on either side.
The pivotStrength parameter (default 12) is that n.
Therefore, a pivot high requires 12 candles to the left and 12 to the right lower than itself.
Lines drawn:
Highs and lows of the current timeframe (red and green)
Weekly highs and lows (blue and orange) if useWeekly = true
4-hour highs and lows (fuchsia and aqua) if use4H = true
Each line extends to the right by "extendLines" bars (default 100).
Wick break
This is reviewed bar by bar:
For a High level: if the high breaks above the line but the close remains below → it is considered a false break (wick break) and the line changes to purple and dashed style.
For a Low level: if the low breaks above the line but the close remains above → same warning.
The wickBreakBars (5) parameter is not used in the current logic; it was probably intended for future validation.
Cleaning Old Lines
Every 100 bars, lines with a right end older than 500 bars are removed to avoid memory overload (max_lines_count = 500).
Quick Customization
Colors and styles for each category.
Show or hide each line group (showHighs, showLows, useWeekly, use4H).
Thickness, solid/dash/dotted style.
Example of on-screen reading
Horizontal red line: resistance of the timeframe itself.
Horizontal blue line: important weekly high.
If a line changes to dashed purple: the price pierced it with the wick but did not close above it (at highs) – possible rejection.
This gives you a visual map of multi-timeframe support and resistance levels with quick alerts for "suspicious" breakouts.
Merek Equal Highs and LowsEQH – Equal Highs Indicator
Description:
The EQH indicator detects Equal Highs on the chart. This occurs when price reaches the same high level two or more times without breaking it decisively.
Interpretation:
Liquidity zone: Equal highs are often seen as areas where liquidity (stop-loss clusters) is located.
Breakout potential: A break above this level often signals that liquidity is being taken before either a reversal or continuation of the trend.
Market structure: EQH highlights resistance areas that can serve as key decision points for traders.
Use cases:
Identifying potential stop-hunt zones
Spotting resistance levels
Anticipating liquidity grabs before reversals or trend continuations
EQL – Equal Lows Indicator
Description:
The EQL indicator detects Equal Lows on the chart. This occurs when price reaches the same low level two or more times without breaking lower.
Interpretation:
Liquidity zone: Equal lows are areas where liquidity (sell-side stops) tends to accumulate.
Breakout potential: A move below this level often indicates liquidity being swept before a possible reversal or continuation.
Market structure: EQL highlights support areas that can be critical for trade decisions.
Use cases:
Identifying sell-side liquidity zones
Spotting support levels
Recognizing possible stop-hunts before reversals or trend continuations
BankNifty Institutional Zone MapperBankNifty Institutional Zone Mapper is a powerful support–resistance mapping tool designed to reveal the hidden grid where institutions are most likely placing their orders.
Instead of random lines, this indicator uses dual baselines with equidistant spacing to create highly accurate zones that act as magnets for price.
🔹 Why try it?
Detect institutional reaction levels instantly.
Spot high-probability support & resistance zones without guesswork.
Works seamlessly across intraday & positional trading.
Eliminates chart clutter while keeping the levels precise & repeatable.
Whether you’re trading BankNifty options, futures, or intraday moves, these zones will help you identify where real market battles are happening.
Add it once to your chart, and you’ll immediately see why price respects these levels again and again.
Emre AOI Zonen Daily & Weekly (mit Alerts, max 60 Pips)This TradingView indicator automatically highlights Areas of Interest (AOI) for Forex or other markets on Daily and Weekly timeframes. It identifies zones based on the high and low of the previous period, but only includes zones with a width of 60 pips or less.
Features:
Daily AOI Zones in blue, Weekly AOI Zones in yellow with 20% opacity, so candlesticks remain visible.
Persistent zones: AOI boxes stay on the chart until the price breaks the zone.
Multiple zones: Supports storing multiple Daily and Weekly AOIs simultaneously.
Break Alerts: Sends alerts whenever a Daily or Weekly AOI is broken, helping traders spot key levels in real-time.
Fully automated: No manual drawing needed; zones are updated and extended automatically.
Use Case:
Ideal for traders using a top-down approach, combining Weekly trend analysis with Daily entry signals. Helps identify support/resistance, supply/demand zones, and critical price levels efficiently.
EMAs 20/50/200 with Trend ColoringIt calculates EMA 20, 50, and 200.
For each EMA, it compares the current value with the previous bar (ema > ema ).
If rising → green, if falling → red.
All three EMAs are plotted with different colors dynamically changing by slope.
Scalp Sniper EMA-RSI (M5–M15) — v6.2 (freeze lines on hit)Scalp sniper who detect entry and sl tp, TP are 1rr 1.5rr 2 rr, this strategies work in 15m and 5m time frame
Crypto Strength MatrixOverview
The "Crypto Strength Matrix" is a custom Pine Script v5 indicator designed for cryptocurrency traders to assess the relative strength of major crypto market segments against traditional markets (e.g., the U.S. Dollar Index) and Bitcoin dominance. This indicator plots the strength of Altcoins (excluding ETH and SOL), Ethereum (ETH), Solana (SOL), the Dollar Index (DXY) versus Altcoins, and Bitcoin Dominance (DOM) on a 0-100 scale, using the Relative Strength Index (RSI) methodology. It provides a visual and intuitive way to identify overbought (>70) or oversold (<30) conditions across these assets, helping traders spot potential entry or exit points in the crypto market.
How It Works
The indicator fetches real-time data from various crypto and forex symbols available on TradingView, including:
CRYPTOCAP:TOTAL2 (total altcoin market cap),
CRYPTOCAP:ETH and CRYPTOCAP:SOL (market caps of ETH and SOL),
CRYPTO:ETHUSD and CRYPTO:SOLUSD (ETH and SOL prices),
CRYPTOCAP:BTC.D (Bitcoin dominance),
TVC:DXY (U.S. Dollar Index).
Calculations:
Altcoin Strength (OTH): Measures the RSI of the normalized market cap of all altcoins excluding ETH and SOL (calculated as TOTAL2 - ETH - SOL), relative to the total altcoin market cap. This reflects the strength of smaller altcoins.
ETH Strength: Computes the RSI of ETH/USD price adjusted by the DXY, isolating ETH's performance against the dollar.
SOL Strength: Similar to ETH, calculates the RSI of SOL/USD price adjusted by the DXY, focusing on Solana's strength.
DXY vs Altcoins: Uses the RSI of the DXY divided by the normalized total altcoin market cap, indicating the dollar's strength relative to altcoins.
Bitcoin Dominance (DOM): Directly applies RSI to Bitcoin dominance data, showing BTC's market control.
Each metric is plotted as a line with a unique color (OTH in aqua, ETH in teal, SOL in purple, DXY in green, DOM in orange) and labeled at the end of the chart for easy identification. Horizontal lines at 70 (overbought), 50 (neutral), and 30 (oversold) provide reference levels.
How to Use
Add the Indicator: Apply the "Crypto Strength Matrix" to a cryptocurrency chart (e.g., BTC/USD or ETH/USD) on a daily or 4-hour timeframe for optimal results.
Interpret the Lines:
OTH (Altcoins excluding ETH and SOL): A value above 70 suggests strong momentum in smaller altcoins, while below 30 indicates weakness. Monitor for divergence with ETH and SOL.
ETH and SOL: High values (>70) signal potential overbought conditions for these assets, while low values (<30) may indicate oversold opportunities.
DXY: Rising above 70 may suggest a stronger dollar, potentially pressuring crypto prices, while below 30 could indicate a weakening dollar, favoring crypto.
DOM: A value above 70 reflects strong Bitcoin dominance, often leading to altcoin underperformance, while below 30 may signal altcoin season.
Combine with Price Action: Use the indicator alongside candlestick patterns or volume analysis to confirm trade signals.
Adjust RSI Length: The default RSI length is 14, but you can tweak this input in the indicator settings to suit your trading style (e.g., 7 for shorter-term, 21 for longer-term trends).
Monitor Trends: Look for crossovers between lines (e.g., OTH rising above DXY) or alignment with the 50 neutral line to gauge market shifts.
Tips
Timeframe Selection: Daily charts provide a broad market view, while 4-hour charts offer more frequent signals. Avoid very short timeframes (e.g., 5m) due to noise.
Contextual Awareness: Combine with macroeconomic news (e.g., U.S. dollar strength) and Bitcoin price movements for better decision-making.
Risk Management: Use the indicator as a supplementary tool, not a standalone signal, and always set stop-losses based on your risk tolerance.
This indicator is ideal for crypto traders seeking a comprehensive view of market dynamics without the complexity of multiple charts. Enjoy trading with the "Crypto Strength Matrix"!
Momentum Matrix SignalMomentum Matrix Signals is a real-time indicator that finds BUY/SELL signals using a VWMA trend, closing momentum, and a strength score. It allows for re-entries & exits. ⚠️ WARNING: This version repaints; signals can disappear before a bar closes.
Signal Scoring
A signal is only considered if it first meets two mandatory conditions: a momentum trend and VWMA trend alignment.
If these are met, the signal is then scored from 0 to 5 based on a checklist of five factors:
2-Bar Trend: Confirms initial momentum.
3-Bar Trend: Confirms sustained momentum.
VWMA Trend: Confirms main trend alignment.
Volume Pressure (OBV): Confirms money flow.
Volume Spike (RVOL): Confirms market interest.
A higher score indicates a stronger, higher-conviction signal.
Futures Rotation Strategy - Overlay (Tables & Signals)This strategy focuses on the laggards and leaders of the market indices and does some weird stuff and determines which to long or short.
David Dang - Scalp M15/H1 (BTC/USDT)The Scalp Buy/Sell Volume + Support Resistance indicator is designed for traders who like short-term trading (scalping). The tool combines EMA trends, money flow strength (volume) and important support - resistance zones to give entry/exit signals.
Green arrow (BUY): When the price crosses EMA, the volume increases and holds the support zone.
Red arrow (SELL): When the price is below EMA, the volume increases and fails at the resistance zone.
Displayed with EMA, support - resistance lines for traders to easily observe the trend.
🎯 Super MA Arrows with Trend Bands🎯 Core Structure of the Indicator
1. Input Parameters Configuration
One of the most comprehensive indicators, featuring 50+ configurable variables, categorized into:
MA Settings: Define MA types and periods
Signal Settings: Customize signal conditions
Display Settings: Manage visual outputs
AI Settings: Enable/disable learning module
Multi-Timeframe Settings: Analyze across multiple timeframes
2. Moving Average & Envelope Calculations
The indicator employs multiple moving averages and an adaptive envelope:
Fast MA: Captures short-term movement (default: 9)
Slow MA: Reflects overall trend direction (default: 21)
Filter MA: Filters market noise (default: 50)
Envelope: Auto-adjusting support/resistance zones
3. Market Structure Analysis
Purpose: Confirm the market’s directional bias by evaluating swing highs/lows, breakouts, and consolidation zones.
Momentum Signals – Real-time (Repainting)This indicator generates real-time BUY/SELL signals using a confluence of VWMA trend, 3-bar momentum, and volume, then filters them by a strength score.
⚠️ **WARNING:** This version **repaints**; signals can appear and disappear before the bar closes.
Super MA Arrows with Trend Bands1. Input Parameters Configuration
One of the most comprehensive indicators, featuring 50+ configurable variables, categorized into:
MA Settings: Define MA types and periods
Signal Settings: Customize signal conditions
Display Settings: Manage visual outputs
AI Settings: Enable/disable learning module
Multi-Timeframe Settings: Analyze across multiple timeframes
2. Moving Average & Envelope Calculations
The indicator employs multiple moving averages and an adaptive envelope:
Fast MA: Captures short-term movement (default: 9)
Slow MA: Reflects overall trend direction (default: 21)
Filter MA: Filters market noise (default: 50)
Envelope: Auto-adjusting support/resistance zones
3. Market Structure Analysis
Purpose: Confirm the market’s directional bias by evaluating swing highs/lows, breakouts, and consolidation zones.
SMC Multiestruturas (Liquidez + Sweep + Caixa + BOS) [v2]indicador multiframe com identicacao de liquidez manipulação e quebra de estruturas
Qabas systemQabas System — Multi-Layered Smart Trading Framework
The Qabas System is an advanced all-in-one Pine Script indicator designed to combine institutional-grade analysis, smart entry/exit detection, and adaptive risk management into a single framework. It integrates multiple professional trading concepts into one ecosystem, making it suitable for intraday, swing, and position trading.
⸻
Core Components
1. VSA Engine (Volume Spread Analysis)
Detects institutional footprints (accumulation, distribution, no-demand, supply tests) by analyzing the relationship between candle spread, volume, and close location.
2. Order Blocks (Supply & Demand Zones)
Automatically highlights bullish and bearish order blocks with customizable transparency, showing where institutions left unfilled orders.
3. Smart Traps (Liquidity Traps)
Identifies bull and bear traps by detecting abnormal wicks and volume exhaustion near highs/lows — a common reversal signal.
4. Fibonacci Golden Levels
Draws adaptive retracement levels (23.6%, 38.2%, 50%, 61.8%, 78.6) aligned with the current market trend.
5. CPR (Central Pivot Range)
Daily pivot zones acting as magnets for price, helping detect high-probability reversal and breakout areas.
6. Liquidity Zones
Detects liquidity sweeps above highs and below lows combined with strong volume confirmation.
7. Market Structure (Chanlun Waves)
Tracks higher-highs / lower-lows to outline bullish or bearish structural waves.
8. Breakout Engine (Duanxian Gate)
Confirms valid breakouts using EMA/Donchian/Linear Regression baselines with ATR and volume filters.
9. Adaptive Resonance Oscillator (ARO)
A proprietary entry/exit system based on Hilbert transform and RSI resonance, plotting BUY/SELL arrows only when conditions are valid and alternating (to avoid duplicate signals).
⸻
Risk & Trade Management
• Smart ATR / Fibonacci / Structure-based stop loss options.
• Fibonacci / Risk-Reward / Structure-based take profit logic.
• Built-in auto-risk engine with position sizing (% risk per trade).
• ATR-based adaptive targets for breakout scenarios.
⸻
Visualization & Dashboard
• Multiple color themes (Neon, Professional, Matrix, Gold).
• Smart candle coloring for volume spikes and weak drops.
• Order Block boxes with custom transparency.
• A dynamic Arabic/RTL dashboard showing:
• Decision (Buy/Sell/Strong Buy/Strong Sell/Wait)
• Trend strength (across multiple timeframes)
• Volume pressure (Accumulation / Distribution / Neutral)
• Range & Breakout probabilities
⸻
Dynamic Probabilities Engine
The system records historical outcomes near supply/demand boundaries and continuously adapts breakout probability calculations. This enables it to dynamically project probability of ranging vs breaking out, and update targets accordingly.
⸻
How It Works (Step-by-Step)
1. Market Context: Multi-timeframe EMAs define overall trend score.
2. Institutional Clues: VSA, order blocks, traps, CPR, liquidity, and Fibonacci generate signals.
3. Structural Confirmation: Breakouts and wave analysis validate directional bias.
4. Decision Engine: Weighted scoring system fuses all signals into a single decision (BUY / SELL / WAIT) with confidence level.
5. Execution: ARO entry/exit signals provide precise timing inside the broader context.
6. Risk Management: Adaptive stop loss and take profit methods are applied automatically.
⸻
👉 In summary:
The Qabas System acts like an institutional trading toolkit inside one indicator — combining price action, smart volume, liquidity, structure, and adaptive risk to deliver context-aware, probability-driven trade signals with a clear visual dashboard.
Sessions — Asia / London / New York (shaded + start/end arrows)Asian Session London Session Newyork Session
- adjust time its in utc otherwise you will be trading random times
Session Highs & Lows — Customizable + HTF Wick Liquidity (H1/H4)Yesterdays ASIAN LONDON AND NEWYORK highs and Lows
Todays ASIAN LONDON AND NEWYORK highs and lows
1 HOUR AND 4 HOUR LIQ POINTS
Hitu - MTF High/Low Marker
This indicator is a powerful tool for traders, designed to display the high and low levels from multiple significant timeframes directly on your chart. It helps you quickly identify key support, resistance, and liquidity levels at a glance, improving your understanding of the market structure.
Key Features:
* Multi-Timeframe Support: Visualize high and low levels from Monthly, Weekly, Daily, 4H, 1H, 15M, and 5M timeframes.
* Full Customization: Each timeframe's line can be customized with your preferred color and style (Solid, Dashed, or Dotted) directly from the settings.
* Toggle On/Off: You have complete control to enable or disable any timeframe level to match your specific trading strategy.
How It Helps:
The MTF High/Low Marker simplifies the process of finding crucial price zones. By seeing key highs and lows from higher timeframes on your current chart, you can make more informed decisions about your entries, exits, and overall risk management.