Hammer & Shooting Star Detector//@version=5
indicator("Hammer & Shooting Star Detector", overlay=true)
// === INPUTS === //
shadowRatio = input.float(2.0, title="Shadow to Body Ratio", minval=1.0)
showHammers = input.bool(true, title="Show Hammers")
showShooters = input.bool(true, title="Show Shooting Stars")
// === FUNCTIONS === //
// Calculate candle parts
body = math.abs(close - open)
upperShadow = high - math.max(close, open)
lowerShadow = math.min(close, open) - low
// === DETECTION === //
isHammer = lowerShadow > body * shadowRatio and upperShadow < body * 0.5 and close > open
isShooter = upperShadow > body * shadowRatio and lowerShadow < body * 0.5 and close < open
// === FILTER: Trend (basic) === //
isDowntrend = close < ta.sma(close, 10)
isUptrend = close > ta.sma(close, 10)
hammer = showHammers and isHammer and isDowntrend
shooter = showShooters and isShooter and isUptrend
// === PLOT === //
plotshape(hammer, title="Hammer", location=location.belowbar, color=color.green, style=shape.labelup, text="🔨")
plotshape(shooter, title="Shooting Star", location=location.abovebar, color=color.red, style=shape.labeldown, text="⭐")
트렌드 어낼리시스
Arcane Market Structure + Key LevelsThe Arcane Market Structure + Key Levels script is built to help traders decode real-time structure shifts, key support/resistance levels, and market intent. This tool draws from the Arcane Model’s proprietary trading framework—refined over 7+ years of backtesting and live execution.
It detects:
• Highs/lows that define expansion, manipulation, and distribution cycles
• Dynamic support/resistance zones based on 15m fair value gaps
• Session-based levels and structure breaks for intraday context
Whether you’re trading Prop Firm or Live accounts, this script helps simplify decision-making by visualizing the cleanest levels and directional flows on your chart.
Use it to:
✅ Confirm entries near liquidity levels
✅ Spot structural breaks aligned with volume and price action
✅ Build confluence with ICT, FVG, or manipulation-based setups
For traders mastering the Arcane Model or building systematic edge, this is a must-have chart companion.
ORB Multi-Range (5,10,15 min plain)Simple, accurate ORB lines for 5, 10, and 15-minute opening ranges — no clutter, just clean breakout levels.
Fmfm100 الوصف بالعربية:
هذا المؤشر متقدم ويعرض اتجاه السوق والترند بشكل واضح، ويحدد مناطق العرض والطلب (Supply & Demand) بالإضافة إلى فجوات القيمة العادلة (FVG). يوفر إشارات شراء وبيع (Call و Put) عند كسر أو اختراق المستويات الهامة. كما يحدد أهدافًا ومستويات دعم ومقاومة رئيسية. المؤشر مناسب لجميع المتداولين الراغبين في تحليل السوق بدقة واتخاذ قرارات تداول مستنيرة.
الوصف بالإنجليزية:
This is an advanced indicator that clearly displays the market direction and trend, and identifies Supply & Demand zones along with Fair Value Gaps (FVG). It provides Buy and Sell signals (Call and Put) when key levels are broken or breached. It also defines targets and major support and resistance levels. The indicator is suitable for all traders who want precise market analysis and informed trading decisions.
Volume Profile Two-Tone - Hit Counter - Meter V1 Volume Profile Two-Tone - Hit Counter - Meter V1
Overview
The Volume Profile Two-Tone - Hit Counter - Meter V1 is a Pine Script v6 indicator for TradingView, designed to visualize buy and sell activity distribution across price levels within a user-defined window or intraday session. It plots a dual-color horizontal histogram showing buying (green) and selling (red) volume intensity, along with optional hit-count numbers and meter overlays. The profile dynamically updates as new bars form, providing an intuitive picture of where market participants are most active.
The enhanced V1 edition introduces persistent hit counts, real-time adaptive row rebuilding, and improved memory management for smoother performance in both rolling-window and session modes.
How It Works
The indicator divides the selected range into rows (price bins) and aggregates trade volume (or tick volume) per bar.
Each bin separately sums up bullish and bearish contributions based on candle direction and delta logic, then draws side-by-side histogram bars:
• Buy Volume (green): Total volume from bullish bars within the bin.
• Sell Volume (red): Total volume from bearish bars within the bin.
A rolling or session-based window determines how many recent bars are analyzed. Value Area (VA), Point of Control (POC), and total hits per bin are computed continuously. The display auto-adjusts as price moves, keeping the profile anchored to the latest visible bars.
Behind the scenes, optimized arrays manage active boxes, lines, and labels for each bin. Functions like ensure_rows() rebuild buffers only when necessary, guaranteeing efficiency without repainting past data. Persistent hit-tracking ensures each price level maintains its count even when temporarily hidden.
Key Features
• Dual-Tone Volume Histogram: Buy/sell split with distinct colors for immediate visual contrast.
• Rolling or Session Profiles: Choose between continuous rolling windows or intraday session resets.
• Persistent Hit Counts: Displays total touches per bin, remaining stored even when bins refresh.
• Adaptive Row Management: Automatic rebuilding when zooming, scrolling, or changing resolution.
• Value Area + POC Detection: Highlights the most active price levels and volume concentration zones.
• Meter Overlay Option: Adds gradient bars or directional meters for quick trend context.
• Performance Optimized: Uses lightweight arrays and cached line handles for minimal CPU load.
• Custom Color Control: Editable buy/sell colors, opacity, row count, and profile width.
• Full Persistence Mode: Profiles remain visually consistent across bar updates without redraw gaps.
What It Displays
The Volume Profile Two-Tone - Hit Counter - Meter V1 presents an adaptive horizontal histogram beside the chart’s candles, revealing how volume is distributed across price.
• Green segments show dominant buying interest; red segments reveal selling pressure.
• POC line identifies the highest-volume price.
• Hit-count numbers quantify how often price traded at each level.
• Optional meters display relative directional strength within the same range.
This visual layering helps traders quickly identify supply/demand zones, balance areas, and developing auction profiles across intraday or multi-session contexts.
Originality
The Pine Script v6 indicator uses efficient array management (array.new_*, array.set, array.get) and native math operations for rendering.
It avoids external dependencies, relying only on built-in TradingView functions like request.security, box.new, line.new, and label.new for dynamic plotting.
Common Ways People Use It
• Scalpers: Study short-term imbalances or high-activity levels to time entries/exits.
• Day Traders: Track evolving session volume and POC migration.
• Swing Analysts: Compare rolling distributions to identify value shifts over multiple days.
• Volume Profilers: Combine with VWAP or order-flow tools for deeper context.
Configuration Notes
Profile Mode: Select Rolling Window (bars) or Session (intraday).
Rows and Width: Default = 72 rows, 44 bars width.
Colors and Opacity: Adjust to match chart theme.
Performance Mode: Choose Accurate or Fast (approximate) for speed control.
Show Hits / Meter: Enable hit-count numbers and gradient meters for added context.
Legal Disclaimer
For informational and educational purposes only—not investment, financial, or trading advice. Past performance does not guarantee future results; trading involves significant risk. Provided “as is,” without warranties. Consult a qualified professional before making decisions. By using, you accept all risks and agree to this disclaimer.
BGT TrendFlow Profit Engine V2.0 In the fast-changing financial markets, quickly and accurately identifying the best trading opportunities is a challenge every investor faces. The trading strategy tool we offer is designed to address market uncertainty and volatility, providing strong support for your investment decisions and helping you navigate the complexities of the market with ease.
Core Advantage 1: Precisely Identifying Market Trends and Capturing Optimal Trading Opportunities
Market fluctuations can be complex, and avoiding noisy signals and wrong trading decisions is crucial. Our trading strategy script, with its powerful ultimate filtering system, combines multiple market dimensions to ensure that you enter the market only at the most favorable times. This means you will have more opportunities to engage in strong trends rather than getting caught in choppy or ineffective markets.
Core Advantage 2: Automated Risk Management for Steady Returns
No matter how volatile the market is, our automated risk management system adjusts your take profit (TP) and stop loss (SL) settings based on market conditions, ensuring that you don’t miss out on long-term gains due to short-term fluctuations. Especially in highly volatile markets, we also support multiple levels of take profits (TP1, TP2, TP3), maximizing your profit while preventing unexpected market reversals from disrupting your gains.
Core Advantage 3: Precision in Capturing Reversals and Pullbacks
The market is always filled with reversal and pullback opportunities, yet many investors miss them. We offer in-depth analysis to precisely capture these pullback and reversal signals, helping you take action at the right moment and avoid missing these profitable opportunities. Even in volatile markets, you can swiftly adjust your strategy and seize every potential profit opportunity.
Core Advantage 4: Comprehensive Market Signals, Avoiding the Limitations of a Single Time Frame
Market signals can vary widely, and different timeframes often carry different meanings. We use multi-timeframe analysis to identify market trends across various time periods, avoiding the potential misguidance that comes with using a single timeframe, ensuring the strategy remains effective across changing market conditions.
Core Advantage 5: Real-Time Visualization for Easy Market Monitoring
Making quick decisions in the market relies on rapid understanding and interpretation of information. Our strategy offers powerful visualization tools that display key data such as market trend strength, entry signals, and take-profit/stop-loss targets in real time. Whether you’re an experienced trader or a beginner, you can quickly understand the current market conditions through intuitive charts and markers.
Core Advantage 6: Intelligent Filtering and Precise Alerts, Never Miss an Opportunity
We combine intelligent filtering systems to automatically select high-quality trade signals, ensuring you are not lost in a sea of chaotic market information. The built-in alert system will notify you at critical moments, allowing you to adjust your strategy as the market shifts and ensuring you never miss a trading opportunity.
Conclusion:
With these advanced features and strategies, you will no longer be troubled by the fast fluctuations of the market. Instead, you will be able to calmly and precisely seize every profitable opportunity. Whether you're a day trader or a long-term investor, this trading strategy script will become your trusted assistant for achieving steady profits in the financial markets.
In today’s highly competitive market, mastering advanced trading strategies and effectively managing risk is the key to achieving superior returns.
Khosro XAUUSD Strategy [TradingFinder] Trading Room Hunter Setup🔵 Introduction
The Trading Room Hunter (TRH) strategy is an analytical model based on the Smart Money Concept, developed by Khosro, an Iranian international trader based in Dubai. This approach is built upon a deep understanding of liquidity engineering, market structure shifts, and institutional order flow. Its core objective is to identify the so-called TRH Zone, the area where market liquidity gets trapped and institutional investors begin accumulating positions. Unlike traditional indicator-based methods, the TRH Zone focuses purely on price behavior and supply & demand dynamics to pinpoint the most precise reversal zones in the market.
Within Smart Money logic, every impulsive move in price results from the displacement or absorption of liquidity in a specific range. In the TRH model, the last pivot preceding the impulsive move (Origin Pivot) is defined as the Distal Line, and the Break Candle, which disrupts the market structure, forms the Proximal Line. The area between these two points defines the Trading Room Hunter Zone, a reaction zone where price, after creating a displacement or Break of Structure (BoS), often returns to fill an imbalance and provide a precision entry opportunity.
In essence, the TRH Zone is the region where smart money seeks re-entry after a liquidity sweep and a confirmed CHoCH or BoS. It frequently lies between supply/demand boundaries and fair value gaps (FVGs), forming one of the strongest decision-making frameworks within modern price-action theory. Due to its structural accuracy, the TRH setup can also function as a Set & Forget Setup, where the trader defines the zone, places a limit order, and lets the market naturally react, eliminating emotional decision-making and allowing for automated execution aligned with institutional logic.
🔵 How to Use
In the TRH strategy, entries are taken based on price returning to the area between the last impulsive pivot and the break candle. This range (the TRH Zone) represents the region where liquidity from the previous move remains concentrated. Before continuing its main direction, price often revisits this zone to fill imbalances or mitigate unfilled orders. The logic is simple: every explosive move originates from a point where large orders were executed, and TRH precisely highlights that institutional footprint.
🟣 Bullish Setup
When the market breaks a structural high after a strong bearish leg, liquidity shifts from sellers to buyers. The last bearish candle before the breakout marks the origin of the bullish move, and the zone between that candle and the break candle becomes the smart-money entry area. As price revisits this zone and signs of exhaustion in selling pressure appear, that’s the optimal point for a long position. Stop-loss is placed slightly below the origin pivot, and targets are set at the next supply zone or upper liquidity pool.
🟣 Bearish Setup
Conversely, when the market breaks a structural low after a sharp bullish leg, liquidity transitions from buyers to sellers. The last bullish candle before the drop is identified as the origin pivot, while the bearish break candle defines the lower boundary of the zone. The range between these two points forms the TRH Supply Zone, where late buyers are trapped and fresh institutional selling begins. As price retraces into this zone, short entries can be placed near the upper boundary, with stops above the pivot and targets toward the next liquidity pool below.
Because of its structural precision and clearly defined reaction behavior, TRH is one of the most effective Set & Forget setups in Smart Money trading. Simply mark the zone, place your order, and let the market do the rest.
🔵Setting
🟣 Spike Filter | Movement
Minimum Spike Bars : Defines the minimum number of consecutive candles required for a valid spike.
Movement Power : Enables or disables the momentum-based spike filter.
Movement Power Level : Sets the strength threshold; higher values filter out weaker moves and only detect strong spikes.
Pivot Period : Defines the lookback range used to detect swing highs and swing lows in market structure. A higher value smooths out smaller fluctuations and focuses on major pivots, while a lower value increases sensitivity and identifies minor turning points more frequently.
🟣 Position Management
Stop-Loss Threshold : Enables or disables the stop-loss threshold feature.
Stop-Loss Threshold Value : Defines the value of the stop-loss threshold for risk management.
Risk-Reward Ratio : Sets the desired risk-to-reward ratio (e.g., 1:1 or 1:2).
Wide Zone Filter : Filters out zones that exceed a defined width threshold, preventing detection of overly broad TRH areas.
🟣 Display Settings
Display Mode : Chooses between Setup (showing setups) or Signal (showing trade signals).
Show Entry Levels : Displays entry levels on the chart (buy/sell zones) when enabled
Only Display the Last Position : Displays only the most recent position on the chart when enabled.
Setup Width Drawing : Adjusts the visual width of the setup drawings on the chart for better visibility.
🔵 Conclusion
The TRH strategy is a precise structural model of liquidity flow that identifies zones where smart money is most likely to enter and where price is most likely to react. By combining the Origin Pivot and Break Candle, TRH isolates the key areas that drive institutional order flow. Without relying on indicators, it focuses purely on price structure, making it highly effective for both reactive entries and Set & Forget setups.
Ultimately, TRH creates a balance between market structure and liquidity flow, enabling traders to identify institutional decision zones on the chart with minimal risk and maximum clarity
ICT Turtle SoupICT Turtle Soup identifies classic “failed breakout” reversals after liquidity sweeps of recent highs/lows, then augments the setup with volume validation, market structure context, Kill Zone (session) filters, Order Blocks (OB), Fair Value Gaps (FVG), OTE (61.8–78.6%) zones, and optional risk targets (SL/TP 1:1, 1:2, 1:3). A compact dashboard summarizes current context (recent high/low, lookbacks, active session, structure state, mitigation counts).
What the Script Does
⦁ Detects Turtle Soup events: Price breaks a prior swing extreme and then quickly reverses back inside the range.
⦁ Grades signal quality: Factors include reversal speed, volume confirmation, breakout magnitude, and consecutive patterns.
⦁ Overlays market context: Trend/range classification (ADX / MA / ATR Bands / Combined), Kill Zones (Asian/London/NY), and time-of-day filters.
⦁ Marks IMB / mitigation zones: Draws Order Blocks and Fair Value Gaps, with optional live mitigation tracking and fading/removal on mitigation.
⦁ Shows OTE zones (61.8–78.6%) after confirmed reversals to highlight potential pullback entries.
⦁ Plots risk management guides: Optional SL buffer below/above reversal wick and TP bands at 1:1, 1:2, 1:3 R multiples.
⦁ Emits alerts on bullish/bearish Turtle Soup confirmations.
How It Works (Conceptual)
1. Liquidity Sweep & Breakout Check
⦁ Looks back over user-defined windows (single or multiple lookbacks: short/medium/long) to find the most recent swing high/low.
⦁ Flags a breakout when price pierces that swing (above for bearish, below for bullish).
⦁ Optional breakout bar volume check requires volume > avg(volume, N) × multiplier.
⦁ Optional swing age check requires the broken swing to be at least X bars old.
2. Reversal Confirmation
⦁ Within N bars after the sweep, validates a mean-reversion close back inside the prior range with a minimum wick/body ratio to confirm rejection.
⦁ Quality Score adds points for:
⦁ Speed: reversal within fast_reversal_bars;
⦁ Volume: breakout and/or reversal volume spike;
⦁ Series: previous consecutive signals;
⦁ Magnitude: sufficient sweep distance.
⦁ Optional high-quality filter only shows signals meeting a minimum score.
3. Context Filters (Optional)
⦁ Sessions/Kill Zones: Only allow signals in selected sessions (Asian/London/NY) with fully custom HHMM inputs.
⦁ Time Window: Restrict to specific hours (e.g., 08–12).
⦁ Market Structure: Classify Trending vs. Ranging (via ADX, MA separation/slope, ATR bands, or Combined). You can allow signals in trends, ranges, or both.
4. Smart Confluence Layers
⦁ Order Blocks: Finds likely OBs with structural validation (e.g., bearish up-candle prior to down move), imbalance score (body/range × volume factor), and extend-until-touched with mitigation % tracking.
⦁ Fair Value Gaps: Detects valid 3-bar gaps (bull/bear) with size threshold, supports touch / 50% / full mitigation logic, and can fade or remove after mitigation.
⦁ OTE Zones: After a reversal, projects the 61.8–78.6% retracement box from the actual swing range; offset scales to timeframe to avoid clutter.
5. Risk & Display
⦁ SL/TP guides: Optional wick-buffered SL and 1:1/1:2/1:3 TPs.
⦁ Dashboard: Recent high/low, active lookbacks, current session, structure label, and live counts of mitigated OBs/FVGs.
Signals & Visuals
⦁ Bullish Turtle Soup: Triangle up + label (🐢S/M/L/D + star rating).
⦁ Bearish Turtle Soup: Triangle down + label (🐢S/M/L/D + star rating).
⦁ Labels can show: quality stars, FAST/SLOW reversal, reversal & breakout volume tags, previous consecutive count, and last move %.
⦁ Lines/Boxes: OBs, FVGs, OTE zones, SL/TP bands, and optional breakout magnitude line.
Inputs (Key Groups)
⦁ Turtle Soup: Lookbacks (single or S/M/L), reversal bars, wick ratio, magnitude line, reversal speed, volume confirmation (multiplier/length), consecutive tracking.
⦁ Order Blocks: Show/validate structure, lookback, extend-until-touched, mitigation % threshold, colors.
⦁ Fair Value Gaps: Show, min size %, colors, mitigation mode (Touch/50%/Full), optional remove-on-mitigation.
⦁ Kill Zones/Sessions: Enable Asian/London/NY with custom HHMM, colors.
⦁ OTE: Show OTE (61.8–78.6%), color, timeframe-adaptive offsets.
⦁ Signal Filters: Filter by session, time window, market structure method (ADX/MA/ATR/Combined), thresholds (ADX, MA periods, ATR multiplier), trending/ranging allowances, structure label & offset.
⦁ SL/TP: SL buffer %, TP 1:1/1:2/1:3 toggles & colors.
⦁ Breakout Validation: Require breakout-bar volume, min swing age, volume label toggles.
⦁ Alerts: Enable/disable.
⦁ Dashboard: Position, text size, colors, border.
How to Use
1. Markets & Timeframes: Works on FX, crypto, indices, and futures. Start with M5–H1 for intraday and H1–H4 for swing; refine lookbacks per instrument volatility.
2. Core Flow:
⦁ Enable multiple lookbacks for robustness on mixed volatility.
⦁ Turn on validate_swing_significance to avoid micro sweeps.
⦁ Use validate_breakout_volume + use_volume_confirmation to filter weak pokes.
3. Context Choice:
⦁ In ranging environments, allow both sides; in trends, consider counter-trend only at HTF OB/FVG/OTE confluence.
⦁ Narrow to London/NY for higher activity if desired.
4. Entries/Stops/Targets:
⦁ Entry on confirmed label close or at OTE pullback post-signal.
⦁ SL: below/above reversal wick + sl_buffer%.
⦁ TP: scale at 1:1/1:2/1:3 or manage via OB/FVG/structure breaks.
5. Confluence: Prefer Turtle Soup that aligns with OB/FVG zones and Combined structure method for added reliability.
Alerts
⦁ “Bullish Turtle Soup detected” and “Bearish Turtle Soup detected” fire on confirmation.
⦁ Set to Once Per Bar (as coded) or adjust in the alert dialog per your workflow.
Notes & Tips
⦁ Multiple lookbacks (S/M/L) help capture both shallow and deep liquidity sweeps.
⦁ Use market structure label with offset to keep it readable on the right of price.
⦁ Mitigation tracking visually communicates when OB/FVG confluence is no longer valid.
⦁ Dashboard = fast situational awareness; keep it on during live trading.
Limitations & Disclaimer
⦁ This tool is educational and not financial advice. No profitability or win-rate is implied. Markets carry risk; manage position size and test thoroughly.
⦁ Signal quality depends on market regime, spreads, news, and data quality. Backtests/forward-tests may differ.
⦁ Visual objects are capped for performance; old items may auto-clean to keep charts responsive.
Structure Suite: BOS / CHoCH / FVG (v1.2.1-clean, CN, v6)SMC analysis. fast generating CHoCH, BoS, FVG onto chart,
FMFM60الوصف بالعربية:
هذا المؤشر متقدم ويعرض اتجاه السوق والترند بشكل واضح، ويحدد مناطق العرض والطلب (Supply & Demand) بالإضافة إلى فجوات القيمة العادلة (FVG). يوفر إشارات شراء وبيع (Call و Put) عند كسر أو اختراق المستويات الهامة. كما يحدد أهدافًا ومستويات دعم ومقاومة رئيسية. المؤشر مناسب لجميع المتداولين الراغبين في تحليل السوق بدقة واتخاذ قرارات تداول مستنيرة.
الوصف بالإنجليزية:
This is an advanced indicator that clearly displays the market direction and trend, and identifies Supply & Demand zones along with Fair Value Gaps (FVG). It provides Buy and Sell signals (Call and Put) when key levels are broken or breached. It also defines targets and major support and resistance levels. The indicator is suitable for all traders who want precise market analysis and informed trading decisions.
Fmfm50الوصف بالعربية:
هذا المؤشر متقدم ويعرض اتجاه السوق والترند بشكل واضح، ويحدد مناطق العرض والطلب (Supply & Demand) بالإضافة إلى فجوات القيمة العادلة (FVG). يوفر إشارات شراء وبيع (Call و Put) عند كسر أو اختراق المستويات الهامة. كما يحدد أهدافًا ومستويات دعم ومقاومة رئيسية. المؤشر مناسب لجميع المتداولين الراغبين في تحليل السوق بدقة واتخاذ قرارات تداول مستنيرة.
الوصف بالإنجليزية:
This is an advanced indicator that clearly displays the market direction and trend, and identifies Supply & Demand zones along with Fair Value Gaps (FVG). It provides Buy and Sell signals (Call and Put) when key levels are broken or breached. It also defines targets and major support and resistance levels. The indicator is suitable for all traders who want precise market analysis and informed trading decisions
ttr双模式移动止盈止损策略V1该策略通过趋势判断当前所处的周期以及波动,开仓逻辑为小仓位大杠杠,在波动中进行移动的止盈止损。The strategy judges the current cycle and volatility through trends, with an opening logic of "small position size and high leverage", and implements dynamic take-profit and stop-loss amid volatility
Adaptive Support Resistance LineBuy until price remains above the green support line. Sell until price remains below the red resistance line. The signal is adaptive to volatility and trend to minimize trades. Relevant for securities from different asset classes across different holding periods (few ticks to few months). Inspired by Geometric Brownian Motion.
SaudModules:
Supply/Demand + BOS (break of structure) + optional ZigZag
Liquidity sweeps (lines at prior highs/lows, removed when taken)
Supertrend flips → Entry/SL + TP1..TP5 (R-mode or ATR-mode) with optional CALL/PUT
Logic:
New swing high → Supply box (thin ATR-scaled zone).
New swing low → Demand box.
Close above Supply / below Demand ⇒ convert to BOS (structure shift).
Liquidity lines mark nearby HH/LL; delete when price hits them (sweep).
On Supertrend flip: Entry = close, SL = ATR-based, TPs by 1R..nR or ATR multiples.
Tune: Swing Length, Box Width (ATR/10), Line Length, ATR Length, Supertrend Factor, TP mode & levels.
Use: Map S/D on higher TF → watch sweeps → take flips with defined SL/TP ladder.
المكوّنات:
عرض/طلب + BOS + اختياري ZigZag
خطوط سيولة عند قمم/قيعان تُحذف بعد السحب
قلب Supertrend ⇒ دخول/وقف + TP1..TP5 (نِسَب R أو مضاعفات ATR) وخيار CALL/PUT
المنطق:
قمة جديدة ⇒ منطقة عرض، قاع جديد ⇒ منطقة طلب (سماكة حسب ATR).
إغلاق فوق العرض/تحت الطلب ⇒ BOS (تغيّر هيكلي).
خطوط السيولة تُحدَّد ثم تُزال عند لمس السعر (sweep).
عند قلب الـSupertrend: دخول = إغلاق الشمعة، وقف ATR، أهداف R أو ATR.
الضبط: طول السوينغ، سماكة الصندوق (ATR/10)، طول الخط، ATR Length، معامل Supertrend، وضع الأهداف وقيمها.
الاستخدام: حدّد S/D على فريم أعلى → راقب سحب السيولة → خذ قلب الاتجاه مع وقف محدد وسُلّم أهداف.
ZynAlgo Trend Dashboard MiniZynAlgo Trend Dashboard Mini helps traders quickly visualize multi-timeframe market direction in one clean widget.
It scans up to 5 timeframes using MA Cross, Price vs MA, or RSI logic — showing whether each timeframe is bullish, bearish, or neutral.
The dashboard updates automatically and can be displayed in Detailed, Compact, or Minimal modes, adapting perfectly to any chart layout.
💡 Perfect for: intraday & swing traders who want a fast, visual way to confirm overall trend bias before entering trades.
🎨 Includes multiple themes: Dark Neon, Professional, Light Modern, Cyberpunk, Matrix, and more.
🔔 Built-in alerts notify you when all or most timeframes align in the same direction.
Pro Divergence Scalper | Jekos01 v3.1 Title: Pro Divergence Scalper | Jekos01 v3.1
Short Description (For TradingView Feed/Pre-header)
The Trend Divergence Scalper v3.1 by Jekos01 is an advanced Pine Script indicator designed for high-probability, trend-continuation entries. It utilizes Hidden RSI Divergences with robust EMA, MACD, and Impulse filters to eliminate noise and pinpoint the exact end of corrections.
Full Presentation & Features
Welcome to the Pro Divergence Scalper v3.1, an aggressive yet highly filtered tool built to optimize your intraday and swing trading entries. This indicator focuses exclusively on trend continuation, significantly reducing the false signals common in counter-trend strategies.
1. Core Logic: High-Probability Trend Continuation
The primary trigger is the Hidden RSI Divergence. This signal confirms that a local pullback or correction is over, and the momentum is ready to resume the primary trend.
LONG Signal (Hidden Bullish Divergence): Triggers when the price makes a Higher Low (HL) while the RSI makes a Lower Low (LL). This is the classic signal for trend continuation in an uptrend.
SHORT Signal (Hidden Bearish Divergence): Triggers when the price makes a Lower High (LH) while the RSI makes a Higher High (HH). This signals that the downtrend is set to continue.
Absolutely! To successfully publish your indicator on TradingView for a global audience, the presentation must be in professional English.
I have compiled all the information, settings, and the description of the Pro Divergence Scalper | Jekos01 v3.1 into a coherent English presentation.
🇺🇸 TradingView Indicator Presentation (English)
📌 Title: Pro Divergence Scalper | Jekos01 v3.1
Short Description (For TradingView Feed/Pre-header)
The Trend Divergence Scalper v3.1 by Jekos01 is an advanced Pine Script indicator designed for high-probability, trend-continuation entries. It utilizes Hidden RSI Divergences with robust EMA, MACD, and Impulse filters to eliminate noise and pinpoint the exact end of corrections.
Full Presentation & Features
Welcome to the Pro Divergence Scalper v3.1, an aggressive yet highly filtered tool built to optimize your intraday and swing trading entries. This indicator focuses exclusively on trend continuation, significantly reducing the false signals common in counter-trend strategies.
1. Core Logic: High-Probability Trend Continuation
The primary trigger is the Hidden RSI Divergence. This signal confirms that a local pullback or correction is over, and the momentum is ready to resume the primary trend.
LONG Signal (Hidden Bullish Divergence): Triggers when the price makes a Higher Low (HL) while the RSI makes a Lower Low (LL). This is the classic signal for trend continuation in an uptrend.
SHORT Signal (Hidden Bearish Divergence): Triggers when the price makes a Lower High (LH) while the RSI makes a Higher High (HH). This signals that the downtrend is set to continue.
2. Multi-Level Filtering for Clean Signals
We've integrated three powerful filters to ensure high signal quality, customizable via the settings panel:
Filter Purpose Default State (for High Frequency)
EMA Trend Filter (20/70 or 20/34) Strict adherence to the main trend. LONG signals fire ONLY when the price is above the Slow EMA. ON
MACD Filter Confirms momentum validity. Triggers only upon a MACD crossover in the direction of the signal. OFF (For Max. Frequency)
Impulse Filter (Pump/Dump) (New in v3.1) Requires a sudden price acceleration (e.g., 1.5% move over 5 bars) to enter. Ideal for confirming breakout momentum. OFF (Recommended to experiment)
Экспортировать в Таблицы
3. Optimized Settings for Every Trading Style
The indicator is highly adjustable. Use the following recommended setups based on your preferred timeframe and style:
Trading Style Recommended Timeframe (TF) Slow EMA Length Pivot Strength (RSI Sensitivity)
Swing Trading (Lower Freq.) 4H / 1D 100 5
Intraday Trading (Balanced) 30m / 1H 50 / 70 4
Max. Frequency Scalping 5m / 15m 34 1
Экспортировать в Таблицы
(Note: The current most aggressive settings used are EMA 20/34 and Pivot Strength of 1 for maximum 15m/30m frequency.)
4. Visual Tools & Clarity
Background Trend Color: The chart background changes color (Green/Red) to visually confirm the strict EMA trend direction.
VRVP Levels (Simulation): Provides simulated horizontal Support and Resistance lines based on historical highs/lows (Volume-Weighted Levels) to assist with target setting and risk management.
⚙️ How to Get Started
Add the Pro Divergence Scalper | Jekos01 v3.1 to your chart.
Set your desired Timeframe (e.g., 15m for scalping).
Adjust the EMA and Pivot Strength in the Arguments tab according to the table above.
Use a higher timeframe (e.g., 1H) for trend confirmation before taking a signal on the lower timeframe.
Developed by: Jekos01
Disclaimer: This is a technical analysis tool and does not constitute financial advice. Always use strict risk management.
Kyle交易系统核心信号EA | Kyle Core Signal EA System📘 概述 | Overview
中文:
Kyle交易系统核心信号EA是一款为现代交易者打造的多功能趋势识别与自动风控系统。
它集成了 Heikin Ashi 趋势检测 + ATR 波动通道 + EMA 趋势过滤,能在价格反转早期精准捕捉多空信号,并自动绘制止损与三重止盈结构。
English:
Kyle Core Signal EA System is an all-in-one trading assistant designed for modern traders who need trend precision, risk automation, and multi-target exits.
It combines Heikin Ashi, ATR Volatility Channels, and EMA Direction Filters to deliver clean Buy/Sell signals with instant Stop Loss and 3 Take-Profit levels.
⚙️ 核心逻辑 | Core Logic
中文:
1️⃣ 趋势引擎: 通过 Heikin Ashi + ATR 计算动态通道,捕捉真实趋势反转。
2️⃣ EMA过滤: 避免虚假信号,仅在趋势方向一致时触发。
3️⃣ 风控系统: 每次信号生成后自动计算:
入场价(Entry)
止损价(Stop Loss)
三个止盈目标(TP1 / TP2 / TP3)
4️⃣ EA警报模块: 自动生成标准格式警报,可直接对接 EA / MT4 / MT5 / API 执行。
English:
1️⃣ Trend Engine: Heikin Ashi + ATR-based channel captures true reversals.
2️⃣ EMA Filter: Filters out false signals and confirms directional consistency.
3️⃣ Risk Management: Automatically calculates Entry, Stop Loss, and three layered profit targets (TP1 / TP2 / TP3).
4️⃣ EA Alert Module: Pre-formatted alerts ready for EA / MT4 / MT5 / API execution.
📊 主要功能 | Key Features
中文:
✅ 自动趋势识别(Heikin Ashi + ATR)
✅ EMA方向过滤,去除假突破
✅ 自动绘制进场、止损、止盈价位
✅ 三重止盈结构(TP1 / TP2 / TP3)
✅ 自定义ATR倍数(止损与目标)
✅ 支持警报联动EA执行
✅ 全图可视化交易结构
English:
✅ Auto Trend Recognition (Heikin Ashi + ATR)
✅ EMA Direction Filter (Noise Reduction)
✅ Entry/Stop/Target visualization
✅ Triple Take-Profit structure (TP1 / TP2 / TP3)
✅ Customizable ATR Multipliers
✅ EA-compatible alert format
✅ Full chart visualization and real-time updates
🔔 警报输出格式 | Alert Format
中文:
多头信号(LONG):
LONG|symbol=XAUUSD|zhisun=1980.5|jinchang=1985.0|price1=1987.5|price2=1990.0|price3=1993.5
空头信号(SHORT):
SHORT|symbol=XAUUSD|zhisun=1990.5|jinchang=1985.0|price1=1982.5|price2=1979.5|price3=1976.0
English:
Long Signal:
LONG|symbol=XAUUSD|zhisun=1980.5|jinchang=1985.0|price1=1987.5|price2=1990.0|price3=1993.5
Short Signal:
SHORT|symbol=XAUUSD|zhisun=1990.5|jinchang=1985.0|price1=1982.5|price2=1979.5|price3=1976.0
These messages can be directly parsed by any EA, bot, or API-based trade executor.
💡 使用建议 | Recommended Usage
中文:
🔥 推荐品种:黄金 (XAUUSD)、原油 (USOIL)、外汇 (EURUSD/GBPUSD)、加密货币 (BTC/ETH)
⏱ 推荐周期:2分钟 / 5分钟/15分钟 / 1小时
🎯 止损策略:建议 1.5 × ATR
📊 止盈策略:分批止盈(TP1 → TP3)
💡 可搭配 Supertrend、RSI、成交量指标作为辅助过滤。
English:
🔥 Best for: Gold (XAUUSD), Oil (USOIL), Forex (EURUSD/GBPUSD), Crypto (BTC/ETH)
⏱ Suggested Timeframes: 2m/5m / 15m / 1h
🎯 Stop Loss: ~1.5× ATR (default)
📊 Take Profit: Gradual scaling out (TP1 → TP3)
💡 Combine with Supertrend, RSI, or Volume for confirmation.
🧭 系统优势 | Advantages
优势 (中文) Advantages (English)
🎯 精准趋势识别 Accurate trend reversal detection
🔍 有效过滤虚假信号 EMA directional confirmation
🧮 自动风控绘制 Auto Stop/Target plotting
⚡ EA联动警报 EA-ready Alert Message Format
💎 多市场兼容 Works with Gold, Forex, Crypto
🖥️ 清晰可视化结构 Clean & structured chart layout
👤 作者介绍 | About the Author
中文:
作者 Kyle(TG: Kylexauusd)是一名专注于黄金与外汇系统交易的策略设计师。
本系统融合了量化逻辑与实盘验证,是多年趋势捕捉经验的成果。
English:
Developed by Kyle (TG: Kylexauusd) —
A professional system trader specialized in Gold & Forex strategies.
This system represents years of experience in automated and structured trading.
⚠️ 风险提示 | Disclaimer
中文:
本脚本仅供学习与策略研究,不构成任何投资建议。
实盘交易请务必做好风险控制与仓位管理。
English:
This script is for educational and research purposes only.
It does not constitute financial advice.
Trading involves risk — please manage your capital responsibly.
✨ Kyle交易系统核心信号EA | Kyle Core Signal EA System
Trade Smarter. Trade Structured.
一张图看趋势、看风控、看方向。 OANDA:XAUUSD TVC:DXY BINANCE:ETHUSDT.P BINANCE:BTCUSDT.P
Regular Trading Hours Opening Range Gap (RTH ORG)### Regular Trading Hours (RTH) Gap Indicator with Quartile Levels
**Overview**
Discover overnight gaps in index futures like ES, YM, and NQ, or stocks like SPY, with this enhanced Pine Script v6 indicator. It visualizes the critical gap between the previous RTH close (4:15 PM ET for futures, 4:00 PM for SPY) and the next RTH open (9:30 AM ET), helping traders spot potential price sensitivity formed during after-hours trading.
**Key Features**
- **Standard Gap Boxes**: Semi-transparent boxes highlight the gap range, with optional text labels showing day-of-week and "RTH" identifier.
- **Midpoint Line**: A customizable dashed line at the 50% level, with price labels for quick reference.
- **New: Quartile Lines (25% & 75%)**: Dotted lines (default width 1) mark the quarter and three-quarter points within the gap, ideal for finer intraday analysis. Toggle on/off, adjust style/color/width, and add labels.
- **High-Low Gap Variant**: Optional boxes and midlines for gaps between the prior close's high/low and the open's high/low—perfect for wick-based overlaps on lower timeframes (5-min or below recommended).
- **RTH Close Lines**: Extend previous close levels with dotted lines and price tags.
- **Customization Galore**: Extend elements right, limit historical displays (default: 3 gaps), no-plot sessions (e.g., avoid weekends), and time offsets for non-US indices.
**How to Use**
Apply to 15-min or lower charts for best results. Toggle "extend right" for ongoing levels. SPY auto-adjusts for its 4 PM close.
Tested on major indices—enhance your gap trading strategy today! Questions? Drop a comment.
Thanks to twingall for supplying the original code.
Thanks to The Inner Circle Trader (ICT) for the logical and systematic application.
6 minutes ago
Release Notes
### Regular Trading Hours (RTH) Gap Indicator with Quartile Levels
**Overview**
Discover overnight gaps in index futures like ES, YM, and NQ, or stocks like SPY, with this enhanced Pine Script v6 indicator. It visualizes the critical gap between the previous RTH close (4:15 PM ET for futures, 4:00 PM for SPY) and the next RTH open (9:30 AM ET), helping traders spot potential price sensitivity formed during after-hours trading.
**Key Features**
- **Standard Gap Boxes**: Semi-transparent boxes highlight the gap range, with optional text labels showing day-of-week and "RTH" identifier.
- **Midpoint Line**: A customizable dashed line at the 50% level, with price labels for quick reference.
- **New: Quartile Lines (25% & 75%)**: Dotted lines (default width 1) mark the quarter and three-quarter points within the gap, ideal for finer intraday analysis. Toggle on/off, adjust style/color/width, and add labels.
- **High-Low Gap Variant**: Optional boxes and midlines for gaps between the prior close's high/low and the open's high/low—perfect for wick-based overlaps on lower timeframes (5-min or below recommended).
- **RTH Close Lines**: Extend previous close levels with dotted lines and price tags.
- **Customization Galore**: Extend elements right, limit historical displays (default: 3 gaps), no-plot sessions (e.g., avoid weekends), and time offsets for non-US indices.
**How to Use**
Apply to 15-min or lower charts for best results. Toggle "extend right" for ongoing levels. SPY auto-adjusts for its 4 PM close.
Tested on major indices—enhance your gap trading strategy today! Questions? Drop a comment.
Thanks to twingall for supplying the original code.
Thanks to The Inner Circle Trader (ICT) for the logical and systematic application.
+++ 2025.10.13 added new labels / fixed bugs
Trading Life ProOverview
Trading Life Pro is an advanced all-in-one indicator built for TradingView users who demand precision and insight. It delivers real-time entry and exit signals, dynamic support and resistance levels, and deep analytical tools designed to elevate your trading strategy. Every component is optimized for accuracy, speed, and clarity — helping you make confident, data-driven decisions in any market.
Key Features
Non-Repaint Signals: All entries are locked once generated — no repainting, no false signals.
Real-Time Entry & Exit: Get immediate trade signals as market conditions evolve.
Smart Range Finder: Identify ideal trading zones based on current volatility and market structure.
Fundamental Analyzer: Automatically assess economic and market factors with on-chart insights once sufficient data is available.
Automatic 3-TP Levels: Configure up to three adaptive take-profit levels that track live market momentum.
Duo FVG Detection: Spot and trade Fair Value Gaps across consecutive candles for ultra-precise entries and exits.
Dynamic Support & Resistance: Detect key turning points and price reaction zones in real time.
Candle Sentiment Analyzer: Identify bullish and bearish candlestick formations to gauge market sentiment.
Market Screener: Scan multiple markets to uncover high-probability trade setups.
Adaptive Modes: Switch easily between Default, Aggressive, and Long Shot presets to match your trading style.
Trend Power Analyzer: Measure and visualize the strength of market trends directly from candlestick behavior.
Hyper Insights: Unlock advanced, context-based analytics for better decision-making.
RSI Analyzer: Evaluate overbought and oversold conditions with dynamic RSI integration.
Custom Alerts: Receive instant notifications for trade entries, trend shifts, or market changes.
Lifetime Access: One-time purchase — no subscriptions, no hidden costs.
Universal Compatibility: Works on all currency pairs, indices, and timeframes.
Heikin Ashi Optimized: Fully compatible and optimized for Heikin Ashi charts for smooth visualization and fast loading.
Free Updates & Training: Enjoy continuous updates plus a free video tutorial to master every feature.
Description
Trading Life Pro delivers a comprehensive trading toolkit within TradingView. From pinpoint entries and automated take-profit levels to real-time analysis of trends, fundamentals, and fair value gaps — every feature is crafted for traders seeking consistency and edge.
With powerful alerts, adaptive presets, and universal compatibility, Trading Life Pro seamlessly integrates into any trading workflow, supporting all markets, timeframes, and chart types.
Usage
Access real-time trade signals directly on TradingView.
Use Smart Range Finder and Fundamental Analyzer for context-driven entries.
Configure Automatic TP Levels and analyze trend strength via candlestick and RSI tools.
Enable alerts to stay informed about market shifts and entry confirmations — even when you’re away from the screen.
HMA High/Low Band - Trend Color HMA High/Low Band Trend
Visualize market trends clearly with a single Hull Moving Average (HMA) and dynamic high/low bands. The indicator colors the HMA and its bands based on trend direction:
Green = Uptrend
Red = Downtrend
Gray = Sideways
The band adjusts dynamically to price action, giving a clear view of trending and sideways markets without cluttering your chart. Ideal for traders who want a smooth trend filter with instant visual cues.
Confirmed Breakout Detector v2This indicator automatically:
Detects breakouts above recent resistance (pivot high).
Confirms volume surge (≥ 1.5× average 50-day volume).
Compares RS line vs QQQ to ensure leadership.
Checks candle strength (close in upper half).
Verifies MACD slope ≥ 0 (no bearish divergence).
Plots green triangles under confirmed buys, orange for watch-list breakouts.
Displays an on-chart label (HUD) with real-time confirmation status.
Supports TradingView alerts, so you can set “Confirmed Buy Alert” → Send Email / App Notification.
Institutional AI-Enhanced Market StructureInstitutional AI-Enhanced Market Structure Indicator
COMPREHENSIVE DESCRIPTION
Overview and Purpose
This indicator combines institutional trading concepts (Smart Money Concepts) with a proprietary AI-inspired probability scoring system to identify high-probability trading opportunities. Unlike standard trend-following or support/resistance indicators, this tool integrates multiple institutional order flow concepts and quantifies their confluence through a dynamic scoring algorithm that adapts to market conditions.
The indicator is closed-source because it contains a unique multi-factor probability calculation engine and adaptive parameter optimization system that took extensive development and backtesting to create. The specific weighting, thresholds, and interaction between components represent proprietary intellectual property.
What Makes This Original
1. AI-Inspired Adaptive Probability Scoring System
The core innovation is a dynamic scoring algorithm that evaluates trade setups based on 6 confluence factors:
Market Structure Quality (20 points): Validates Break of Structure (BOS) or Change of Character (CHoCH) using pivot-based swing analysis
Order Flow Strength (15 points): Measures institutional volume participation relative to 20 and 50-period moving averages with standard deviation filtering
Liquidity Engineering (15 points): Detects liquidity sweeps at equal highs/lows (EQL) where retail stop losses cluster
Imbalance Presence (10 points): Identifies unfilled Fair Value Gaps (3-candle imbalances) as institutional entry zones
Market Regime Alignment (10 points): Confirms directional bias through multi-factor regime classification
Volatility Environment (5 points): Penalizes signals during high-volatility "chop" periods
Each factor is weighted based on backtested importance, and the total score (50-100%) must exceed a user-defined threshold before displaying signals. This is NOT a simple indicator mashup—the scoring system dynamically evaluates how these concepts work together in real-time.
2. Dynamic Market Regime Detection
Most indicators use static parameters. This indicator continuously classifies the market into one of four regimes using four calculations:
Trend Strength: EMA(21) vs EMA(50) divergence relative to price
Volatility Ratio: Current price standard deviation vs 50-period average
Volume Regime: Current volume vs 50-period SMA
Average Daily Range: 20-bar high-low range normalized to price
Based on these inputs, the algorithm classifies markets as:
BULL_TREND: Strong upward momentum with above-average volume
BEAR_TREND: Strong downward momentum with above-average volume
RANGING: Low trend strength with contained volatility
VOLATILE: Elevated volatility ratio above 1.5x average
The regime detection then adaptively modifies:
ATR multipliers for stop placement (2.5x in volatile, 1.2x in ranging, 1.8x in trending)
Signal probability requirements (higher in volatile conditions)
Order block decay rates
Fair value gap sensitivity
3. Institutional Order Flow Integration
The indicator detects and tracks institutional footprints through three proprietary methods:
Order Blocks: Unlike simple supply/demand zones, this uses a multi-condition filter:
Volume spike > 2.0 standard deviations above 20-period average
Large candle body > 0.8x ATR
Confirmation of Break of Structure in the same direction
Touch tracking and "tested" status when price revisits
Automatic decay after user-defined bars (prevents chart clutter)
Fair Value Gaps (Imbalances): 3-candle inefficiency detection where:
Bullish FVG: low > high AND close > high (gap between candle 0 and 2)
Bearish FVG: high < low AND close < low
Real-time fill percentage tracking as price revisits the gap
Assumes institutions will defend or fill these imbalances
Liquidity Zones: Detects equal highs/lows where retail stops cluster:
Identifies swing points within user-defined percentage threshold (default 0.3%)
Tracks "sweep" events when price spikes through then reverses (wick through level, close back inside)
Differentiates swept vs unswept liquidity for entry timing
4. Volume-Weighted Dynamic Levels
Instead of simple moving averages or static pivots, support/resistance are calculated using volume-weighted price:
Support = Σ(low × volume ) / Σ(volume ) for i=0 to 19
Resistance = Σ(high × volume ) / Σ(volume ) for i=0 to 19
This gives more weight to price levels with higher institutional participation, creating more reliable stop-loss placement when "Adaptive Stop Loss" is enabled.
5. Multi-Timeframe Confluence
The indicator queries daily timeframe data for higher-timeframe confirmation:
Daily EMA trend direction (21 vs 50)
Daily volume regime (above/below 20-period average)
Daily market regime classification
Signals only trigger when current timeframe setup aligns with daily timeframe bias, filtering out counter-trend noise.
How It Works - Technical Methodology
Market Structure Detection (Smart Money Concepts)
Uses ta.pivothigh() and ta.pivotlow() with user-defined strength (default 5 bars each side)
Stores last 50 swing highs and lows in arrays for historical reference
Break of Structure (BOS): Price closes beyond the most recent swing high (bullish) or swing low (bearish)
Change of Character (CHoCH): Price breaks counter-trend structure (low breaks above previous swing low = potential reversal)
Signal Generation Logic
A valid LONG signal requires ALL of the following:
Setup: Bullish BOS or CHoCH confirmed
Confirmation: Bullish liquidity sweep OR unfilled bullish FVG present
HTF Alignment: Daily timeframe in uptrend with above-average volume
Probability Score: AI scoring system returns ≥65% (user adjustable 50-95%)
Risk:Reward: Calculated stop (ATR-based or adaptive) allows minimum 2:1 R:R (user adjustable)
SHORT signals use inverse logic (bearish structure, bearish sweeps/FVGs, daily downtrend).
Adaptive Risk Management
Stop loss calculation adapts based on:
Current market regime (wider stops in volatile markets)
Volume-weighted support/resistance levels when "Adaptive" enabled
Minimum risk threshold (0.2% of price) to avoid over-tight stops
Take profit targets automatically calculate based on user-defined risk:reward ratio (default 2:1).
How To Use This Indicator
Initial Setup
Market Structure Group:
Start with default Swing Strength (5) for 1H-4H timeframes
Increase to 10-15 for daily timeframes
Decrease to 3 for scalping on 5-15min timeframes
AI Features Group:
Set "Signal Probability Threshold" to 65% for balanced approach
Increase to 75-80% for fewer but higher-quality signals
Lower to 60% in strong trending markets for more entries
Risk Management:
Enable "Adaptive Stop Loss" for dynamic support/resistance-based stops
Set "Minimum Risk:Reward" to 2.0 or higher (institutional standard)
Adjust ATR Length (14) based on timeframe (shorter for intraday)
Reading The Signals
Visual Elements:
Small triangles: Swing highs (red) and lows (green) - market structure pivots
Circles: Break of Structure - lime (bullish) or red (bearish)
Diamonds: Change of Character - cyan (bullish reversal) or orange (bearish reversal)
Boxes: Order blocks (green=bullish, red=bearish, yellow border=tested)
Transparent boxes: Fair Value Gaps (blue=bullish, purple=bearish)
Dashed/solid lines: Liquidity zones (purple=unswept, yellow=swept)
Large arrows: Trade signals with probability % (🔼 LONG / 🔽 SHORT)
Red/Green lines: Stop loss and take profit levels
Statistics Dashboard (top right by default):
Market Regime: Current classification (BULL_TREND, BEAR_TREND, RANGING, VOLATILE)
Volatility Ratio: Current vs average volatility (>1.5 = avoid trading)
Volume Regime: Current vs average volume (>1.2 = strong institutional participation)
Active Order Blocks: Number of untested institutional zones
Unfilled FVGs: Number of imbalances awaiting price return
Liquidity Zones: Unswept equal highs/lows (potential reversal areas)
HTF Alignment: Daily timeframe bias (confirm direction)
Last Signal Prob: Confidence score of most recent signal
Trading Strategy
For LONG Entries:
Wait for bullish BOS or CHoCH marker (circle/diamond below price)
Confirm market regime is BULL_TREND or RANGING (not VOLATILE)
Look for bullish liquidity sweep (yellow line below price) or unfilled bullish FVG (blue box)
When all align, watch for 🔼 LONG signal with probability ≥65%
Enter on signal candle close
Stop loss = red line, Take profit = green line
Monitor FVG fills and order block tests for possible early exit
For SHORT Entries:
Same logic in reverse (bearish structure, BEAR_TREND regime, bearish sweeps/FVGs, 🔽 SHORT signals)
Advanced Usage:
Order Block Confluence: Highest probability entries occur when price retraces to tested order block (yellow border) + FVG overlap
Liquidity Sweep Reversals: Best entries often follow immediate sweep (yellow line) then signal in opposite direction
Regime Filtering: Avoid trading during VOLATILE regime or when volatility ratio >1.5
HTF Confirmation: Only take signals when HTF Alignment matches direction (BULLISH for longs, BEARISH for shorts)
Customization:
Every visual element has individual toggle and color controls in settings:
Hide swing points if chart too cluttered
Disable BOS/CHoCH markers if only using order blocks
Turn off FVGs if focusing on liquidity sweeps
Customize colors to match your chart theme
Reposition dashboard to any corner
Why This Requires Closed-Source Protection
This indicator represents months of development integrating:
Proprietary probability weighting system - The specific point allocation (20/15/15/10/10/5) and interaction logic between factors is based on extensive backtesting across multiple markets and timeframes
Adaptive parameter optimization algorithms - How the indicator modifies ATR multipliers, decay rates, and thresholds based on regime detection uses proprietary mathematical relationships
Volume-weighted level calculations - The specific lookback periods and weighting formulas for dynamic support/resistance are optimized through statistical analysis
Multi-factor regime classification - The exact thresholds for trend strength (0.02), volatility ratio (1.3/1.5), and volume regime (1.0/1.2) are calibrated values
While the underlying concepts (SMC, order blocks, FVGs) are known, the integration methodology, scoring system, and adaptive algorithms are original intellectual property. An open-source version would allow immediate copying of years of development work, defeating the purpose of creating a professional-grade tool.
The detailed description above provides traders with complete transparency on WHAT the indicator does and HOW to use it effectively, without revealing the exact mathematical relationships and thresholds that make it effective.
Disclaimer
This indicator is an analytical tool for identifying potential trading opportunities based on institutional order flow concepts. It does not guarantee profits and should be used alongside proper risk management, fundamental analysis, and personal trading rules. Past performance does not indicate future results. Always use stop losses and never risk more than you can afford to lose.