Volume Profile Per Candle

VolumeProfilePerCandle v4.4

This is a comprehensive per-candle volume profile / footprint chart indicator for MetaTrader 5, rendered entirely via a canvas overlay (CCanvas). It's a single-file, zero-buffer indicator that draws directly onto the chart window using pixel-level graphics. Here's a complete breakdown:

Core Concept

For every visible candle, the indicator divides the bar's price range into configurable price levels (up to 50) and counts how much trading activity occurred at each level — either from actual tick data, tick volume, or real volume. It then visualizes this "time-at-price" distribution as a heatmap, footprint, or other visual style directly on the chart.

Major Feature Groups

1. Heatmap Rendering (Primary Visual)

The indicator offers 8 display modes for visualizing per-bar volume distribution:

  • Filled — solid colored rectangles per price level, color-mapped by intensity
  • Gradient — smooth vertical gradient blending within each cell (uses a 4-band approximation for performance)
  • Bars — horizontal bars where width represents intensity
  • Dots — dot-matrix pattern, density proportional to activity
  • Footprint (Bid×Ask) — classic footprint text showing bid and ask volume per level
  • Delta — colored rectangles showing net buy/sell imbalance per level
  • Total Volume — volume per level with delta-based coloring
  • Combined — heatmap intensity background + footprint text overlay

There are 9 color themes: Thermal (blue→red), Magma (black→yellow), Ocean, Forest, Plasma (purple→gold), Inferno, Grayscale, Neon (cyan→magenta), and Custom (user-defined 3-color gradient). A 256-entry color lookup table is pre-built each frame for performance.

2. Volume Data Sources

Three sources are supported:

  • Tick volume — standard MT5 tick volume, distributed across levels using a weighted model (body gets more weight than wicks, center of body gets most)
  • Real volume — exchange-reported volume where available
  • Actual tick data — the most accurate mode. Uses CopyTicksRange() to get real tick-by-tick data, classifies each tick as buy or sell using tick flags first, then a Lee-Ready algorithm fallback (comparing last price to bid/ask, then to previous tick direction). This populates true bid/ask volume per level.

3. POC (Point of Control) & Value Area

  • POC — the price level with the highest volume/activity within each bar. When real tick data is available, POC is based on actual traded volume ( totalVol[] ); otherwise it uses tick counts. Four visual styles: solid line, dashed line, arrow marker, diamond marker.
  • POC Extension — POC lines can extend rightward beyond the candle, with extension length proportional to the combined heatmap intensity at that price. Uses a thermal gradient that fades out. The extension multiplier is configurable (1×–10×).
  • Value Area — the price zone containing a configurable percentage (default 70%) of total volume, computed by expanding outward from the POC. Drawn as a semi-transparent fill with boundary lines (VAH/VAL).

4. High/Low Volume Nodes

  • HVN — levels exceeding a threshold percentage of the bar's max activity get a colored border highlight (default: 80% threshold, lime border)
  • LVN — levels below a threshold get a different highlight (default: 20% threshold, red border)

5. Order Block Detection (Smart Money Concepts)

A sophisticated hot-zone detection system that identifies institutional order blocks:

Detection method:

  • Scans the last N bars (configurable lookback, default 100)
  • Builds a bucketed price density map — divides the full price range into tolerance-width buckets and counts how many times price visited each bucket
  • Identifies "hot zones" where density exceeds a configurable percentage of the maximum density
  • Uses a top-N insertion sort to keep only the strongest MAX_OB (30) candidates
  • Checks for overlapping zones and deduplicates

Enhanced scoring (1–10 strength score):

  • Impulse detection (0–3 points) — looks for strong directional candles after the OB, scored relative to ATR (2× ATR = 3 pts, 1× = 2 pts, 0.3× = 1 pt)
  • Liquidity sweep (0–2 points) — checks if price swept previous swing highs/lows before forming the OB
  • Fair Value Gap (0–2 points) — detects FVGs adjacent to the OB (gap between bar[i] low and bar[i+2] high for bullish, ATR-relative minimum gap size)
  • Volume confirmation (0–1 point) — OB bar volume vs. 10-bar average (1.2× threshold)
  • Intensity (0–1 point) — density relative to max (>0.6 = 1 pt)
  • Bar count (0–1 point) — 2–8 bars in the zone scores a point

Mitigation tracking:

  • Tracks whether price has re-entered the zone, how deep (mitigationPct 0–100%)
  • 50% penetration = mitigated; full through = 100% mitigated
  • Breaker block detection — when price fully breaks through an OB, it flips to a breaker
  • Retest counting with per-bar deduplication
  • Mitigation state persists across rebuilds via a save/restore mechanism

Filtering:

  • Minimum touches, minimum volume, minimum strength score
  • Maximum range in pips or as ATR multiplier
  • OBs can extend forward (configurable bars)

Visual rendering:

  • Filled rectangles with opacity adjusted by strength (strong = brighter, mitigated = faded)
  • Dashed POC line within the zone
  • Labels showing type, bar count, strength score, and status (BREAKER/MIT %)
  • Small indicators for FVG, LIQ (liquidity sweep), IMP (impulse pips)
  • Strength bar on the right edge (color-coded: red→orange→yellow by score)
  • Intensity bar at bottom

6. Swing Arcs

Connects consecutive swing segments with smooth curves weighted by volume intensity:

  • Divides the visible range into segments of configurable period (default 8 bars)
  • For each segment, collects the POC price (or bar midpoint) at each bar as control points
  • Draws a Hermite-interpolated smooth curve through these points
  • Adds a parabolic arc offset based on whether the swing is bullish or bearish
  • Control point dots are drawn at each bar's intensity peak
  • Three line styles: smooth, dashed, dotted
  • Optional fill between the arc and a baseline
  • Color-coded: bullish = DeepSkyBlue, bearish = Magenta

7. Sub-Bar Intensity Profile

Draws a histogram alongside each candle showing the volume distribution:

  • Can appear on the right, left, or both sides of the candle
  • Bar width proportional to intensity at each level
  • Color intensity also scales with volume
  • Optional volume text labels
  • Configurable max width and opacity

8. Footprint & Imbalance Analysis

When using footprint display modes:

  • Bid×Ask — shows "BidVol × AskVol" at each level
  • Delta only — shows signed delta (+/-)
  • Volume (Delta) — shows "TotalVol (+Delta)"
  • All — shows "Bid × Ask [+Delta]"

Imbalance detection:

  • Compares ask volume at level N vs bid volume at level N-1 (buy imbalance)
  • Compares bid volume at level N vs ask volume at level N+1 (sell imbalance)
  • Configurable ratio threshold (default 1.0 = 100%)
  • Highlighted with colored backgrounds and borders

9. Combined Price Heatmap

An aggregate heatmap spanning the full visible range (not per-candle):

  • Sums volume from all cached bars (configurable lookback, default 200) into a single profile with 200 price levels
  • Drawn as a full-width overlay behind per-bar visuals
  • Shows where cumulative volume concentration exists across the visible chart
  • Also used for POC extension intensity lookup

10. Higher Timeframe (HTF) Confirmation Panel

Analyzes two higher timeframes simultaneously:

  • Auto-selection — automatically picks the next timeframe up (e.g., M15→H1, H1→H4, H4→D1)
  • Builds a volume profile on the HTF using the last N bars
  • Computes HTF POC, VAH, VAL
  • Determines trend direction: BULL/BEAR/NEUTRAL based on close vs. moving average, candle direction, and price vs. POC
  • Displays a panel in the top-right corner with trend, POC price, position relative to POC (Above/Below), and VA levels

11. Zoom System

Two independent zoom axes:

  • Vertical (PgUp/PgDn) — price zoom, each level narrows the visible price range by 15% (0.85^level), up to 20 levels. Uses CHART_SCALEFIX to lock the price range.
  • Horizontal (+/-) — first uses MT5's built-in chart scale (0–5), then adds an "extra zoom" (2×–8×) where every Nth bar is skipped and the remaining bars are drawn wider to fill the space.

12. Y-Axis Calibration

A notable technical detail: the indicator uses ChartTimePriceToXY() to calibrate the actual pixel range of the chart's price area (which is smaller than CHART_HEIGHT_IN_PIXELS due to toolbars/scrollbars). This ensures heatmap cells align precisely with candlesticks.

Performance Architecture

  • Hash-based cache — 4096-slot hash table with linear probing and tombstone deletion for O(1) bar data lookup (replaces O(n) linear scan)
  • Circular eviction — when cache is full (1200 entries), the oldest entry is overwritten via a circular write index
  • Bar X position cache — per-frame cache of up to 2000 bar pixel positions to avoid repeated ChartTimePriceToXY calls
  • Color LUT — 256-entry pre-built color lookup table eliminates per-cell floating-point color math
  • Pre-computed ARGB — all fixed colors computed once per frame
  • Visible-range culling — both bar loop and per-bar level loop skip off-screen elements
  • Throttled redraws — configurable minimum milliseconds between redraws (default 100ms) prevents redraw storms during scrolling
  • Tick subsampling — when tick count exceeds the configured max (default 5000), ticks are sampled at even intervals with counts scaled by the step size

Event Handling

  • OnCalculate — main tick handler, detects new bars, triggers heavy computations (OB/Arc detection, HTF analysis) only on new bars
  • OnChartEvent — handles CHARTEVENT_CHART_CHANGE (scroll/zoom), mouse hover for tooltips, and keyboard for zoom controls. Calls RenderFrame() directly for immediate responsiveness.
  • OnTimer — millisecond timer that catches scroll changes (mouse drag/wheel) that don't always trigger OnChartEvent, by polling chart state and comparing to previous values

RenderFrame() is fully self-contained — it reads chart state fresh and uses iTime/iHigh/iLow/iClose/iVolume instead of OnCalculate's array parameters, so it can be called from any event handler.

Configuration Summary

The indicator has ~80 input parameters organized into groups: Heatmap, Custom Colors, POC/Value Area, HVN/LVN, Order Blocks (~20 params), Swing Arcs, Sub-Bar Profile, Labels, HTF Confirmation, Chart Appearance, Footprint, Imbalance, Combined Heatmap, and Performance. It's designed to be a single all-in-one volume analysis tool that replaces multiple separate indicators.

おすすめのプロダクト
Was: $249  Now: $99   Market Profile defines a number of day types that can help the trader to determine market behaviour. A key feature is the Value Area, representing the range of price action where 70% of trading took place. Understanding the Value Area can give traders valuable insight into market direction and establish the higher odds trade. It is an excellent addition to any system you may be using. Inspired by Jim Dalton’s book “Mind Over Markets”, this indicator is designed to suit the
This Volume Delta Profile is an advanced MetaTrader 5 indicator that visualizes   volume delta (order flow imbalance)   using a volume profile-style histogram. It shows the difference between buying and selling pressure at specific price levels, helping traders identify supply and demand zones. This indicator provides a unique perspective on market dynamics by visualizing the imbalance between buying and selling pressure, offering insights beyond traditional volume analysis. Core Concept Positiv
プレミアムレベルは、正しい予測の精度が80%を超える独自の指標です。 この指標は、最高のトレーディングスペシャリストによって2か月以上テストされています。 あなたが他のどこにも見つけられない作者の指標! スクリーンショットから、このツールの正確さを自分で確認できます。 1は、1キャンドルの有効期限を持つバイナリーオプションの取引に最適です。 2はすべての通貨ペア、株式、商品、暗号通貨で機能します 手順: 赤い矢印が表示されたらすぐにダウントレードを開き、青い矢印が表示されたら閉じます。青い矢印の後に開くこともできます。 試してテストしてください!推奨設定はデフォルトです! 日足チャートで最高の精度を示します! インディケータは、2600 Pipsの収益性に対して、約10Pipsという非常に小さなマージンを使用します。
Here   our more valuable tools SMC Trend Trading   ,  Easy SMC Trading  ,  Institutional SMC Architect Volume Analysis Tools  ,  Volume flow Profile  ,  Market volume profile  , FVG with Volume  , Liquidity Heatmap Profile  ,  Volume Spread Analysis The    Liquidity Heatmap   is a sophisticated institutional trading tool designed to reveal where over-leveraged traders are trapped. By calculating estimated liquidation levels based on volume spikes and leverage, this indicator draws a dynamic "h
A powerful indicator that highlights key market zones and helps traders identify potential opportunities across multiple timeframes. Designed for clarity and efficiency, it provides real-time alerts to keep you informed of important price levels. Key Features: Works on multiple timeframes: M1, M5, M15, M30, H1, H4, D1, W1, MN1. Customizable zone colors for each timeframe. Real-time alerts and notifications when price reaches significant zones. Automatically manages chart objects to keep your wor
SMC Venom Model BPR インジケーターは、スマート マネー (SMC) コンセプトで取引するトレーダー向けのプロフェッショナル ツールです。価格チャート上の 2 つの主要なパターンを自動的に識別します。 FVG   (フェアバリューギャップ) は、3 本のローソク足の組み合わせで、最初のローソク足と 3 番目のローソク足の間にギャップがあります。ボリュームサポートのないレベル間のゾーンを形成し、価格修正につながることがよくあります。 BPR   (バランス価格範囲) は、2 つの FVG パターンの組み合わせで、「ブリッジ」を形成します。これは、価格がボリュームアクティビティの少ない動きで動くときに、ブレイクアウトしてレベルに戻るゾーンで、ローソク足の間にギャップを作成します。 これらのパターンは、大規模な市場プレーヤーと一般参加者の相互作用が発生するチャート上のボリュームと価格動向の分析に基づいて、トレーダーが主要なサポート/レジスタンス レベル、ブレイクアウト ゾーン、エントリ ポイントを識別するのに役立ちます。 インジケーターは、長方形と矢印の形でパターンを視覚
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation.
Monitor your order
Eslam Mohamed Hassanein Hassan Aly
Advanced Lot & Profit Monitor PRO is a powerful MT5 indicator that provides real-time monitoring of your trading positions directly on the chart. It displays the number of orders, total lot sizes, and profit (including swap) for Buy and Sell positions separately, as well as the overall account performance. Designed with a clean and customizable interface, this tool helps traders stay in control of their exposure and risk at all times. Key Features: Real-time monitoring of open positions Sepa
Max Min Delta Indicator - Market Volume Imbalance Analysis Gain Deeper Insights into Market Volume Imbalance with Delta Analysis What is the Max Min Delta Indicator? The Max Min Delta Indicator is a powerful market volume analysis tool that visually represents maximum and minimum delta values using a histogram. It helps traders identify market strength, weakness, absorption, and aggressive buying/selling activity with precision. Key Features Histogram Visualization: Displays Max Delta (Green) an
フラットとトレンドを決定するための指標。 価格が2つのヒストグラムと2つの線(赤と青)のいずれかを下回っている場合、これは売りゾーンです。 このバージョンのインジケーターを購入するときは、1つの実際のアカウントと1つのデモアカウント用のMT4バージョン-ギフトとして(受け取るには、プライベートメッセージを書いてください)! 価格が2つのヒストグラムと2つの線(赤と青)のいずれかを上回っている場合、これは購入ゾーンです。 MT4バージョン: https//www.mql5.com/en/market/product/3793 価格が2つの線の間、またはいずれかのヒストグラムのゾーンにある場合、市場に明確な傾向はありません。簡単に言えば、市場は横ばいです。 インジケーターの動作は、スクリーンショットでより明確に示されています。
The market is unfair if only because 10% of participants manage 90% of funds. An ordinary trader has slim changes to stand against these "vultures". This problem can be solved. You just need to be among these 10%, learn to predict their intentions and move with them. Volume is the only preemptive factor that faultlessly works on any timeframe and symbol. First, the volume appears and is accumulated, and only then the price moves. The price moves from one volume to another. Areas of volume accumu
Introducing PivotWave – your ultimate trading companion that redefines precision and market analysis. Designed with traders in mind, PivotWave is more than just an indicator; it’s a powerful tool that captures the pulse of the market, identifying key turning points and trends with pinpoint accuracy. PivotWave leverages advanced algorithms to provide clear visual signals for optimal entry and exit points, making it easier for traders to navigate volatile market conditions. Whether you are a begin
Basic Support and Resistance   インジケータは、テクニカル分析を強化するために必要なソリューションです。このインジケータを使用すると、チャートにサポートレベルとレジスタンスレベルを投影できます/ mt4バージョン 機能 フィボナッチレベルの統合: サポートと抵抗レベルとともにフィボナッチレベルを表示するオプションを使用すると、私たちの指標は市場行動と逆転領域の可能性についてさらに深い洞察を提供します。 パフォーマンスの最適化: 各バーの開口部のみで拡張ラインを更新するオプションを使用すると、インジケータは、サポートレベルと抵抗レベルの精度を犠牲にすることなく最適なパフォーマンスを保証します。 入力 メイン設定 Timeframe:  この入力を通じて、より高い時間枠のサポートラインとレジスタンスラインをチャート上に表示することを選択できます。 Support/Resistance Strength [Number of Bars]:   この入力を使用して、サポートと抵抗の強度を決定できます。数が高いほど、サポート/抵抗がより強くなります。 Pric
Gioteen Volatility Index (GVI) - your ultimate solution to overcoming market unpredictability and maximizing trading opportunities. This revolutionary indicator helps you in lowering your losing trades due to choppy market movements. The GVI is designed to measure market volatility, providing you with valuable insights to identify the most favorable trading prospects. Its intuitive interface consists of a dynamic red line representing the volatility index, accompanied by blue line that indicate
Before installing the HeatMap indicator make sure you are using a broker that gives you access to the Depth of market (DOM) !! This indicator creates a heatmap on your chart allowing you to see the buy or sell limit orders easily and in real time. You have the possibility to change the setting and the colors of the HeatMap in order to adapt to all markets and all charts. Here is an example of a setting you can use with the NASDAQ100 on the AMPGlobal broker :  https://www.youtube.com/watch?v=x0Y
Stratos Pali Indicator is a revolutionary tool designed to enhance your trading strategy by accurately identifying market trends. This sophisticated indicator uses a unique algorithm to generate a complete histogram, which records when the trend is Long or Short. When a trend reversal occurs, an arrow appears, indicating the new direction of the trend. Important Information Revealed Leave a review and contact me via mql5 message to receive My Top 5 set files for Stratos Pali at no cost ! Down
Cumulative Volume Delta (CVD) MA-X:インテリジェント・オーダーフロー・センチメントツール Cumulative Volume Delta (CVD) MA-X で、市場の隠れたメカニズムを解き明かしましょう。標準的な出来高指標は「どれだけ」取引されたかを示すだけですが、CVD MA-X は「 誰が 」買い手と売り手の攻防に勝っているのか、そして「 いつ 」それが起きているのかを明らかにします。ティックレベルの値動きと出来高分布を統合することで、市場の確信度と枯渇状態を極めて明確に描き出します。 トレーダーの優位性:なぜ CVD MA-X なのか? 多くのトレーダーが失敗するのは、価格の遅行性に反応してしまうからです。CVD MA-X は、ローソク足の内部圧力(ヒゲと実体の比率)を出来高で加重分析することで、 先行的な優位性 を提供します。リアルタイムで以下の3つの重要な問いに答えます: この動きは「本物の資金」に裏打ちされているか? (CVDとゼロラインの連動) トレンドの勢いが衰えていないか? (MaxBuy/MaxSell 枯渇ポイント) 大口投
Volume Profile Canvas - Professional Volume Profile Indicator for MetaTrader 5 DESCRIPTION Volume Profile Canvas is a professional volume profile indicator for MetaTrader 5 that renders directly on the chart using a high-performance Canvas engine. It calculates and displays the volume distribution across price levels, identifying the Point of Control (POC), Value Area High (VAH) and Value Area Low (VAL) in real time. This is a pure analysis tool. It does not trade. It gives you an instant vi
VOLUME PROFILE SAF-XII MT5専用プロフェッショナル・マーケットプロファイル分析ツール(グリッドトレードに最適な「ドリーム・インジケーター」) ボリュームプロファイル(価格帯別出来高)とは? ボリュームプロファイルは、従来の「時間軸」の出来高とは異なり、「特定の価格帯」での取引活動を表示するプロ仕様のツールです。選択した期間内の「どこで」取引が行われたかを可視化し、以下のポイントを特定します: バリューエリア (VAH/VAL) :全取引の大部分が行われた価格帯。 ポイント・オブ・コントロール (POC) :最も出来高が集中した単一の価格水準。 リクイディティ・イムバランス :各価格帯における強気(買い)と弱気(売り)の優劣。 サポレジ(支持・抵抗) :実際の取引活動に基づいた自然な価格水準。 3つの動作モード — 「設定したらあとはお任せ」 VP_MANUAL(スイングトレード・重要ライン分析) 垂直ラインをドラッグして分析範囲を手動で設定。 ラインを動かした時のみ再計算されるため軽量。 用途 :指標発表前分析、決算発表、特定の期間分析。 VP_AUTO(スキ
Gold Trend - これは優れた株価テクニカル指標です。指標のアルゴリズムは、資産の値動きを分析し、ボラティリティと潜在的なエントリーゾーンを反映しています。 最高の指標シグナル: - 売りの場合 = 赤のヒストグラム + 赤のショートポインター + 同じ方向に黄色のシグナル矢印 + 赤色のトレンド方向矢印 。 - 買いの場合 = 青のヒストグラム + 青のロングポインター + 同じ方向の水色のシグナル矢印 + 青色のトレンド方向矢印 。 インジケータの利点 1. このインディケータは、高い精度でシグナルを発信します。 2. 確定した矢印シグナルは、トレンドが変化したときにのみ再描画されます。 3. どのブローカーのMetaTrader 5取引プラットフォームでも取引できます。 4. あらゆる資産(通貨、金属、暗号通貨、株式、指数など)を取引できます。 5. M15-H1タイムフレーム(中期取引)で取引するのがよい。 6. 各トレーダーがインディケータを自分用に簡単にカスタマイズできるよう、インディケータ設定で個々のパラメータ(TF、色など)を変更できます。 7.
Short Description: SMC Smart Flow Pro is an advanced Smart Money Concept indicator that automatically detects Break of Structure (BOS), Change of Character (CHoCH), and projects precise TP/SL target levels on all timeframes — built for serious traders who trade with institutional flow. Full Description: SMC Smart Flow Pro is a premium Smart Money Concept (SMC) indicator for MetaTrader 5, engineered for traders who want to trade alongside institutional order flow. By automatically mapping m
What Is Trend Master Pro? Trend Master Pro   is a professional-grade trend trading indicator built for MetaTrader 5. It was designed with one goal in mind — to keep you on the right side of the market at all times by combining three powerful technical tools into a single, clean, easy-to-read display directly on your price chart. Instead of cluttering your screen with multiple separate indicators, Trend Master Pro fuses an   EMA Ribbon trend filter , a   ZigZag swing point engine , and a   breako
ALIEN DASHBOARD FULL EDITION – Professional ICT & Precision Trading Dashboard for MT5 ( HYBRID ENGINE ) Overview The   Alien Dashboard Full Edition   is a comprehensive, all‑in‑one technical indicator for MetaTrader 5 that merges the most powerful concepts from Inner Circle Trader (ICT) methodology with advanced precision‑entry logic, multi‑timeframe analysis, and an intuitive on‑chart dashboard. Designed for serious traders who want to visualise institutional order flow, identify high‑probabili
Crash 1000 Scalping Indicator for the Crash 1000 Deriv Synthetic Index. Introduction The Crash 1000 Scalping Indicator is a specialized tool designed for the Crash 1000 index on the Deriv Synthetic market. This indicator is particularly useful for scalping on the M1 timeframe, helping traders to identify precise entry and exit points for buy positions. It is designed to be non-repainting, providing clear signals with audible alerts and push notifications, and is compatible with mobile devices th
DYJ BoS インジケーターは、次のような市場構造の変化の主な要素を自動的に識別してマークします。 構造のブレイクアウト (BoS): 価格が大きく変動し、構造の前のポイントを突破したときに発生します。 彼は上昇トレンドと下降トレンドの可能性のあるライン(UP と DN、つまり連続した新高値と新安値)をマークし、価格がこれらのラインを突破すると、赤(弱気)と緑(強気)の矢印でマークします。 BoS は通常、価格が以前の価格変動によって確立されたスイング安値または高値を決定的に突破したときに発生します。価格がスイング高値を上回ったりスイング安値を下回ったりすると、単に以前に形成された市場構造から抜け出すだけなので、「ブレイクアウト」構造と呼ばれます。これは多くの場合、市場センチメントとトレンドの方向の変化を示し、既存のトレンドの継続または新しいトレンドの始まりを示唆します。 ポジションのクローズの精度を高めるために、通常はストップロスとテイクプロフィットを設定しないことが推奨されます。最終ポジションは通常、同じ方向の次のブレイクスルー ポイント、または反対方向のブレイクスルー
DAILY OH/OL SDEV QUANT MODEL - STATISTICAL TRADING WITH PRECISION RISK MANAGEMENT TRADE WITH MATHEMATICAL CERTAINTY - KNOW YOUR EXACT STOP-LOSS AND TAKE-PROFIT BEFORE YOU ENTER This indicator analyzes 5,000+ days of price history to give you: Exact entry levels (sigma bands locked at daily open) Exact stop-loss distance (from M
This indicator allows you to enjoy the two most popular products for analyzing request volumes and market deals at a favorable price: Actual Depth of Market Chart Actual Tick Footprint Volume Chart This product combines the power of both indicators and is provided as a single file. The functionality of Actual COMBO Depth of Market AND Tick Volume Chart is fully identical to the original indicators. You will enjoy the power of these two products combined into the single super-indicator! Below is
Japanese このインジケーターは、チャートパターンでのトレードを好むトレーダーにとって、高度なチャート分析アシスタントとして機能します。目視での分析負担を軽減し、利益を上げるための精度を高めるように設計されています。 実際の使用においての、このインジケーターの主な利点と特徴は以下の通りです: 1. 自動パターン検出 (Automated Pattern Detection) 時間の節約とバイアスの軽減: 手動でトレンドラインを引く必要はありません。価格のスイングポイント(Pivot High/Low)を検索し、価格構造が条件を満たすと、ライジングウェッジ(上昇楔形)とフォーリングウェッジ(下降楔形)を自動的に描画します。 あらゆる状況を網羅: パターン形成中、ブレイクアウト、さらにはパターン失敗(Failed)まで検出でき、市場の全体像を明確に把握できます。 2. ターゲットとフィボナッチTPの内蔵 (Built-in Targets & Fibonacci TP) ターゲットを自動計算: ブレイクアウトが発生すると、システムはウェッジの開き幅に基づいてメインターゲットの距離を即
PipFinite Exit EDGE MT5
Karlo Wilson Vendiola
4.88 (32)
Did You Have A Profitable Trade But Suddenly Reversed? In a solid strategy, exiting a trade is equally important as entering. Exit EDGE helps maximize your current trade profit and avoid turning winning trades to losers. Never Miss An Exit Signal Again Monitor all pairs and timeframes in just 1 chart www.mql5.com/en/blogs/post/726558 How To Trade You can close your open trades as soon as you receive a signal Close your Buy orders if you receive an Exit Buy Signal. Close your Sell orders if
Indicator gives an honest picture of changes in breakeven levels for transactions throughout the account history, and not just for open positions (screenshot 1). Accurate calculation of levels, taking into account accrued commissions, fees and swaps, allows you to evaluate trading results both visually and in Expert Advisors (screenshot 2). For Expert Advisors, the indicator in its standard form provides not only the break-even level, but also the number of positions, volume, and all additional
このプロダクトを購入した人は以下も購入しています
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
SignalTech is an unique fully rule based trading system delivers an Institutional approach for both Independent Traders and Prop Firm Challengers. Never Repaint. Push Notification available. No over-optimization. All the winning trades with chart setups are published on the comments page. 2026-05 4107 Pips (Until 05-29 NY Closed) 2026-04 2243 Pips 2026-03 2165 Pips 2026-02 2937 Pips 2026-01 2624 Pips 2025-12 1174 Pips It can generate signals with Buy/Sell Arrows, Push Notification (To Mobile) an
PrimeScalping is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates — all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or e
UZFX {SSS} スキャルピング・スマートシグナル MT5は、変動の激しい市場において正確かつリアルタイムのシグナルを求めるスキャルパー、デイトレーダー、スイングトレーダー向けに設計された、リペイントしない高性能な取引インジケーターです。(UZFX-LABS)によって開発されたこのインジケーターは、価格行動分析、トレンド確認、スマートフィルタリングを組み合わせることで、すべての通貨ペアおよび時間軸において、高確率の売買シグナルを生成します。 推奨* 最適な時間足:15分足以上。 {1時間足}が私のお気に入りです。そして、その成果は驚くべきものです...! 注:{ LTL 164343 }インジケーターと組み合わせることで、シグナルの勝率を高めることができます。 LTLシグナルでトレンドを判断し、SSSシグナルをエントリーシグナルとして活用してください。 このアプローチにより勝率が最大化され、誤ったシグナルの発生を防ぐことができます。 主な機能 スマートシグナル検出 – 強力なトレンド反転や継続パターンを正確に特定します。 マルチタイムフレーム・スキャルピング – すべての時間
SmartScalping is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates — all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or e
ARIPoint
Temirlan Kdyrkhan
1 (1)
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
この製品は 2026 年の市場向けに更新され、最新の MT5 ビルドに最適化されています。 価格更新のお知らせ: Smart Price Action Concepts は現在 $200 で提供されています。 次の 30 件の購入 後、価格は $299 に上がります。 特別オファー: 購入後、私にプライベートメッセージを送ることで、 無料ボーナス + ギフト を受け取ることができます。 まず、このトレーディングツールはリペイントなし、再描画なし、遅延なしのインジケーターであり、プロフェッショナルな取引に最適であることを強調しておきます。 Online course , and manual Smart Price Action Concepts Indicator は、初心者から経験豊富なトレーダーまで使える非常に強力なツールです。20 種類以上の便利なインジケーターを 1 つにまとめ、Inner Circle Trader Analysis や Smart Money Concepts Trading Strategies などの高度な取引アイデアを組み合わせています。このインジケ
MasterTrend Indicator for MT5 A powerful trend-following and signal-evaluation tool MasterTrend   is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking wit
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2:MT5向けシンセティック・フラクタル構造分析と確認済みエントリー 概要 Azimuth Pro は Merkava Labs によるマルチレベルスイング構造インジケーターです。4つのネストされたスイングレイヤー、スイングアンカーVWAP、ABCパターン検出、3タイムフレーム構造フィルタリング、そして確定バーでの確認済みエントリー — 1つのチャートで、ミクロスイングからマクロサイクルまでを網羅するワークフロー。 これはブラインドシグナル製品ではありません。ロケーション、コンテキスト、タイミングを重視するトレーダーのための構造ファーストワークフローです。 V2発売記念オファー — Azimuth Pro V2をUSD 399で(次の100本)。最終価格:USD 499。 1. V2での変更点 シンセティック・マルチタイムフレームエンジン 上位タイムフレーム分析をMeridian Proと同じ独自のシンセティックアーキテクチャで一から再構築。よりクリーンなHTFコンテキスト、安定したライブ動作、従来のMTF同期問題なし。シンセティックエンジンは 固定比率タ
ScalpPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates — all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or emai
RelicusRoad Pro: 定量的市場オペレーティングシステム 【期間限定】無制限アクセス 70% OFF - 2,000人超のトレーダーと共に なぜ多くのトレーダーは「完璧な」インジケーターを使っても失敗するのでしょうか? それは、文脈を無視して 単一の概念 だけでトレードしているからです。文脈のないシグナルは単なるギャンブルです。勝ち続けるには、 根拠の重なり(コンフルエンス) が必要です。 RelicusRoad Proは単なる矢印インジケーターではありません。完全な 定量的市場エコシステム です。独自のボラティリティモデリングを用いて、価格が推移する「適正価値の道(Fair Value Road)」をマッピングし、ノイズと真の構造的ブレイクを判別します。 推測はやめましょう。機関投資家レベルの「ロード・ロジック」でトレードを。 コアエンジン:「Road」アルゴリズム システムの中心となる Road Algo は、市場環境にリアルタイムで適応するダイナミックなボラティリティチャネルです。 安全ライン(平衡点) と、価格が数学的に反転しやすい 拡張レベル を投影します。 Si
マーケットメーカーのためのツール。 Meravith は次の機能を提供します: すべての時間足を分析し、現在有効なトレンドを表示します。 強気と弱気の出来高が等しくなる流動性ゾーン(出来高均衡)を強調表示します。 異なる時間足のすべての流動性レベルをチャート上に直接表示します。 テキスト形式の市場分析を生成し、参考情報として表示します。 現在のトレンドに基づいて目標値、サポートレベル、ストップロスを計算します。 取引のリスクリワード比を算出します。 口座残高に基づいてポジションサイズを計算し、潜在的な利益を推定します。 また、市場に大きな変化があった場合には警告を表示します。 インジケーターの主要ライン: 強気/弱気の出来高エグゾーストライン ― 目標値として機能します。 市場のトレンドを示すライン。市場が強気か弱気かによって色が変わり、トレンドのサポートとして機能します。主にその色が市場センチメントを示します。 出来高均衡ライン(Eq)。Eq(Volume Equilibrium)ラインはシステムの中核です。これは買い手と売り手の出来高のバランスポイントを表します。市場の流動性を示し
MasterTrend Indicator for MT5 A powerful trend-following and signal-evaluation tool MasterTrend   is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking wit
MetaForecast M5
Vahidreza Heidar Gholami
5 (3)
MetaForecastは、価格データのハーモニクスに基づいて、どんな市場の未来を予測し視覚化します。市場が常に予測可能ではありませんが、価格にパターンがある場合、MetaForecastは可能な限り正確な未来を予測できます。他の類似製品と比較して、MetaForecastは市場のトレンドを分析することでより正確な結果を生成することができます。 入力パラメータ Past size (過去のサイズ) MetaForecastが将来の予測を生成するために使用するバーの数を指定します。モデルは選択したバー上に描かれた黄色の線で表されます。 Future size (将来のサイズ) 予測すべき将来のバーの数を指定します。予測された将来は、ピンクの線で表示され、その上に青い回帰線が描かれます。 Degree (程度) この入力は、MetaForecastが市場で行う分析のレベルを決定します。 Degree 説明  0 Degree 0の場合、価格の全てのピークや谷、そして詳細をカバーするために、「Past size」の入力に大きな値を使用することが推奨されています。  1 (推奨) Degre
多くの矢印インジケーターは、シグナルだけを表示して、その後の判断をすべてトレーダーに任せてしまいます。KT Alpha Hunter Arrows は、完整なトレードプランをチャート上に提示します。 各シグナル矢印が表示されるたびに、エントリーライン、ストップロス、4つのテイクプロフィット水準、そして現在の銘柄と時間足が今トレードに値するかどうかを示すリアルタイムのエッジ判定が、すでに描画された状態で表示されます。付属の Trade Manager EA は、あなたが手動でエントリーした後の実行管理を担当し、相場が荒れて判断がぶれやすい場面でも規律あるトレードを保ちやすくします。リペイントなし。確定足シグナルのみ。Forex、ゴールド、指数、その他あなたが取引するあらゆる銘柄に対応します。 主な機能 リペイントしない買い矢印と売り矢印を、足の確定後にのみ表示。 各シグナルに、エントリーライン、構造的ストップロス、4つのテイクプロフィット水準を表示。 Edge Dashboard が、現在のチャートで買いセットアップと売りセットアップを別々に評価。 判定システム:No Edge、Mar
ARICoin is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cust
OmniSync Projection
Antonio-alin Teculescu
5 (1)
Chronos Fractal Engine is an innovative price projection indicator for MetaTrader 5, designed to transform your technical analysis by intelligently identifying and projecting historical price patterns. Built upon an advanced correlation algorithm and the fractal principles of the market, this powerful tool visualizes potential future price movements, giving you a unique edge in your trading decisions. What is Chronos Fractal Engine? At its core, the Chronos Fractal Engine employs a sophisticat
AriX
Temirlan Kdyrkhan
1 (4)
AriX Indicator for MT5 A powerful trend-following and signal-evaluation tool AriX is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking with real-time stat
GEM Signal Pro GEM Signal Pro は、MetaTrader 5 向けのトレンドフォロー型インジケーターです。より明確なシグナル、より整理されたトレードセットアップ、そして実用的なリスク管理をチャート上で確認したいトレーダーのために設計されています。 単純な矢印だけを表示するのではなく、GEM Signal Pro はトレード全体の考え方を、より見やすく分かりやすい形で表示します。条件が確認されると、インジケーターはエントリー価格、ストップロス、利確目標をチャート上に表示し、トレードセットアップをより効率的に確認できるようにします。 動作の仕組み このインジケーターは、まず内部ロジックに基づいて有効なシードシグナルを検出します。 確認条件が満たされると、GEM Signal Pro はチャート上に完全なセットアップを表示します。これにより、トレーダーはトレード構造をより明確に把握し、手作業による分析を減らすことができます。 チャート上のトレードレベル 確認済みシグナルに対して、GEM Signal Pro は以下を表示できます。 エントリー価格 ストップロス テ
Presenting one-of-a-kind Gann Indicator for XAUUSD IQ Gold Gann Levels is a non-repainting, precision tool designed exclusively for XAUUSD/Gold intraday trading. It uses W.D. Gann’s square root method to plot real-time support and resistance levels, helping traders spot high-probability entries with confidence and clarity. William Delbert Gann (W.D. Gann) was an exceptional market analyst whose trading technique was based on a complex blend of mathematics, geometry, astrology, and ancient calcul
The Zain GOLD indicator
Haitham Gamal Abdelnaser Mohamed
Specializing in (All brokers supported): Professional Trading Tools Want the same tools used by professional traders? Get them now and start dominating the markets! Join our premium communities for free: Specializing in (All brokers supported): Gold (XAUUSD) - Unmatched accuracy Forex Pairs - Comprehensive global market coverage Binary Options - Highly accurate signals ️ Synthetic Derivatives - Trade pairs using Drive Cryptocurrencies - Professional cryptocurrency trad
CGE Trading Suite
Carl Gustav Johan Ekstrom
5 (2)
Institutional-Grade Analytics for MT5 C GE Trading Suite delivers the analytical edge typically reserved for professional trading desks. The platform integrates a full suite of analytical tools into one seamless workflow: dynamic grid mapping, liquidity behavior analysis, ECM, trend lines, MIDAS, trade cycles, and directional channel projections. Together, these provide a unified view of market structure and momentum. Directional clarity is further enhanced by the capital flow index, which meas
Ziva LSE System
Hassan Abdullah Hassan Al Balushi
ZIVA LSE System A Professional Liquidity & Structure Execution Framework Executive Overview ZIVA LSE System is a professionally engineered analytical framework designed to interpret market behavior through structural logic and liquidity dynamics. It is not positioned as a conventional indicator. Rather, it functions as a structured execution environment that organizes price action into a clear, disciplined decision-making model. The system is built to deliver consistency, clarity, and controlled
Brandon Angelo Flag Pattern — how it works This indicator automatically detects classic bull and bear flag chart patterns in real time. The detection happens in three stages for each bar. First it looks for a flagpole — a sharp, strong directional move over a configurable number of bars ( FlagpoleBars , default 5) that must exceed a minimum percentage size ( FlagpoleMinPct ). For a bullish flag the pole must close net higher than it opened; for a bearish flag, net lower. Second it identifies th
First time on MetaTrader, introducing IQ Star Lines - an original Vedic Astrology based indicator. "Millionaires don't use astrology, billionaires do" . - J.P. Morgan, Legendary American financier and banker. Welcome to  the new and updated  IQ Star Lines , the ultimate fusion of ancient planetary harmonic cycles and modern quantitative trading. published for the   first time on Metatrader. This is an indicator built by the developer, who has spent almost 2 decades trading while studying Vedic
The Propfolio Master Suite is the ultimate all-in-one analytical workstation for professional traders. Combining the power of the Beat The Market Maker (BTMM) methodology, Smart Money Concepts (SND/Liquidity), and Advanced Volume Profile, this suite replaces multiple different indicators with one optimized engine. Monitor up to 14 pairs simultaneously from a single chart, instantly identify market cycles, and seamlessly map institutional footprints with the click of a button. The Command Center
The AX Forex Indicator MT5 is a sophisticated trading tool designed to provide traders with a comprehensive analysis of multiple currency pairs. This   powerful indicator   simplifies the complex nature of the forex market, making it accessible for both novice and experienced traders. AX Forex Indicator uses   advanced algorithms   to detect trends, patterns and is an essential tool for traders aiming to enhance their forex trading performance. With its robust features, ease of use, and reliabl
Euro Escalper
Cristofher Robles
5 (1)
Euro Escalper — Puro no Kikan Toshi Sukyarupingu Injikeeta Euro Escalper wa, subete no entori de kikan toshi reberu no seido wo motomeru toreedaa no tame ni sekkei sareta kooseinou torihiki injikeeta desu. Gousei Shisuu (Deriv), Forex, oyobi MetaTrader 5 de riyou kanou na subete no shisan de kinoushimasu. Fibonacci beisu no ryuudousei zoon, naizou SuperTrend enjin, oyobi riaru taimu no purofesshonaru dasshubooddo wo kumiawasemasu. Shuyo na Riten Sai Egaki Nashi: Shingou yajirushi wa rousoku ashi
Big Player Range
Thalles Nascimento De Carvalho
5 (3)
BigPlayerRange — MT5向け最強インジケーター BigPlayerRange は、MetaTrader 5 で日経ミニやドル先物などの取引において、 最も効果的なインジケーター と評価されています。大口投資家(機関投資家)の行動を可視化し、高精度なテクニカル分析を可能にします。 どのように機能するのか? BigPlayerRangeは、買い圧力ゾーン(緑ライン)と売り圧力ゾーン(赤ライン)を描画し、価格がその範囲を超えるとトレンド方向への動きを示唆します。 緑のライン上で終値: 買いの勢いが強く、上昇トレンドの可能性。 赤のライン下で終値: 売り圧力が優勢で、下落が予想される。 範囲内での価格: レンジ相場でブレイクを待つ段階。 主なメリット: 機関投資家ゾーンの検出: 大口のエントリーポイントを視覚化。 自動ターゲット計算: 利確ポイントを戦略的に設定。 プルバックの可能性分析: リスク管理に役立つ情報提供。 推奨の使い方: Imbalance DOM Pro と併用してゾーンブレイクを確認。 SwingVolum
【特別限定価格】リリース記念セール実施中! 現在、開発完了を記念して 今だけの特別価格 で公開しています。一定数の販売、または期間終了後は予告なく通常価格へ引き上げます。プロ仕様の環境を最安値で手に入れる絶好のチャンスをお見逃しなく。 Quasar Edge & Dual Dashboard 〜 28通貨ペアの「混沌」を「利益の確信」へ変える、MT5究極の環境認識システム 〜 多くのトレーダーが負ける理由は、インジケーターの性能ではありません。「ノイズに惑わされ、優位性のない場所で戦っているから」です。 Quasar Edge(クエーサー・エッジ) は、相場の不変の真理である「ダウ理論」を軸に、全28通貨ペアの「強弱」と「爆発力」をリアルタイムで解析。あなたが戦うべき 「最強の1枚」を、迷う余地なく突きつけます。 Quasar Edge 4つの絶対的優位性 王道にして最強「ダウ理論」ベースのロジック 相場の基本である「高値・安値の切り上げ/切り下げ」を自動計算。長期足と短期足が同じ方向を向いた「勝つべくして勝てるポイント(SYNC)」を、逃さずあなたに提示します。 独
作者のその他のプロダクト
Phantom Flow
Mahmoud Ahmed Abdou Ali
5 (1)
This indicator is a hybrid SMC + Trend + Oscillator tool that draws market-structure objects on the chart and also plots trend shift lines + arrows and a colored oscillator histogram. It includes these modules: Phantom Shift (ATR trend shift / trailing bands) Swing Structure (BOS/CHoCH + swing points) Internal Structure (iBOS/iCHoCH) Order Blocks (swing + internal) Equal Highs / Equal Lows (EQH / EQL) Fair Value Gaps (FVG) Premium / Discount zones (range zones) Phantom Oscillator (MA
FREE
Candle color RSI (Relative Strength Index) indicators change candlestick colors on the price chart to visually show RSI conditions like overbought/oversold levels or bullish/bearish momentum, using colors like red for overbought/bearish and green for oversold/bullish, helping traders spot reversals or strength at a glance without looking at the separate RSI pane. These custom indicators often color candles red above 70 (overbought), green below 30 (oversold), and keep default colors in between
FREE
Institutional QQE Oscillator (IQO) Description The Institutional QQE Oscillator (IQO) is a "momentum volatility" filter. Unlike a standard RSI which is jagged and noisy, the QQE uses a smoothing technique and a "Volatility Stop" mechanism (the yellow dotted line) on the RSI itself. Blue Line (Fast): The Smoothed RSI momentum. Yellow Dotted Line (Slow): The Volatility Threshold. Signal: When the Blue line crosses the Yellow line, it indicates a shift in true momentum, filtering out fake-outs. How
FREE
Here is the full technical and strategic description for the Gann Square of 9 indicator. Full Name Gann Square of 9 - Intraday Levels (v2.0) Overview This is a mathematical Support & Resistance indicator based on W.D. Gann's "Square of 9" theory. Unlike moving averages which lag behind price, this indicator is predictive . It calculates static price levels at the very beginning of the trading day (based on the Daily Open) and projects them forward. These levels act as a "road map" for the day,
FREE
Description The Institutional Cycle Filter (ICF) is a sophisticated trend-following tool that replaces standard moving averages with a "Signal Dot" system. It is designed to minimize lag while maintaining smoothness, making it highly effective for identifying trend reversals in volatile markets like Gold. How It Works (The Logic) Cosine Weighting: Unlike a Simple Moving Average (SMA) or Exponential Moving Average (EMA), this algorithm uses a Cosine function to calculate weights. This allows the
FREE
Here is the full professional description for your indicator, rebranded as Institutional Trend Candles (ITC) . You can use this text for your Market documentation, user manual, or simply to understand exactly how your tool functions. Institutional Trend Candles (ITC) v1.0 Overview Institutional Trend Candles (ITC) is a specialized trend-following system designed to filter out "retail noise" and visualize the true directional flow of the market. Built specifically for high-volatility assets like
FREE
Supply and demand in trading describes how buyer (demand) and seller (supply) actions set asset prices, with high demand/low supply raising prices (premium) and low demand/high supply lowering them (discount); traders identify these imbalances as "zones" on charts (e.g., Rally-Base-Rally for demand, Drop-Base-Drop for supply) to find potential entry/exit points, aiming to buy at discount demand zones and sell at premium supply zones, using volume and price action to confirm institutional acti
FREE
Accurate Signal Pro
Mahmoud Ahmed Abdou Ali
3 (2)
Accurate Signal ARC is a non-repainting trend & reversal signal indicator designed for MT4 . It uses ATR-weighted volatility logic combined with adaptive price channels to detect high-probability BUY and SELL points directly on the chart. How It Works Calculates a dynamic volatility channel using weighted ATR Detects trend direction (river state) and switches only when price decisively breaks the channel Filters noise using spread-aware true range Draws clear arrows : Lime Arrow → BUY si
FREE
MA Ribbon
Mahmoud Ahmed Abdou Ali
The MA ribbon is not a single indicator but rather an overlay of multiple moving averages (typically four to eight or more) of varying lengths plotted on the same price chart.  Visual Appearance: The resulting lines create a flowing, ribbon-like pattern across the price chart. Components: Traders can use different types of moving averages, such as Simple Moving Averages (SMA) or Exponential Moving Averages (EMA), and adjust the time periods (e.g., 10, 20, 30, 40, 50, and 60 periods) to suit t
FREE
Indicator: The DEMA MACD Zone Divergence This is a powerful, multi-timeframe trend-following indicator based on the Moving Average Convergence Divergence (MACD) , but enhanced using Double Exponential Moving Averages (DEMA) for reduced lag. Its main function is to paint the background of the price chart with color-coded rectangular zones, clearly signaling the current momentum phase and potential shifts in market control (bullish or bearish). Core Purpose To visually map the strength and phas
FREE
The best eveR
Mahmoud Ahmed Abdou Ali
Indicator Name: "The Range Master" Core Purpose The Range Master is an advanced, multi-timeframe technical indicator designed to identify market consolidation (sideways ranging) and subsequent high-momentum breakout opportunities. It helps traders visually confirm when price action transitions from low-volatility accumulation to high-volatility trend initiation. ️ Functional Description (What it Does) The Range Master performs three primary, interconnected functions: Range Mapping , Breakout
FREE
Footprint MT5
Mahmoud Ahmed Abdou Ali
Footprint charts in MetaTrader 5 (MT5) provide traders with a detailed view of market activity, allowing for better analysis of price movements and trading decisions. What is a Footprint Chart? A footprint chart is a specialized visualization tool that displays market data beyond traditional candlestick or bar charts. It reveals how volume was distributed at each price level within a specific time frame, often segmented by bid and ask activity. This level of detail helps traders understand the
MM Ultimate Pro Analyzer v10.0 - USER GUIDEBASIC USAGEStep 1: Add to Chart Open any chart in MetaTrader 5 Go to Navigator → Indicators Find MM Ultimate Pro Analyzer Drag it onto your chart A settings window will appear Step 2: Configure for Your Timeframe Choose settings based on what you trade: Timeframe NumberOfCandles VolumeAveragePeriod M1-M5 (Scalping) 10-20 50 M15-M30 (Day Trading) 5-10 30 H1-H4 (Swing Trading) 3-7 20 D1+ (Position Trading) 3-5 14 Step 3: Understand the Button Bar At the t
TradePanel Pro Indicator Testing & Trading Simulator Core Purpose (Clear & Honest) TradePanel Pro is a manual trading simulator designed to test indicators, signals, and strategies in real market conditions — without relying on automated logic. You see the signal → you click → you evaluate the result . What TradePanel Pro Is (Correct Positioning) Manual BUY / SELL execution panel Layered entries (multi-order testing) Real-time TP / SL behavior Trailing stop simulation Profit /
Quantitative Session Breakout Profiler & Data Miner Executive Summary: The "London Hunter v18.0" is not merely a buy/sell signal indicator; it is a statistical data mining engine . Its core idea is that market openings (London, NY, Asia) are not random, but distinct "micro-regimes." By measuring the specific "physics" of price movement (speed, pullback, candle size) during these opening windows, the system identifies which specific conditions lead to successful breakouts and which lead to fakeou
Institutional Physics Engine (IPE) v4.20 Market Structure, Liquidity & Valuation Diagnostic System WHAT THIS TOOL IS Institutional Physics Engine (IPE) is a real-time market diagnostics indicator that analyzes price using behavioral physics, liquidity response, supply & demand pressure, and equilibrium valuation. It does not predict price and does not generate blind buy/sell signals. Instead, it answers three professional trading questions: Where is fair value right now? Who is in con
Universal Strategy Validator: Turn Any Indicator into a Backtested Strategy Headline: Stop guessing if an indicator works. See the win rate, profit factor, and drawdown instantly—without writing a single line of code. Overview: The Universal Strategy Validator (USV) is a powerful analytical engine that connects to any MetaTrader 5 indicator. It reads the signal buffers (arrows, lines, or histograms) and runs a real-time simulation across historical data. It applies professional-grade filtering,
Candle Density Boxes Indicator  Summary The Candle Density Boxes (CDB) indicator is an algorithmic tool that identifies price zones where candles cluster with high frequency. Through empirical analysis, we demonstrate that these zones exhibit statistically significant mean-reversion properties, with return frequencies ranging from 76–80% across multiple instruments. Key Findings: Zones with 6+ candle touches show 90%+ return probability Rank-based hierarchy provides clear reliability classifica
Summary (What Changed & Why It Matters) Traditional FVG indicators suffer from three structural flaws : Detection and mitigation are coupled Wicks and bodies are treated identically Partial mitigation is not preserved This indicator introduces a new FVG model where: Detection ≠ Mitigation Wick interaction ≠ Body acceptance FVGs decay progressively , not instantly This transforms FVGs from a static drawing tool into a dynamic price-acceptance model .
MATRIX OSCILLATOR - Summary Guide WHAT IS IT? A multi-component oscillator that combines: Smart Money Flow (MFI-based histogram) Net Score (Trend strength from -100 to +100) Signal Line (Crossover reference) Confluence Zones (Confirmation areas) PhiSmoother Technology (Advanced noise filtering) STRONG BUY SIGNALS Component Condition Confluence Green zone filled (top) Money Flow Green bars above zero MFI Threshold MFI above green threshold line Net Score
3D Intensity Balls with Volume Boost Indicator v1.4 A sophisticated MetaTrader 5 custom indicator that visualizes price-level trading intensity using dynamically-sized, photorealistic 3D spheres rendered on the chart canvas, enhanced with volume-based scaling and advanced visual effects. Core Functionality Price Distribution Analysis: Divides each candle's price range into configurable levels (default: 50) Samples tick data to measure time-at-price (price dwell intensity) Visualizes concentra
# All Trading Symbols Monitoring ## Version 9.43 | MT5 Indicator (Dual Mode) > An advanced multi-symbol trading monitor that watches all available broker symbols simultaneously, detects breakout opportunities, scores signal quality, and manages both paper and live trades - all displayed in a live on-chart dashboard. --- ## What This Tool Does - [ All Trading Symbols Monitoring ]( #all-trading-symbols-monitoring )   - [ Version 9.43 | MT5 Indicator (Dual Mode) ]( #version-943--mt5-indicator-
Lux Algo
Mahmoud Ahmed Abdou Ali
This system is a Self-Optimizing Algorithmic Framework . Unlike static indicators, it uses a Recursive Feedback Loop to "learn" the current market regime and adjust its sensitivity in real-time. Because it calculates every step based solely on current and past data, it is a Real-Time Model with no repainting, no bias, and no lookahead. How the "AI" Operates Performance-Based Learning: The system constantly "grades" its own accuracy. If the market is trending cleanly, it increases its sensitivit
フィルタ:
レビューなし
レビューに返信