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.

おすすめのプロダクト
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
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
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という非常に小さなマージンを使用します。
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
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.
DYJ BoS インジケーターは、次のような市場構造の変化の主な要素を自動的に識別してマークします。 構造のブレイクアウト (BoS): 価格が大きく変動し、構造の前のポイントを突破したときに発生します。 彼は上昇トレンドと下降トレンドの可能性のあるライン(UP と DN、つまり連続した新高値と新安値)をマークし、価格がこれらのラインを突破すると、赤(弱気)と緑(強気)の矢印でマークします。 BoS は通常、価格が以前の価格変動によって確立されたスイング安値または高値を決定的に突破したときに発生します。価格がスイング高値を上回ったりスイング安値を下回ったりすると、単に以前に形成された市場構造から抜け出すだけなので、「ブレイクアウト」構造と呼ばれます。これは多くの場合、市場センチメントとトレンドの方向の変化を示し、既存のトレンドの継続または新しいトレンドの始まりを示唆します。 ポジションのクローズの精度を高めるために、通常はストップロスとテイクプロフィットを設定しないことが推奨されます。最終ポジションは通常、同じ方向の次のブレイクスルー ポイント、または反対方向のブレイクスルー
Basic Support and Resistance   インジケータは、テクニカル分析を強化するために必要なソリューションです。このインジケータを使用すると、チャートにサポートレベルとレジスタンスレベルを投影できます/ mt4バージョン 機能 フィボナッチレベルの統合: サポートと抵抗レベルとともにフィボナッチレベルを表示するオプションを使用すると、私たちの指標は市場行動と逆転領域の可能性についてさらに深い洞察を提供します。 パフォーマンスの最適化: 各バーの開口部のみで拡張ラインを更新するオプションを使用すると、インジケータは、サポートレベルと抵抗レベルの精度を犠牲にすることなく最適なパフォーマンスを保証します。 入力 メイン設定 Timeframe:  この入力を通じて、より高い時間枠のサポートラインとレジスタンスラインをチャート上に表示することを選択できます。 Support/Resistance Strength [Number of Bars]:   この入力を使用して、サポートと抵抗の強度を決定できます。数が高いほど、サポート/抵抗がより強くなります。 Pric
Description: The Volume Profile displays detailed informations of historical trading activities at certain price levels (Market Profile). Locate the areas with the best prices in the market and get an advantage over other market participants. Features: Customizable Market Profile Shows the "fair" Value Area with 70% of all Volume Shows critical low volume zones Shows VPOC, VAL and VAH Points integrated resource management to reduce the load while working with multiple charts Works on all timefr
Advanced Trading Chaos  The main purpose of the indicator is to help the trader detect the signals described by Bill Williams in his books to make a quick and correct trading decision. 1)Bullish/Bearish Reversal Bar(BDB) 2) Divergent Bar(DB) 3) Second Sage Signal — the third consecutive Awesome Oscillator bar  4) Working fractals (Fractals that worked above/below the red forehead  5) Three bar coloring modes 5.1) Coloring of bars according to the AO indicator (Including the squatting bar) 5.2
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
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
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
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
RSI Currency Strength Meter is a powerful and elegant multi-currency indicator that measures the real-time relative strength of the 8 major currencies using RSI logic. By calculating the smoothed performance of each currency across its major pairs and applying the RSI formula, it delivers clean and responsive strength lines that make it easy to spot which currencies are truly strong or weak at any moment. This indicator is particularly useful for visualizing currency correlations and divergence
Daily Bias Indicator with Statistics and Dashboard Unlock the power of market bias analysis with the Multi-Timeframe Bias Indicator, a versatile tool designed for traders seeking a clear edge in the markets. This indicator provides actionable insights by displaying Daily Bias, Weekly Bias, and Custom Period Bias, enabling you to align your trades with the prevailing market direction across multiple timeframes and symbols. Key Features: Daily Bias Analysis: Identify the bullish, bearish, or neutr
TRI Visualizer Enhanced - 熱力学的市場分析の革命 概要 TRI(Thermal Range Indicator)Visualizer Enhanced は、従来のテクニカル分析を超越した、物理学の熱力学理論を応用した革新的なマーケット分析インジケーターです。市場の価格変動を「熱力学的エネルギー」として捉え、これまで見落とされていた市場の微細な変化を高精度で検出します。 革新的な仕組み 1. デュアル計算エンジン クラシックTRIモード 基本公式: |終値-始値| + (高値-安値) ローソク足の実体とヒゲを統合した純粋なボラティリティ測定 シンプルで直感的、あらゆる市場環境で安定動作 熱力学的TRIモード(独自開発) 価格加速度 :2次微分による価格変化の勢いを測定 出来高変化率 :相対的な出来高の変化を動的に評価 ポジションエネルギー :正規化された価格変動エネルギーを計算 熱力学的係数 :物理学の熱力学法則を市場分析に応用 2. 高度な平滑化システム SMA(単純移動平均) :基本的なノイズ除去 EMA(指数移動平均) :最新データ重視の平滑化
Advanced Volume Profile Analysis Tool for MetaTrader 5 The Kecia Volume Profile Order Finder provides traders with volume profile analysis capabilities. This MT5 indicator combines volume profile visualization with statistical calculations to help identify potential trading opportunities and suggests entry, stop loss, and take profit levels based on market structure. Market Profile Visualization Transform your chart with customizable volume profile visualizations: Multiple visualization options
Scan a fixed list of assets (Ibovespa) in the chosen timeframe (TimeFrame). For each pair and for various periods. Calculate a regression model between the two assets (and, if desired, using the bova11 index as a normalizer). Generate the spread of this relationship, its mean, standard deviation, speculative deviation, and betas (B1 and B2). Apply an ADF test without exclusion (cointegration/stationarity). Calculate the Z-score of the current exclusion (how many standard deviations are away from
FREE
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
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
フラットとトレンドを決定するための指標。 価格が2つのヒストグラムと2つの線(赤と青)のいずれかを下回っている場合、これは売りゾーンです。 このバージョンのインジケーターを購入するときは、1つの実際のアカウントと1つのデモアカウント用のMT4バージョン-ギフトとして(受け取るには、プライベートメッセージを書いてください)! 価格が2つのヒストグラムと2つの線(赤と青)のいずれかを上回っている場合、これは購入ゾーンです。 MT4バージョン: https//www.mql5.com/en/market/product/3793 価格が2つの線の間、またはいずれかのヒストグラムのゾーンにある場合、市場に明確な傾向はありません。簡単に言えば、市場は横ばいです。 インジケーターの動作は、スクリーンショットでより明確に示されています。
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
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
ADVANCED FUNCTIONALITIES: Trend Score (0-100) with visual bar Intelligent signals with adjustable strength (1-10) Risk management with automatic TP/SL Audible and visual alerts Price zones with smooth filling Multi-indicator analysis (RSI, ATR, BB, EMAs) DESIGN FEATURES Modern Visual: Smooth and well-spaced lines (EMA with 2-3px width) Vibrant and professional colors (Sky Blue, Orange, Gold) Modern arrows (code 233/234) for buy/sell signals Configurable dark/light theme Adjustable transparency f
Japanese このインジケーターは、チャートパターンでのトレードを好むトレーダーにとって、高度なチャート分析アシスタントとして機能します。目視での分析負担を軽減し、利益を上げるための精度を高めるように設計されています。 実際の使用においての、このインジケーターの主な利点と特徴は以下の通りです: 1. 自動パターン検出 (Automated Pattern Detection) 時間の節約とバイアスの軽減: 手動でトレンドラインを引く必要はありません。価格のスイングポイント(Pivot High/Low)を検索し、価格構造が条件を満たすと、ライジングウェッジ(上昇楔形)とフォーリングウェッジ(下降楔形)を自動的に描画します。 あらゆる状況を網羅: パターン形成中、ブレイクアウト、さらにはパターン失敗(Failed)まで検出でき、市場の全体像を明確に把握できます。 2. ターゲットとフィボナッチTPの内蔵 (Built-in Targets & Fibonacci TP) ターゲットを自動計算: ブレイクアウトが発生すると、システムはウェッジの開き幅に基づいてメインターゲットの距離を即
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
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
CrossPoint5   is an indicator that helps novice traders. In addition to the standard "Crosshair" function (Ctrl + F),   CrossPoint5   will show you how to set the StopLoss and TakeProfit levels correctly, taking into account the minimum allowable level, calculate the number of points between two points and convert this into the currency of the account, taking into account the expected lot of the transaction. Sometimes, when opening a deal, a novice trader completely forgets about the spread.
VibeFox Volume Profile — MetaTrader 5 向け Volume Profile VibeFox Volume Profile は、MetaTrader 5 向けの完全な Volume Profile ツールセットです。取引された出来高を価格に沿って水平方向に分布させて描き出すため、市場が最も活発だった場所、薄商いだった場所、そしてどの価格水準が磁石や障壁として働きやすいかを一目で確認できます。各プロファイルはチャート上に直接描画され、モダンでマウス操作のパネルから制御されます——掘り下げるメニューも、アタッチするスクリプトもありません。 ローソク足だけからサポートとレジスタンスを推測する代わりに、出来高の実際の足跡を扱います。価格を引き寄せる高出来高ノード、価格が素早く通過しがちな低出来高のすき間、そして大半の取引が行われた公正価値ゾーンです。 必要な形の Volume Profile Volume Profile は単一の固定プロファイルではありません。 複数の独立したプロファイルエンジンを同時に 提供し、それぞれが独自の範囲、配置、スタイルを持つため
このプロダクトを購入した人は以下も購入しています
この製品は 2026 年の市場向けに更新され、最新の MT5 ビルドに最適化されています。 価格更新のお知らせ: Smart Trend Trading System は現在 $99 で提供されています。 次の 30 件の購入 後、価格は $199 に上がります。 特別オファー: Smart Trend Trading System を購入後、私にプライベートメッセージを送ることで、 Smart Universal EA を無料 で受け取り、Smart Trend のシグナルを自動売買に変えることができます。 Smart Trend Trading System は、リペイントなし、再描画なし、遅延なしの完全なトレーディングシステムです。よりクリーンなシグナル、より明確なトレンド方向、そしてより整理された取引方法を求めるトレーダー向けに作られています。 Online course , manual and [download presets] . このシステムは、トレンド検出、反転ゾーン、Smart Cloud、トレーリングストップロジック、サポートとレジスタンス、ローソク足の色分け
Trend Sniper X
Sarvarbek Abduvoxobov
5 (6)
Trend Sniper X は、MetaTrader 5 用のマルチタイムフレーム・トレンドフォロー・インジケーターです。トレーダーがトレンドの方向性と反転ポイントを明確かつ正確に特定できるよう支援します。 価格情報: 現在の価格はキャンペーン価格であり、今後のアップデートや新機能のリリースに伴い変更される可能性があります。 Code2Profit チャンネル マルチタイムフレーム分析で市場をマスターしよう! 技術仕様 プラットフォーム MetaTrader 5 インジケータータイプ マルチタイムフレーム・トレンドインジケーター 操作タイムフレーム あらゆるチャートタイムフレームに対応。個別に選択可能な上位タイムフレーム (M1–MN1) を搭載 主要銘柄 FX、ゴールド (XAUUSD)、およびその他のCFD 推奨口座 あらゆる口座タイプに対応 視覚化 色分けされたトレンドローソク足 (買い/売り/弱気/変化) + 買い/売り矢印 追加モジュール セッション市場ボックス (シドニー、東京、ロンドン、ニューヨーク) 主な機能 マルチタイムフレーム・トレンド分析: 上位タイムフレームの
SuperScalp Pro
Van Minh Nguyen
4.69 (29)
SuperScalp Pro – プロフェッショナル多層コンフルエンス・スキャルピングシステム SuperScalp Pro は、複数のコンフルエンスを組み合わせたプロフェッショナル向けスキャルピングシステムです。より高い確率のトレードチャンスを見つけられるよう設計されており、明確なエントリー確認、ATRに基づくStop LossとTake Profit、さらにXAUUSD、BTCUSD、主要なFX通貨ペアに対応した柔軟なシグナルフィルター機能を提供します。 完全なドキュメントは製品ブログにあります: [User Guide] SuperScalp Pro Auto Trader EA による自動売買が利用可能です: [Auto Trader] SuperScalp Pro のトレードロジックを基に開発されたゴールド自動スキャルピングEA: [SuperScalp Gold] SuperScalp Pro は、Supertrend、VWAP、EMA、RSI、ADX、出来高分析、ボリンジャーバンド、MACDダイバージェンスを組み合わせ、低品質なトレードセットアップをフィルタリングし
まず正直に言いましょう。 どんなインジケーターも、それ単体であなたを利益化させることはできません。もしそう言う人がいるなら、それは夢を売っているだけです。完璧な売買シグナル(矢印)を表示するインジケーターは、いくらでも“完璧に見せる”ことができます。正しい過去の区間を拡大して、勝ちトレードだけを切り取ればいいだけです。私たちはそれをしません。 SMC Intraday Formula はツールです。 市場構造を読み取り、最も高い確率の価格ゾーンを特定し、今この瞬間のスマートマネーの痕跡をシンプルな言葉で正確に示します。最終判断はあなたが行います。トレードを実行するのもあなたです。しかし今は「希望」ではなく「精度」でエントリーできます。 私たちはこのインジケーターを、ゴールド(XAUUSD)および主要FX通貨ペアで約3年間、日々のスキャルピングに使用してきました。M1、M5、M15、M30の主要ツールです。これは未来を予測しようとするのではなく、今まさに形成されている高確率セットアップを示し、その理由を説明します。 他のすべてのインジケーターと何が違うのか? ほとんどのトレーディングイ
Welcome to ENTRY IN THE ZONE AND SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a professional trading indicator built on Smart Money Concepts (SMC) , combining market structure analysis with a No Repaint BUY / SELL signal system in a single indicator. It helps traders understand market structure more clearly, identify key price zones, and focus on higher-quality trading opportunities. By combining Multi-Timeframe Analysis , Points of Interest (POIs) , and real-time signals, th
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
M1 Quantum を使用したライブトレードシグナル : シグナル (取引は 自動的に Quantum Trade Assistant によって実行され、この製品に 無料 で含まれています。) 価格プラン: 現在価格: $169 (早期購入者向けオファー) 次回予定価格: $189 予定小売価格: $299 開発者からのお知らせ: ご購入後、 最新の推奨設定ファイル(Set File) 、運用アドバイス、および他の M1 Quantum ユーザーと交流できる VIPサポートグループ への招待をご希望の場合は、お気軽にご連絡ください。 よくある質問 - 設定ファイル - インストールガイド M1 Quantum は、M1専用のプロフェッショナルトレーディングシステムであり、ストップロス、テイクプロフィット、スマートな資金管理を内蔵した、迅速かつ正確な取引シグナルを提供します。 M1 Quantum は、 連続勝利 に重点を置いて口座を素早く成長させるために設計されたプロフェッショナルな資金管理を備えています。 M1 Quantum インジケーター の主な特徴 M1時間足 およびすべ
Gold Entry Sniper – ゴールドスキャルピング&スイングトレード用プロフェッショナル多時間足ATRダッシュボード Gold Entry Sniper は、XAUUSDや他の銘柄向けに正確な 売買シグナル を提供する、MetaTrader 5用の高度なインジケーターです。 ATRトレーリングストップロジック と 多時間足分析ダッシュボード を搭載し、スキャルピングからスイングトレードまで対応します。 主な特徴と利点 多時間足シグナル分析 – M1、M5、M15 のトレンドを同時表示。 ATRベースのトレーリングストップ – ボラティリティに応じて動的に調整。 プロ仕様のチャートダッシュボード – シグナル状況、ATRレベル、回帰線、売買方向を表示。 明確な売買マーカー – 自動矢印とテキストラベル。 エグジットアラートとトレード管理 – 利益確定のための自動検出。 完全カスタマイズ可能 – パネル位置、色、フォント、ATR/回帰設定を調整可能。 ゴールド(XAUUSD)に最適化 – M1〜M15のスキャルピングに最適、FXや指数、暗号資産にも対応。 Gold Entry
このインジケーターを購入された方には、以下の特典を 無料 で提供しています: 各トレードを自動で管理し、ストップロスとテイクプロフィットを設定し、戦略ルールに基づいてポジションを決済する補助ツール 「Bomber Utility」 様々な銘柄に合わせたインジケーターの設定ファイル(セットファイル) 「最小リスク」、「バランスリスク」、「待機戦略」 の3つのモードで使用できる Bomber Utility 用の設定ファイル このトレーディング戦略をすぐに導入・設定・開始できる ステップバイステップのビデオマニュアル ご注意: 上記の特典を受け取るには、MQL5のプライベートメッセージシステムを通じて販売者にご連絡ください。 オリジナルのカスタムインジケーター 「Divergence Bomber(ダイバージェンス・ボンバー)」 をご紹介します。これは、MACDのダイバージェンス(乖離)戦略に基づいた 「オールインワン」型のトレーディングシステム です。 このテクニカルインジケーターの主な目的は、価格とMACDインジケーターの間に発生するダイバージェンスを検出 し、将来の価格の動きを示す
UZFX {SSS} スキャルピング・スマートシグナル v4.0 MT5は、変動の激しい市場において正確かつリアルタイムのシグナルを求めるスキャルパー、デイトレーダー、スイングトレーダー向けに設計された、リペイントのない高性能な取引インジケーターです。(UZFX-LABS)によって開発されたこのインジケーターは、価格行動分析、トレンド確認、スマートフィルタリングを組み合わせることで、すべての通貨ペアおよび時間軸において、高確率の売買シグナル、警告シグナル、トレンド継続の機会を生成します。 トレードの判断に迷うのはもうやめましょう。明確さ、正確さ、そして規律ある市場執行を求めるトレーダーのために設計された、体系的なシグナルシステムに従い始めましょう。 私のおすすめ* 最適な時間足:15分足以上。 {H1} が私のお気に入りです。そして、その成果は驚異的です…!! 主な機能の更新 • 自動売買シグナル検出 • 高度な反転認識ロジック • 市場反転の可能性に先立つ早期警告シグナル • トレンド継続確認シグナル • エントリー、ストップロス、TP1、TP2、TP3レベルを備えた組み込み型
Gann Made Easy   は、ミスター・ギャンの理論を使用した取引の最良の原則に基づいた、プロフェッショナルで使いやすい外国為替取引システムです。 W・D・ガン。このインジケーターは、ストップロスとテイクプロフィットレベルを含む正確な買いと売りのシグナルを提供します。 PUSH通知を利用して外出先でも取引可能です。 ご購入後、取引方法の説明と優れた追加インジケーターを無料で入手するには、私にご連絡ください! おそらく、ギャンの取引手法についてはすでに何度も聞いたことがあるでしょう。通常、ギャンの理論は初心者のトレーダーだけでなく、すでにある程度の取引経験がある人にとっても非常に複雑なものです。なぜなら、ギャンの取引手法は理論的にはそれほど簡単に適用できるものではないからです。私はその知識を磨き、最良の原則を私の外国為替インジケーターに組み込むために数年を費やしました。 このインジケーターは非常に簡単に適用できます。必要なのは、それをチャートに添付し、簡単な取引推奨事項に従うだけです。このインジケーターは常に市場分析の仕事を行い、取引の機会を探します。適切なエントリーポイントを検
この製品は 2026 年の市場向けに更新され、最新の MT5 ビルドに最適化されています。 価格更新のお知らせ: Atomic Analyst は現在 $99 で提供されています。 次の 30 件の購入 後、価格は $199 に上がります。 特別オファー: Atomic Analyst を購入後、私にプライベートメッセージを送ることで、 Smart Universal EA を無料 で受け取り、Atomic Analyst のシグナルを自動売買に変えることができます。 Atomic Analyst は、リペイントなし、再描画なし、遅延なしの Price Action トレーディングインジケーターで、手動取引、シグナルの明確化、EA 自動化のために設計されています。 User manual: settings, inputs and strategy.   &   User Manual PDF . 価格行動、強さ、モメンタム、マルチタイムフレーム方向、高度なフィルターを分析し、トレーダーがノイズを減らし、弱いセットアップを避け、より構造化された取引判断を行えるようにします。 このイ
M1 SNIPER は使いやすいトレーディングインジケーターシステムです。M1時間足向けに設計された矢印インジケーターです。M1時間足でのスキャルピングのためのスタンドアロンシステムとして、また既存のトレーディングシステムの一部としても使用できます。このトレーディングシステムはM1時間足での取引に特化して設計されていますが、他の時間足でも使用できます。元々、この手法はXAUUSDとBTCUSDの取引用に設計しましたが、他の市場においても役立つと考えています。 インジケーターのシグナルは、トレンドの方向と逆方向に取引できます。インジケーターのシグナルを利用して両方向に取引するのに役立つ特別な取引テクニックをご紹介します。この手法は、特別な動的なサポートとレジスタンスの価格帯を利用することに基づいています。 ご購入後、M1 SNIPER矢印インジケーターをすぐにダウンロードできます。さらに、M1 SNIPERツールのすべてのユーザーに、以下のスクリーンショットに表示されているApollo Dynamic SRインジケーターを無料で提供しています。この2つのインジケーターを組み合わせることで
伝説が帰ってきました:Entry Points Pro 10。 MQL5 Marketのトップ3に3年間入り続けた伝説的インジケーターの再始動です。 2つのバージョンで合計589件の高評価レビュー、毎日数千人のトレーダーが実際のトレードに使用し、デモのダウンロードは31,000件以上   MT4+MT5 。 私はこの5年間に寄せられたレビューをすべて読み、約束を並べる代わりに、その答えをバージョン10に組み込みました。1999年から相場に携わり、 誠実さ、自らの評判、そして顧客を大切にする 作者による製品です。 Entry Points Proのエントリーシグナルは、リペイント(再描画)を一切行いません。 そして今回初めて、これは作者の言葉ではなく検証可能な事実になりました。確定シグナルはローソク足の終値確定後にのみ表示され、自動テストで リペイントはゼロ と確認されています(EURUSD、XAUUSD、BTCUSDで2,486,568回の不変条件チェック、違反0件)。検証方法は公開されており、ストラテジーテスターでご自身で再現できます。 ご購入後は、必ずすぐにダイレクトメッセージでご
Quantum TrendPulse を ご紹介します。これは、   SuperTrend   、   RSI   、および Stochastic のパワーを 1 つの包括的なインジケーターに組み合わせて、取引の可能性を最大限に引き出す究極の取引ツールです。精度と効率を求めるトレーダー向けに設計されたこのインジケーターは、市場のトレンド、勢いの変化、最適なエントリー ポイントとエグジット ポイントを自信を持って特定するのに役立ちます。 主な特徴: SuperTrend 統合: 現在の市場動向に簡単に追従し、収益性の波に乗ることができます。 RSI精度: 買われすぎと売られすぎのレベルを検出し、市場の反転のタイミングに最適で、SuperTrendのフィルターとして使用されます。 確率的精度: 確率的振動を活用して、変動の激しい市場で隠れたチャンスを見つけます。SuperTrend のフィルターとして使用されます。 マルチタイムフレーム分析:   M5 から H1 または H4 まで、さまざまなタイムフレームで市場を常に把握します。 カスタマイズ可能なアラート: カスタム取引条件が満たされ
Power Candles V3 - 自己最適化型強弱インジケーター Power Candles V3は 、通貨や銘柄の強さを、適用されたすべてのチャート上で実行可能なトレードプランに変換します。単にローソク足を色分けするだけでなく、バックグラウンドでリアルタイムの自動最適化を実行し、目の前の銘柄に対して最適なストップロス、テイクプロフィット、およびシグナルの閾値を提示します。ワンクリックで実取引に適用でき、エントリーポイント、ストップロス、テイクプロフィットのラインが正確な価格位置にチャート上に表示され、方向性を示すアラートがリアルタイムで発動します。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨事項を入手し、  https://stein.investments でコミュニティに参加しましょう クローズしたバーごとに3,000回以上のトレードシミュレーション。9つの強さの状態。2つの戦略を並行してテスト。勝率の高い設定をワンクリックで適用。 なぜこれが必要なのか ほとんどの強
GoldenX Entryは、MT5向けのインジケーターであり、適応型Smart Entry Trendアルゴリズム、シグナルスコアリングシステム、マーケットレジーム検出機能、およびボラティリティフィルターを備えています。各シグナルには、計算されたエントリーレベル、3つのテイクプロフィット(TP1、TP2、TP3)、およびストップロスレベルが含まれます。本インジケーターは、異なる市場環境に適応するために設計された複数の分析レイヤー上に構築されており、マルチレイヤー分析システムと内蔵オプティマイザーおよび統計トラッキングシステムを組み合わせています。リスク・リワード(RR)指標および過去のトレード履歴に基づく定量分析を提供します。 使い始めは簡単です — 選択した時間足でオプティマイザーを実行し、そのままチャート上でインジケーターを使用します。 コア機能 GoldenX Entryは、シグナルエンジンとトレード管理機能、そして過去統計トラッキングを1つのチャートに統合しています: - 内蔵オプティマイザー: オプティマイザーはチャート上でワンクリックで実行できます。200通りのパラメー
Zoryk Gold
Reda El Koutbane
5 (1)
ZORYK — MetaTrader 5専用 XAUUSDシグナル・トレードプランニングシステム このような経験はありませんか。 ゴールドを分析し、エントリーを待ち、ようやくポジションを持った直後に価格が逆方向へ動く。 早すぎる決済をしてしまったり、Stop Lossを動かしたり、数秒迷っている間にチャンスを逃したりする。 その後、相場は自分が最初に予想していた方向へ進み、目標へ到達する。 問題は常に方向判断ではありません。 本当の問題は、明確な計画がなかったことです。 どこでエントリーすべきか。 どこでトレードの前提が無効になるのか。 近い利益を確保すべきか、より大きな値動きを待つべきか。 現在のsetupが本当に強いのか、それとも無理にトレードを探しているだけなのか。 ゴールドは非常に速く動きます。 正しい分析でも、明確なプランがなければ数秒で悪い判断に変わることがあります。 ZORYKは、その問題を解決するために開発されました。 ZORYKとは ZORYKは、MetaTrader 5とXAUUSDのM5チャート専用に開発された、シグナルとトレードプ
トレンドキャッチャーインジケーター トレンドキャッチャーインジケーターは、開発者独自の適応型トレンド分析指標を組み合わせることで、市場価格の動きを分析します。短期的なノイズを除去し、根底にあるモメンタムの強さ、ボラティリティの拡大、価格構造の挙動に焦点を当てることで、真の市場方向性を特定します。また、移動平均線、RSI、ボラティリティフィルターなどの平滑化およびトレンドフィルタリング機能を備えたカスタマイズ指標も使用します。 実際の運用状況のモニタリングやその他の製品については、こちらをご覧ください: https://www.mql5.com/en/users/mechanic/seller ご注意ください。私はTelegramでEAや設定を販売していません。詐欺です。すべての設定はブログで無料で公開しています。 重要!ご購入後すぐにご連絡ください。手順とボーナスをお送りします!
Crystal Heikin Ashi Signals - Professional Trend & Signal Detection Indicator Advanced Heikin Ashi Visualization with Intelligent Signal System for Manual & Automated Trading Final Price: $149 ---------> Price goes up $10 after every 10 sales . Limited slots available — act fast . Overview Crystal Heikin Ashi Signals is a professional-grade MetaTrader 5 indicator that combines pure Heikin Ashi candle visualization with an advanced momentum-shift detection system. Designed for both manual traders
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
FX Power: 通貨の強弱を分析して、より賢い取引を実現 概要 FX Power は主要通貨と金の実際の強弱をあらゆる市場状況で理解するための必須ツールです。強い通貨を買い、弱い通貨を売ることで、 FX Power は取引の意思決定を簡素化し、高い確率の取引機会を見出します。トレンドを追従する場合でも、極端なデルタ値を使用して反転を予測する場合でも、このツールはあなたの取引スタイルに完全に適応します。ただ取引するだけではなく、 FX Power で賢く取引をしましょう。 1. なぜ FX Power がトレーダーにとって非常に有益なのか 通貨と金のリアルタイム強弱分析 • FX Power は主要通貨と金の相対的な強弱を計算し、マーケットダイナミクスに関する明確な洞察を提供します。 • どの資産がリードしているか、または後れを取っているかを監視して、取引するペアを賢く選びましょう。 マルチタイムフレームの包括的なビュー • 短期、中期、長期のタイムフレームで通貨と金の強弱を追跡し、マーケットトレンドに基づいて取引戦略を調整できます。 • スキャルピングからスイングトレード
AXIOM MATRIX MT5 ローンチ価格:$99 Axiom Matrix はローンチ価格 $99 でご利用いただけます。 最初の30件の購入後、価格は $199 に上がります。 ご購入後、手順のご案内と限定ギフトボーナスの受け取りのために、直接DMをお送りください。 Axiom Matrix は、MetaTrader 5 用のプロフェッショナルなマルチシンボル・マルチタイムフレーム市場スキャナー兼意思決定ダッシュボードです。 Market Watch をスキャンし、複数の時間足を分析し、複数のエビデンスエンジンを読み取り、最も強いチャンスを比較し、1つのクリーンなマトリックスダッシュボード内で最適な BUY、SELL、WAIT、またはブロック状態を表示します。 私が Axiom Matrix を作った理由は、市場スキャンという重い作業を代わりに行ってくれる1つのツールが欲しかったからです。 RSI だけを確認したくありませんでした。 次に MACD だけ。 次に移動平均線。 次に出来高。 次にボラティリティ。 次にサポートとレジスタンス。 そして、1つのトレードアイデアを作るた
通貨強さウィザードは、取引を成功させるためのオールインワン ソリューションを提供する非常に強力な指標です。このインジケーターは、複数の時間枠のすべての通貨のデータを使用して、このまたはその外国為替ペアのパワーを計算します。このデータは、使いやすい通貨インデックスと通貨パワーラインの形式で表され、特定の通貨のパワーを確認するために使用できます。 必要なのは、取引したいチャートにインジケーターを接続することだけです。インジケーターは、取引する通貨の実際の強さを示します。このインジケーターは、トレンドに合わせて取引するときに有利に利用できる売買高の圧力の極値も示します。このインジケーターには、フィボナッチに基づく可能なターゲットも表示されます。 このインジケーターは、PUSH 通知を含むあらゆるタイプのアラートを提供します。 購入後ご連絡下さい。私の取引のヒントをあなたと共有し、素晴らしいボーナスインジケーターを無料で提供します! 幸せで有益な取引をお祈りします。
この製品は 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 などの高度な取引アイデアを組み合わせています。このインジケ
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (5)
新たな王者が登場 - インジケーター + 注文管理表示(TP1 + TP2 + TP3)+ オプションのTelegramシグナル送信機能付き(無料) (完全なトレード&シグナルシステム) ゴールド向け最高のEA: Gold Slayer このインジケーターには、高度な戦略、カスタマイズ可能な注文管理システム、そしてエンベロープ拡張を組み合わせた平均回帰システムが搭載されています。さらに、RSIなど複数のインテリジェントな確認フィルターによって、高確率の反転エントリーをBUY・SELLシグナルとして検出します。 単にトレードを学ぶだけでなく、複数ポジションを効果的に管理し、過去に利益を出しているオープンポジションで損失トレードをカバーする方法も学べます。 M5向けに構築・最適化されており、流動性が高くシグナルの精度が安定しているBTCUSDとXAUUSDで優れたパフォーマンスを発揮します。 このインジケーターは、ATRを基に自動計算されたエントリー、ストップロス、テイクプロフィットレベルを備えた明確なLong・Shortシグナルを提供するため、リスク管理が最初から組み込まれています。 マ
IX Power MT5
Daniel Stein
4.92 (13)
IX Power: 指数、商品、暗号資産、外国為替市場の洞察を発見 概要 IX Power は、指数、商品、暗号資産、外国為替市場の強弱を分析するための多用途ツールです。 FX Power が全ての利用可能な通貨ペアデータを活用して外為ペアで最高の精度を提供する一方、 IX Power は基礎資産の市場データにのみ焦点を当てています。この特性により、 IX Power は非外為市場に最適であり、単純な外為分析にも信頼性の高いツールです。どのチャートでもスムーズに機能し、取引判断を向上させるための明確で実行可能な洞察を提供します。 1. IX Power がトレーダーにとって価値がある理由 複数市場での強弱分析 • IX Power は指数、商品、暗号資産、外為シンボルの強弱を計算し、それぞれの市場に合わせた洞察を提供します。 • US30、WTI、ゴールド、ビットコイン、または通貨ペアなどの資産を監視して取引機会を発見できます。 幅広い市場に適応 • 外為取引では、 FX Power が関連する全ての通貨ペアを分析することで比類のない精度を提供します。 • IX Power
Quant Direction は、3次元の市場分析ツールです。完全に客観的なアルゴリズムベースの市場分析を提供し、様々なパラメータにわたる正確なパーセンテージ偏差を同時に算出します。高度なAI搭載モデリングツールで開発され、厳密なテストを経て開発されたこのアルゴリズムは、かつてない精度で市場を分析するように設計されています。プラットフォーム上では、あらゆる通貨ペアや金融商品を分析できます。 短期取引、デイトレード、スイングトレードなど、どのような取引スタイルに も、Quant Directionは最適な選択肢です。 オペレーターの本当の利点 Quant Directionの真の利点は、感情、眼精疲労、過剰分析を完全に排除できる点にあります。方向性を探るために何十ものチャートを手作業で精査したり、自分の好みを常に疑ったりする必要がなくなります。このシステムは、8つの時間間隔(5ヶ月から月単位まで)をミリ秒単位で処理します。あらゆる瞬間に市場を支配している主体を正確に明らかにし、常に成功確率が最も高い方向で取引できるようにします。 市場分析の3つの側面 このアルゴリズムは市場を3つの
ブレーカートレーダーになり、価格が反転すると市場構造からの利益が変化します。 注文ブロックブレーカーインジケーターは、トレンドまたは価格の動きが枯渇に近づいており、逆転の準備ができていることを識別します。通常、反転または大規模なプルバックが発生しようとしているときに発生する市場構造の変化について警告します。 この指標は、ブレイクアウトと価格の勢いを識別する独自の計算を使用します。使い果たされる可能性のあるポイントの近くで新しい高値が形成されるたびに、インディケーターはその高値の作成を担当する最後の注文ブロックを描きます。次に、移動する価格とともに注文ブロックを追跡します。その後、価格が反対方向にシフトし、その注文ブロックを突破すると、新しい市場構造を作成し、トレンドまたは大きな後退の可能性のある反転の開始を警告します。 注文ブロックは、高値/安値が作成される前の最後の反対色のろうそくであり、価格がこれらの重要な領域を下抜けすると、トレンドの短期的ま​​たは長期的な反転の兆候です。 特徴 重要な枯渇点での市場構造の変化を警告します 価格が使い果たされるレベルに近づくと、自動的に
BTMM State Engine Pro is a MetaTrader 5 indicator for traders who use the Beat The Market Maker approach: Asian session context, kill zone timing, level progression, peak formation detection, and a multi-pair scanner from a single chart. It combines cycle state logic with a built-in scanner dashboard so you do not need the same tool on many charts at once. What it does Draws the Asian session range; session times can follow broker server offset or be set in inputs. Tracks level progression (L
作者のその他のプロダクト
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
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
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
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
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
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
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
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
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
Phantom Flow
Mahmoud Ahmed Abdou Ali
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
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,
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
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
フィルタ:
レビューなし
レビューに返信