TURKI. مناطق عرض وطلب 2. BOS كسر هيكل السوق 3. 4 متوسطات EMA 4. إشارات دخول 5. Smart Mode وضع ذكي يغيّر بعض التشدد حسب حالة السوPine Script® indicatorby Turki-2013
Auto Swings (1H=2, 5m=6). Авто-налаштування під ТФ len = timeframe.period == "60" ? 2 : timeframe.period == "5" ? 6 : 2 👉 Це означає: на 1H → len = 2 (швидкі свінги) на 5m → len = 6 (глибші свінги) інші ТФ → 2 📌 len = наскільки далеко дивимось вліво/вправо для свінга 📊 2. Що таке свінг у твоєму коді 🔴 Верхній свінг (top fractal) center = bodyHigh(_len) 👉 центральна свічка повинна бути: вища за всі свічки зліва і вища за всі справа 🟢 Нижній свінг (bottom fractal) Навпаки: найнижча серед сусідів ❗ ВАЖЛИВО Ти використовуєш тіло свічки, а не тіні: bodyHigh = max(open, close) bodyLow = min(open, close) 👉 тому: ігноруєш шпильки (wicks) береш тільки "реальну ціну" 🚫 Додаткове обмеження (чому пропускає свінги) if center == bodyHigh(...) ok := false 👉 якщо ціни рівні → свінг НЕ рахується Це робить індикатор: 👉 дуже строгим 🔺 3. Відображення на графіку plotshape(...) 🔴 червоний трикутник = свінг хай 🟢 зелений трикутник = свінг лоу offset = -len → малюється точно на місці свінга 📏 4. Лінії рівнів Коли знаходиться свінг: line.new(... extend.right) 👉 створюється горизонтальний рівень від свінга вправо як support/resistance 🧹 5. Обмеження кількості ліній maxLines = 5 👉 індикатор: зберігає тільки останні 5 рівнів старі видаляє 🔁 6. Масиви (arrays) array.unshift(...) array.pop(...) 👉 працює як стек: нові рівні → вперед старі → видаляютьсяPine Script® indicatorby TradePro100041
Matrix Supply Demand Zones [Institutional Edition]www.youtube.com / Training Video Matrix Supply Demand Zones is a chart analysis tool built to help users identify potential supply and demand areas based on historical price reaction behavior. Instead of relying solely on traditional support and resistance lines, this script visualizes dynamic zones where imbalance or strong reactions may have occurred. The goal is to provide a cleaner structure for traders who study price movement, reaction levels, and zone-based decision frameworks. Zones are automatically generated using objective conditions and updated as new market data forms. Designed with clarity and usability in mind, the script can be used across multiple markets and timeframes. This tool may help users with: Identifying possible reaction areas Mapping pullback zones during trends Visualizing historical imbalance levels Building confluence-based trade plans Replacing cluttered manual zone drawing Studying price behavior around key areas Suitable for: Price action traders Swing traders Intraday traders Zone-based strategy users Traders seeking cleaner chart structure Users combining multiple confirmations If structured chart tools and zone-based analysis fit your workflow, you may also find additional research tools shared on this profile useful.Pine Script® indicatorby goktugozi2642
Auto Support Resistance ChannelsAuto Support Resistance Channels This indicator builds support and resistance zones from confirmed pivot structure and then ranks those zones using a multi-factor scoring model. Its purpose is not simply to mark swing highs and lows, but to convert repeated price interaction into structured channels that reflect how often a level formed, how price reacted from it, and how well it held over time. This script is inspired by the support/resistance concepts and earlier implementations shared by LonesomeTheBlue. The current version extends that idea with a custom zone construction and scoring model, including pivot clustering, reaction-based weighting, and structural filtering. The implementation and logic have been independently developed and differ from the original approach. The script begins by detecting confirmed pivot highs and pivot lows using a user-defined pivot length. Each pivot becomes a candidate anchor point for a future zone. Around every pivot, the indicator creates an initial price band whose width is scaled by ATR. This makes the zone size adaptive to current market volatility rather than fixed in ticks or points. From there, the script groups nearby pivots into shared zones. If multiple pivots occur within the allowed ATR-based distance, they are treated as evidence of the same structural area. This allows the indicator to build broader support or resistance channels from repeated interaction instead of drawing isolated single-price levels. What distinguishes the script is its scoring framework. Each candidate zone receives a base score from the number of pivots it contains, but that is only the starting point. The script also evaluates the post-pivot reaction: if price moves away from a pivot with sufficient impulse, measured in ATR, and does so without excessive early retracement, that pivot contributes additional reaction score to the zone. In other words, zones are rewarded not only for existing, but for producing meaningful rejection. The script then applies several penalties that reduce the quality score of weaker zones. If price later closes through the zone, the score is reduced. If candle bodies spend time inside the zone, suggesting acceptance rather than rejection, the score is reduced further. If candles repeatedly close inside the zone, the script applies an additional penalty. These filters are designed to separate cleaner structural rejection zones from areas where price trades through too freely. A further contextual filter evaluates where the zone sits inside the recent trading range. Zones near the middle of the range can receive a penalty, reflecting the idea that mid-range levels are often less structurally meaningful than levels formed near the outer edges of a swing. Conversely, zones closer to the recent range high or low can receive a swing bonus, which increases the score of edge-of-range structures. After all candidate zones are scored, the script checks for similar or overlapping zones and merges them where appropriate. It then selects the highest-scoring non-overlapping zones, up to the user-defined display limit. The final result is a ranked map of support and resistance channels, with color intensity reflecting the relative zone score. This makes the indicator different from simple pivot-based support and resistance tools. It does not plot every swing point indiscriminately. Instead, it evaluates whether repeated pivot clustering, clean reaction, and subsequent holding behavior justify promoting an area into a displayed channel. Key concepts implemented in the script: Confirmed pivot high and pivot low detection ATR-based adaptive zone width Clustering of nearby pivots into shared zones Reaction scoring based on post-pivot excursion and retracement quality Penalties for breaks, dwell inside the zone, and closes inside the zone Context filter using recent range position Optional swing-edge bonus for zones near range extremes Selection of top-ranked non-overlapping zones How to use: The plotted boxes represent the highest-ranked support and resistance areas found within the active lookback. Wider ATR multipliers create broader zones, while higher pivot lengths make the script more selective. Increasing the reaction requirements makes the indicator focus more on pivots that produced stronger directional rejection. Increasing the penalty weights makes the scoring stricter and reduces tolerance for zones that price trades through frequently. Auto Lookback can be used to reset the analysis at the start of each new day, while Manual Lookback keeps the zone construction tied to a fixed historical window. The color gradient helps distinguish relatively weaker zones from stronger ones based on the script’s internal score. This indicator does not predict future price direction and does not generate standalone trade signals. It is designed to formalize support and resistance channel construction into a repeatable process based on pivot clustering, reaction quality, and subsequent price behavior.Pine Script® indicatorby JuniorQTrader7
MahirTrade: ICT Bias, FVG, Weekly Levels, [Analysis Assistant]🎯 WHAT IS THIS? Analysis Assistant adalah indikator all-in-one untuk trader yang pakai framework ICT + Smart Money Concepts. Tool ini nge-track weekly/daily range, fair value gaps, dan multi-timeframe structure — semua dalam satu panel yang clean dan ga overwhelming. Dibangun dengan filosofi: "Tool amplify skill. Tool ga bikin skill." Edge tetap di discipline + risk management + psychology. Discord: discord.gg/mahirtrade Website: mahirtrade.com YouTube: @efkahfajar ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ✨ FITUR UTAMA 1. WEEKLY & DAILY RANGE TRACKING PWH/PWL + PDH/PDL dengan realtime status: • Active — range masih intact • Sweep ⚡ — liquidity grab terdeteksi • Delivering → — break dengan FVG confluence • Liq Grab ⚠ — break tanpa imbalance (fakeout risk) 2. FVG & VOLUME IMBALANCE DETECTION • BISI / SIBI (bullish/bearish FVG) • VI+ / VI- (volume imbalance) • Mitigation tracking → IFVG reference • Auto-adaptive lookback per timeframe 3. MULTI-TIMEFRAME STRUCTURE Scan 4H / 1H / 30M / 15M: BOS → CHoCH → MSS → MSS+IFVG (confluence ladder) 4. BIAS ENGINE v2.0 FVG-to-FVG path logic dengan confidence scoring. Panel nunjukin: Drawing To, Fill First, Next Target, Structure, Confluence, dan Position (Premium/Discount). 5. PANEL MODE: PRO / BEGINNER • PRO — full analysis panel buat yang udah familiar ICT • BEGINNER — simplified panel, plain-language labels ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 📚 CARA PAKAI BEGINNER MODE 1. Set Panel Mode → Beginner di settings 2. Fokus ke 2 info utama: • Session countdown (kapan killzone aktif) • Key Levels (Week High/Low, Day High/Low) 3. Gunakan level sebagai reference untuk entry/exit 4. Hindari entry saat "Out of Killzone" PRO MODE 1. Set Panel Mode → Pro 2. Baca 4 seksi berurutan: • SESSION — killzone aktif • DELIVERY — bias direction + confidence • CONFLUENCE — alignment MTF (4H/1H/30M/15M) • POSITION — lokasi price (Premium/Discount/FVG) 3. High-probability setup = High confidence + MTF aligned + price di discount/premium 4. Invalidation di luar PWH/PWL range ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ⚙️ REKOMENDASI SETTINGS Scalping (1M–15M): - Zone Lookback: Auto - Show Mitigated Zones: OFF - Panel Size: Tiny Intraday (15M–1H): - Zone Lookback: Auto - Show Previous Week: ON - Panel Mode: Pro Swing (4H–D): - Zone Lookback: Manual 300–500 - Show All Zones: ON ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ⚠️ DISCLAIMER Indikator ini adalah ANALYSIS ASSISTANT, bukan signal generator. Tidak ada jaminan profit. Tool ini hanya membantu lu melihat konteks market dengan lebih jelas — keputusan trading tetap tanggung jawab masing-masing. Selalu gunakan risk management (0.3%–0.5% per trade) dan jangan pernah trade tanpa plan yang jelas. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Free education, market outlooks, dan structured learning path untuk trader yang serius build long-term edge. Built by traders, for tradersPine Script® indicatorby mahirtrade138
Matrix Market Structure [Institutional Edition]Matrix Market Structure Institutional is a price action analysis tool designed to help users interpret market direction through objective structural behavior. The script focuses on swing highs, swing lows, break of structure events, and continuation patterns to organize chart movement into a cleaner decision framework. Instead of relying only on lagging indicators, this tool helps traders observe how price is building, breaking, or transitioning structure over time. It is intended for users who study trend behavior, directional bias, and structural shifts across multiple markets and timeframes. Designed with clarity and usability in mind, the script aims to simplify market structure reading without overloading the chart. This tool may help users with: Identifying bullish or bearish structure bias Detecting break of structure (BOS) zones Reading swing high / swing low formations Following continuation vs reversal behavior Supporting trend analysis decisions Organizing raw price action visually Suitable for: Price action traders Smart money concept users Swing traders Intraday traders Trend traders Traders seeking cleaner market context If structure-based chart analysis is part of your trading process, you may also find additional research tools available on this profile worth exploring.Pine Script® indicatorby goktugozi2610
RSI Ultimate Terminal [Institutional Edition]RSI ULTIMATE TERMINAL is an advanced Relative Strength Index based analysis tool designed for traders who want more context than a standard RSI oscillator. The script expands traditional RSI interpretation by combining momentum state, zone behavior, and structured dashboard-style visualization into one interface. Rather than using RSI only for overbought and oversold readings, this tool helps users observe momentum shifts, possible continuation phases, and reaction conditions in a more organized format. Built for multi-market usage, it can be applied across different timeframes depending on the user’s trading style. The focus of the script is clarity, structure, and efficient RSI-based chart analysis. This tool may help users with: Reading RSI momentum shifts Monitoring overbought / oversold zones Spotting possible pullback conditions Supporting trend continuation analysis Organizing RSI data through dashboard view Improving chart workflow efficiency Suitable for: Momentum traders Swing traders Intraday traders RSI strategy users Multi-indicator traders Users seeking clean dashboard tools If structured momentum tools and dashboard-style indicators are part of your workflow, you may also find other research tools published on this profile valuable.Pine Script® indicatorby goktugozi2613
Volume Terminal [Institutional Edition]VOLUME TERMINAL PRO is a volume analysis tool designed to help users interpret participation, activity shifts, and relative market interest through a structured dashboard-style interface. The script focuses on how trading volume changes over time and how unusual increases or decreases may provide additional context to price movement. Rather than viewing raw volume bars alone, this tool organizes volume behavior into a cleaner workflow that may help users evaluate momentum participation, breakout interest, and quiet market phases. It is intended for traders who use volume as part of their chart analysis and prefer a more efficient way to monitor market activity across multiple assets and timeframes. The focus is clarity, structured observation, and practical volume-based chart workflow. This tool may help users with: Monitoring rising or falling participation levels Identifying unusual volume spikes Supporting breakout confirmation analysis Detecting low-activity consolidation phases Comparing current volume vs average activity Organizing volume data in one interface Suitable for: Volume traders Breakout traders Swing traders Intraday traders Momentum traders Users seeking cleaner dashboard tools If structured market activity tools and dashboard-style analysis are part of your workflow, you may also find additional research tools available on this profile useful.Pine Script® indicatorby goktugozi2612
Reversal strategy for the Forex market MHThis strategy involves anticipating trend reversals, primarily used in the forex market or with stock indices. The best results are achieved on 1-4 hourcharts and with the forex pairs GBP/USD; USD/CAD; EUR/USD; and EUR/JPY. Short trades are placed at resistance levels, and long trades at support levels. Important! Do not execute any trades 24 hours before riskevents, and close any open trades before 11.00 PM!Pine Script® strategyby marko_meuser14
KPK_IVIntrinsic value calculators for Nifty 50 stocks, such as those on Alpha Spread, Equitymaster, or Screener.in, estimate a stock's true worth using DCF (Discounted Cash Flow) or earnings-based models to determine if it is overvalued or undervalued, usually requiring a 20-30% margin of safety. Pine Script® indicatorby premsuccess4358
Matrix 9-13 Exhaustion [Institutional Edition]Matrix 9-13 Exhaustion Terminal is a sequential market analysis tool designed to help users monitor extended directional movement and possible momentum fatigue phases. The script is inspired by count-based exhaustion concepts that track persistent bullish or bearish pressure over multiple bars. Its purpose is to highlight areas where a trend may be becoming stretched, slowing down, or entering a potential reaction phase. Rather than predicting reversals, the tool provides a structured framework for observing trend maturity and possible exhaustion conditions. Designed for multi-market use, it can be applied across different timeframes depending on user preference. This tool may help users with: Monitoring prolonged trend movement Detecting possible momentum fatigue zones Identifying stretched market phases Supporting pullback or reversal watchlists Adding confluence to existing systems Organizing sequential trend behavior visually Suitable for: Reversal traders Swing traders Momentum traders Trend maturity analysts Multi-indicator traders Users studying exhaustion logic If structured trend analysis and momentum-cycle tools are part of your workflow, you may also find additional research tools on this profile useful.Pine Script® indicatorby goktugozi2615
Matrix Order Blocks [Institutional Edition]Matrix Order Block Institutional Engine is a zone-based chart analysis tool designed to help users identify potential order block areas derived from historical price displacement and reaction behavior. The script highlights areas where price previously moved with strength and where future reactions may attract attention from technical traders. Rather than manually marking multiple zones, this tool organizes potential bullish and bearish order block regions into a cleaner chart framework. It is intended for users who study price structure, pullback zones, and reaction-based market behavior across multiple assets and timeframes. The focus of the script is clarity, structured zone analysis, and workflow efficiency. This tool may help users with: Identifying potential bullish order block areas Identifying potential bearish order block areas Mapping pullback zones during trends Watching reaction levels after displacement moves Supporting confluence-based setups Reducing manual zone drawing clutter Suitable for: Price action traders Smart money concept users Swing traders Intraday traders Pullback strategy users Traders seeking structured zone tools If zone-based chart tools and structure-focused analysis are useful in your workflow, you may also find other research tools shared on this profile interesting.Pine Script® indicatorby goktugozi2616
Volume Imbalance Tap Probability v1.1Tracks volume imbalances on the current chart time frame and produces a probability table for how often the imbalances are filled "n" bars later, based on user input (ie. 50, 100, etc. bars). Pine Script® indicatorby leiflUpdated 2212
GFX Model🚀 Best Use Cases -Intraday trading (especially indices & gold) -Smart Money / ICT-style strategies -Session-based setups -Trend + structure confluence trading Don't use if you don't know the strategy.Pine Script® indicatorby GeraldHildebrand3
Gamma Levels (Manual Input) updateManually input your own gamma levels CALL WALL PUT WALL GAMMA FLIP Pine Script® indicatorby tombartus7
Giant Engulfing Candle Detector (Background Only)This script allows finding quick scalps but this isn't recommended for buying in or selling. This indicator just provides the information of strong buying vs strong selling. Pine Script® indicatorby ApexTrades30
Future & Historical Period Lines (D/W/M/3M/Y)Creates vertical lines on future and historical htf closes @ichigramma on XPine Script® indicatorby ichimatterUpdated 1
Alert when price stay one side of EMA for 15 bars行情运行超过EMA一侧15根以上变色加警告Pine Script® indicatorby lazabanma2
L2L Zone Builder Pro by EAStudioAIOverview The L2L Zone Builder Pro is a dynamic, interactive background grid generator designed specifically for Level-to-Level (L2L) traders, Smart Money Concepts (SMC) practitioners, and volume traders. Instead of cluttering your chart with dozens of static horizontal lines, this tool allows you to build a clean, infinitely extending, and perfectly scaled visual matrix based on a single Key Zone (such as a High Volume Node or a critical support/resistance block). How It Works This indicator utilizes TradingView's interactive input.price functionality combined with a heavily optimized single-execution loop. It calculates the exact height of your selected reference zone and automatically projects alternating background grids across the entire Y-axis. The script is highly optimized to render only once, ensuring zero lag or re-rendering on every price tick, keeping your browser and platform running smoothly. How to Use Add the indicator to your chart. Your cursor will turn into a crosshair. Click the first point to define the Top Level of your base zone. Click the second point to define the Bottom Level (this sets the permanent grid spacing). The tool will instantly generate a structural grid across the chart. Optional: Open the indicator settings to customize the grid color and transparency to fit your chart theme perfectly. Trading Application This tool is perfect for analyzing volatile assets like XAUUSD or Futures indices. Zone Mapping: Anchor the initial box to a High Volume Node (HVN) or a major consolidation zone. The extended grid will reveal symmetrical psychological levels. SMC & LCE: Use the defined zones to anticipate liquidity sweeps and wait for a Market Structure Shift (MSS) or Level Confirm Execution (LCE) precisely at the edges of the grid. Clean Workflow: Ideal for traders utilizing a two-screen workflow (e.g., charting on TradingView while executing on a prop firm platform), providing a distraction-free map of the market battlefield. Elevate your chart structure and trade level-to-level with precision.Pine Script® indicatorby NareritUpdated 14
J.TRADER - Professional Sniper V.04J.TRADER - Professional Sniper V.04 (Institutional Flow) สคริปต์นี้ถูกออกแบบมาเพื่อนักเทรดที่ต้องการเทรดตามรายใหญ่ (Smart Money) โดยเน้นความแม่นยำในการหาจุดกลับตัวและการไหลของราคา (Price Flow) พร้อมระบบบริหารความเสี่ยงแบบมืออาชีพ คุณสมบัติหลัก: Smart Sniper Entry: ระบบตรวจจับจุดเข้าเทรดด้วยเส้น EMA Signal ที่ปรับจูนมาเพื่อลดสัญญาณหลอก (False Signals) Institutional Volume Analysis: ไฮไลท์แท่งเทียนที่มีปริมาณการซื้อขายสูงผิดปกติ เพื่อระบุจุดที่รายใหญ่เข้าสะสมสถานะ Auto TP/SL with Hit Detection: ระบบคำนวณเป้าหมายกำไร 5 ระดับ (TP1 - TP5) และจุดตัดขาดทุนอัตโนมัติอ้างอิงตามความผันผวน (ATR) พร้อมแสดงอิโมจิ 🔥 เมื่อราคาชนเป้าหมาย Real-time Dashboard: ตารางมอนิเตอร์ความแข็งแกร่งของเทรนด์ (Bull/Bear Score), RSI, และ ADX เพื่อช่วยในการตัดสินใจ Visual Luxury Design: อินเทอร์เฟซสีทอง-ดำ (Black & Gold) ที่สะอาดตาและดูพรีเมียม วิธีการใช้งาน: BUY: รอสัญญาณ "BULL FLOW" สีทองใต้แท่งเทียน เมื่อราคาอยู่เหนือเส้น VWAP และมีแรงซื้อสนับสนุน SELL: รอสัญญาณ "BEAR FLOW" สีขาวบนแท่งเทียน เมื่อราคาอยู่ต่ำกว่าเส้น VWAP Smart Money: สังเกตแท่งเทียนสีทอง (High Volume) ซึ่งมักจะเป็นจุดเริ่มของการกระชากราคาPine Script® indicatorby Trader_j_official165
OPENFLOW AUTOMATIONOpenFlow Automation is built to remove emotion and execute the strategy with precision. This system is designed to automatically identify high-probability setups based on the OpenFlow model and trigger entries in real time—so you don’t miss moves or hesitate on execution.Pine Script® indicatorby CashFelz1
BTC Live Dashboard Plain English **BTC Live Dashboard — Plain English** --- This dashboard translates complex market data into plain English so you always know what the market is doing — no jargon, no guesswork. Every section answers a simple question so you can focus on trading, not decoding numbers. It runs in its own separate pane below your main chart. Keep it small (15–20% of screen height) — you only need to read the table, not the pane itself. --- **WHAT IT SHOWS** **Overall Signal** — A single verdict (Bullish / Bearish / Neutral) based on 5 independent signals voting. You need at least 3 of 5 agreeing before considering a trade. One or two signals agreeing is noise — wait for confluence. **Price** — Current price, today's change, high/low range and volume. Your basic orientation before looking at anything else. **Who Is Paying To Hold Their Position?** — When too many traders are on one side, they get charged a fee to stay in their trade. If longs are paying, the market is overcrowded to the buy side and a drop becomes more likely. If shorts are paying, a squeeze is more likely. Balanced means neither side is under pressure. **Futures Price vs Spot Price** — The futures market should trade slightly below the spot price in a healthy market. If futures are above spot, leveraged buyers are leading price — that's elevated risk. If futures are below spot, structure is healthy. **Are More Bets Being Placed?** — Tracks total open contracts across Binance, Kraken and BitMEX in real time. Rising contracts with rising price means new buyers are entering. Rising contracts with falling price means new sellers are entering. Falling contracts means traders are closing positions and conviction is low. **Buying vs Selling Pressure** — Measures whether more volume is hitting the buy side or the sell side on each candle. Shows today's session reading and the overall trend. If price is holding up but this shows sellers winning, that is a distribution warning. Resets at midnight UTC. **Are Buyers or Sellers Queued Up?** — A proxy for order book pressure based on candle structure. Above 55% on one side means that side is dominating at the current price level. **Signal Scorecard** — All 5 votes shown individually so you can see exactly where signals agree and where they conflict. Use this to understand the quality of the overall signal, not just the verdict. --- **HOW TO USE IT WITH THE ICT SESSION GUIDE** This dashboard is a confirmation tool — it tells you the market conditions. The ICT Session Guide tells you where to enter. Use them together: The Session Guide identifies your setup — Asia range, London sweep, NY reversal, order blocks and kill zones. This dashboard then confirms whether market conditions support taking that trade in that direction. - Session Guide gives you the **setup** - Dashboard confirms the **direction** - Only take ICT entries when 3 or more dashboard signals agree with your trade direction **Long setup example:** ICT Session Guide shows London swept Asia lows and price is reversing up into the NY kill zone at a bullish order block. Dashboard shows new longs opening, buyers winning on CVD, futures healthy. That is 3 or more bullish votes — high confidence long. **Short setup example:** London swept Asia highs, price reversing down from a bearish order block with BOS confirmed. Dashboard shows new shorts opening, sellers winning, longs paying funding fees. High confidence short. **Stand down example:** ICT setup looks valid but the dashboard is split 2 to 3, bets are being closed and CVD is flat. Skip the trade. No confluence means no edge. --- **HOW TO USE IT WITH OTHER INDICATORS** **Order Blocks and Structure** — When price taps a bullish order block, check the dashboard. If buying pressure shows buyers winning and open interest shows new longs opening, the block is more likely to hold. If sellers are winning and longs are being closed, treat the block with caution. **Volume Indicators** — A volume spike means nothing without context. Cross-reference with this dashboard. A spike where sellers are winning and new shorts are opening is distribution, not accumulation. **Wyckoff / Market Structure** — If price is ranging and this dashboard shows sellers absorbing every new long while funding stays elevated, that is a distribution warning. Wait for the flush before looking for longs. --- **SETTINGS** Spot Symbol — default BINANCE:BTCUSDT. Change to match your chart. Perp Symbol — default BINANCE:BTCUSDT.P. Used for funding and basis calculations. CVD Smooth — smoothing for the buying and selling pressure signal. Default 5. OB Imbalance Length — lookback for the order queue calculation. Default 14. Open Interest Sources — toggle individual exchanges on or off. Requires TradingView Pro or above for full data access. If some exchanges show zero, untick them in settings. --- **NOTES** Buying pressure and order queue readings are bar-based proxies, not live order book data. They are directional guides, not exact figures. Open interest data requires TradingView Pro+ for all exchange feeds. Designed for BTCUSD and BTCUSDT. May work on other crypto perpetual pairs with symbol adjustments. This tool is for educational and informational purposes only. Always use proper risk management and never trade based on a single indicator. Pine Script® indicatorby CryptoTradingZone9
Volume Climax Detector [AGPro Series]Volume Climax Detector Volume Climax Detector is an advanced volume analytics tool that identifies extreme institutional volume events using a three-filter VSA (Volume Spread Analysis) methodology. Rather than triggering on simple volume multiples, the script combines Volume Z-Score statistics, Spread analysis, and Close Location to isolate genuine climax bars — the kind of exhaustion moves Wyckoff and VSA traders look for at trend tops and bottoms. 🔹 OVERVIEW Volume alone is a noisy signal. A "high volume bar" on one instrument is a quiet bar on another, and most volume-based indicators either miss real climaxes or fire on every uptick. This script takes a statistical approach: it measures how extreme each bar's volume is relative to its own recent history (Z-Score), confirms the bar structure makes sense (Spread and Close Location), and then classifies the event as a Buying Climax or Selling Climax using trend context — the Wyckoff way. The result is a small number of high-conviction labels at exactly the places where large participants tend to exhaust themselves: panic buys at tops, panic sells at bottoms, and hidden absorption in between. 🔹 WHAT MAKES IT DIFFERENT Most volume indicators apply a single threshold (e.g. volume > 2× average) and stop there. This script layers three independent VSA filters, each addressing a different failure mode: • Volume Z-Score — adapts to the instrument's own volume distribution. A 3σ event on BTC is genuinely rare, regardless of session or timeframe. • Spread filter — requires the bar's range to exceed its recent average. Eliminates the common false positive of a high-volume bar that barely moved (compression). • Close Location — requires the close to sit in the upper or lower third of the bar. Separates conviction from indecision. Beyond detection, two analytics layers set it apart from typical volume tools: • Reversal Success Tracking — every climax is tracked forward for a configurable window, and the script records whether a meaningful counter-move actually materialised (measured in ATR). The panel shows a live Reversal Rate, so users get honest feedback on how well climaxes have worked on the current symbol and timeframe. • Magnitude Scoring (1–10) — every climax receives a strength score derived from its Z-Score, making it easy to distinguish routine spikes from truly extreme events (marked with ★). 🔹 METHODOLOGY 1. Volume Statistics The script computes a rolling mean and standard deviation of volume over a configurable lookback window (default 50 bars). The Z-Score tells how many standard deviations above the mean the current bar is. A reading of 3.0σ or higher (default threshold) corresponds to the top ~0.27% of bars — statistically rare, not just "above average." 2. Triple Filter Gate A bar qualifies as a potential climax only when: • Z-Score ≥ threshold (volume anomaly) • Bar range ≥ spread multiplier × average range (wide spread) • Close is in the upper 33% (strength) or lower 33% (weakness) of the bar range 3. Wyckoff Classification • Buying Climax — qualifying bar during an established uptrend. Interpretation: buyers are exhausting themselves; potential topping action. • Selling Climax — qualifying bar during an established downtrend. Interpretation: sellers are exhausting themselves; potential basing action. • When no clear trend exists, classification falls back to close location plus bar direction so that sideways regimes still produce meaningful signals. 4. Confluence Grouping When multiple same-direction climaxes occur close together in time or price, the script collapses them into a single label representing the strongest event in the cluster. This keeps charts readable without losing information — the panel still counts every individual climax. 5. Effort vs Result (optional) A companion layer flags high-volume bars with unusually narrow spread — the classic VSA "No Demand" and "No Supply" conditions. These often signal hidden absorption ahead of a reversal and are shown as separate labels. 🔹 SIGNALS & ALERTS Four built-in alert conditions: • Buying Climax detected • Selling Climax detected • Extreme Climax (Z-Score above the extreme threshold, marked with ★) • No Demand / No Supply divergence Each alert payload includes the symbol, Z-Score, and magnitude score, ready for automation or review. 🔹 KEY INPUTS • Volume Lookback (default 50) — rolling window for statistics. • Z-Score Threshold (default 3.0σ) — minimum statistical extremity. Lower on intraday, higher for premium signals only. • Extreme Threshold (default 4.0σ) — above this, climaxes are flagged with a ★. • Spread and Close filters — each can be toggled independently for flexibility across asset classes. • Trend EMA Length and Sensitivity — control how the script defines uptrend and downtrend, with an ATR-normalised slope check to avoid misclassifying sideways regimes. • Reversal Window and Threshold — define what counts as a "successful" reversal for the panel statistic. • Confluence controls — Time-first (default), Price-first, or Strict mode, plus bar and ATR tolerances. • Climax Zones (optional, default off) — extends each climax bar's range forward as a reaction zone, similar to S/R. 🔹 HOW TO USE • Start with defaults on any liquid instrument and timeframe. The script adapts to the local volume distribution automatically. • On highly volatile intraday timeframes, consider raising the Z-Score Threshold to 3.5σ for fewer, cleaner signals. On slower timeframes, the default works well. • Treat a ★ Extreme Climax as higher-conviction than a plain climax, and pay attention to the Magnitude Score for fine gradation. • Use the Reversal Rate panel value as a feedback loop — if it is low on your chosen instrument and timeframe, either adjust thresholds or reconsider the setup. • Combine with your own structural analysis (support/resistance, HTF trend, market structure) for confirmation. The script identifies the event, not the entry. 🔹 LIMITATIONS & TRANSPARENCY • This is an indicator, not a strategy. It does not generate buy or sell orders and makes no assumption about position sizing or risk management. • Climaxes are statistical events. They tend to mark inflection points, but no volume pattern resolves into a reversal every time. The built-in Reversal Rate panel value exists precisely to make this honest — users see the actual hit rate on their own chart. • The script uses publicly available volume data from the chart's exchange. Volume quality varies by venue; results may differ on symbols with thin or unreliable volume reporting. • Classification depends on trend context. In strongly sideways regimes, the fallback rules may label climaxes differently than a human analyst would; reviewing the Trend EMA and sensitivity inputs helps here. • Labels are confirmed on bar close (no repaint). Panel counters and the Current Z-Score value update intrabar for live monitoring. 🔹 RISK DISCLOSURE Trading involves substantial risk of loss. Past behaviour of any signal or statistic does not guarantee future performance. This script is a research and analysis tool — it is not investment advice, a recommendation, or a solicitation to trade. Users are responsible for their own decisions, risk management, and position sizing.Pine Script® indicatorby AGProLabs22789