Balance Graph Dashboard

Brief Description
The Balance Curve Dashboard is a sophisticated visual tool that transforms your trading history into an interactive, high-performance equity curve display directly on your MT5 chart. Unlike traditional balance lines that draw on the chart as standard objects, this indicator uses a custom Canvas-based rendering engine to create a crisp, anti-aliased, and fully customizable visual representation of your portfolio's performance.

Key Features:📊 Interactive Visual Dashboard

· Full-color equity curve with profit/loss· Real-time P/L, Win Rate, Max Drawdown, and Current Drawdown metrics· High/Low markers with labeled value boxes
· Current balance marker with floating value display· Gradient fill option for enhanced visual appeal


🎯 Flexible Filtering
· Portfolio View: Track all trades across all symbols
· Symbol Only: Focus on a specific trading symbol
· Strategy Only: Filter by Magic Number

· Symbol + Strategy: Combine both filters for granular analysis


🎨 Fully Customizable

· Adjustable canvas size via Canvas Factor (1x to 2x)
· Customizable colors for profit/loss lines, background, text, borders
· Opacity control for semi-transparent overlays

· Font size controls for labels and metrics


🖱️Interactive

· Drag-and-drop positioning anywhere on the chart

· Chart remains fully functional (mouse scroll enabled while not dragging)


Who Is This For?
· Manual Traders: Visualize your account performance evolution over any period (daily, weekly, monthly, or entire history)
· EA Developers: Use this as a visual front-end for strategy analysis and performance monitoring
· Quant Traders: Quickly assess strategy rates at a glance


INPUTS:

Here is every input explained in full detail:

CanvasFactor — controls the physical pixel size of the entire canvas window. It's a multiplier applied to the base dimensions of 400×500 pixels. At 1 (default) the canvas is exactly 400px wide by 500px tall. At 2 it doubles to 800×1000px — every element inside scales with it: padding, font sizes, marker radii, line

thickness. Values between 1 and 2 (like 1.5) produce intermediate sizes. Going below 1 makes the canvas smaller than the base size, and going above 2makes it very large. Everything throughout, so nothing gets cut off or misaligned when you change this — it all resizes proportionally.


CurveType — this is the most important input. It controls which deals from your account history are included in the balance curve, P/L, win rate, drawdown, and all other metrics. Four options:

PORTFOLIO — includes every single deal from every symbol and every EA/strategy in your account history, regardless of what symbol the chart is on or what magic number any EA used.

If you have trades on EURUSD, GBPUSD, gold, and indices all mixed together, they all count. This shows your overall account performance as a whole.

SYMBOL_ONLY — filters to only deals where DEAL_SYMBOL matches the symbol the indicator is currently attached to (_Symbol). So if you attach the indicator to a EURUSD chart, only everything else is ignored entirely. The magic number of the EA that placed the trade is irrelevant here; any EA's EURUSD trades count. Useful for evaluating how a particular instrument has performed across all strategies trading it.

STRATEGY_ONLY — filters to only deals where DEAL_MAGIC matches strtMagic_No, regardless

of which symbol those trades were on. So if your EA uses magic number 101 and trades both EURUSD and GBPUSD, both show up. Trades from other EAs with different magic numbers are excluded even if they're on the same symbol. Useful for seeing the isolated performance of one specific EA across all the pairs it trades.

SYMBOL_SPECIFIC_STRATEGY — the most restrictive filter: a deal only counts if BOTH DEAL_SYMBOL == _Symbol AND DEAL_MAGIC == strtMagic_No. So it shows only trades placed by a specific EA (identified by magic number) on Everything else — same EA on a different symbol, different EA on the same symbol — is

excluded. Useful when one EA trades multiple pairs and you want to isolate its performance on just one of them.


strtMagic_No — the magic number used as the filter value for STRATEGY_ONLY and SYMBOL_SPECIFIC_STRATEGY curve types. Has no effect at all when CurveType is PORTFOLIO or SYMBOL_ONLY. Set this to match the magic number your EA assigns to its orders via trade.SetExpertMagicNumber() or OrderSend(). Default is 101. If your EA uses a different magic number and you leave this at 101, those two filtered curve types will show an empty curve since no deals will match.


BalanceCurvePeriod — works together with BalanceCurveFactor to define the history window start time. It's a timeframe selector (M1,H1, D1, W1, MN1, etc.) that defines the "unit of for stepping backward through history. At the default PERIOD_MN1 (monthly), one unit of BalanceCurveFactor represents one calendar
month. Changing this to PERIOD_W1 makes one unit equal one week, PERIOD_D1 makes it one
day, and so on. Has no effect when BalanceCurveFactor is negative (entire history

mode).


BalanceCurveFactor — controls how far back in time the history window starts. The exact formula in the code is: start = iTime(_Symbol, BalanceCurvePeriod, 0) - PeriodSeconds(BalanceCurvePeriod) * BalanceCurveFactor. Breaking that down: iTime(_Symbol, BalanceCurvePeriod, 0) is the open time of the current period's bar (e.g. the start of this month if BalanceCurvePeriod = PERIOD_MN1). PeriodSeconds(BalanceCurvePeriod) * BalanceCurveFactor subtracts that many period- Any negative value (default -1) — bypasses this formula entirely and calls HistorySelect(0, TimeCurrent()) instead, which means the entire available account history from the very beginning. This is the "show everything" mode. 0 — start is the open of the current period with no subtraction, so only deals from the current period onward are shown (e.g. this month only if on MN1). 1 — goes back one period before the current one (e.g. last month + this month). 3 on PERIOD_MN1 — shows the last 3 months. On PERIOD_W1 — last 3 weeks. On PERIOD_D1 — last 3 days. So BalanceCurvePeriod is the unit and BalanceCurveFactor is how many of those units to go back.

CanvasOpacity — controls the transparency of the canvas background and certain overlay elements. It's the alpha value passed to label box backgrounds on the High/Low markers, and the current-balance label box. Range is 0 (fully transparent, canvas invisible) to 255 (fully opaque, solid). Default is 200, which is slightly transparent — at this level you can faintly see the chart price bars behind the canvas if they're close to the canvas edge. Going lower makes the background more see-through; going to 255 makes it a solid opaque block.


LineFontSize — despite the name, this is actually the line thickness in pixels for the balance curve

line itself, passed directly as the width parameter to ExtCanvas.LineThick(). Nothing to do with fonts. Default is 5px. Higher values make the curve line thicker and more prominent; lower values make it thinner. At 1 it's a single- pixel line. Also applies to the start-balance dashed horizontal line.


TextFontSize — controls the font size of the four metric labels in the header band (P/L, Win Rate, so it stays proportional when you resize the canvas. Default is 30, which at CanvasFactor=1 renders as 30pt. The marker labels (current balance tag, High/Low tags) use their own hardcoded sizes scaled independently and are not affected by this input.


InpEnableGradient — toggles the shaded area fill between the balance curve and the zero baseline on or off. When true (default), a semi- transparent colored fill is drawn beneath the curve above the baseline (green-tinted when profitable, red-tinted when in loss) by calling DrawVerticalGradientFill() column by column. When false, only the line itself is drawn with no fill underneath — cleaner look, and slightly faster

to render since the entire gradient fill loop is skipped entirely.


InpLineProfitColor — the color of the balance curve line and its gradient fill for any segment where the cumulative P/L is zero or above (i.e. dot, line, and label box border when the curve is in profit. Default is clrLime (bright green).


InpLineLossColor — the color of the balance curve line and gradient fill for any segment where the cumulative P/L is negative (below the zero start line). Also colors the current-balance marker, and the Low marker dot, line, and label box border when in drawdown. Default is clrCrimson (dark red). The curve can switch between these two colors mid-chart wherever the running P/L crosses zero in either direction.


InpBgColor — the fill color of the canvas background, applied via ExtCanvas.Erase() at the start of every redraw. Also used as the fill color inside the High/Low marker label boxes and the current-balance label box — this is what creates the "background behind the text" effect that makes the labels readable over the curve. Default is clrBlack.


InpTxtColor — the color used for the Win Rate drawdown (Max DD, Current DD) text labels in the header. The P/L text uses its own color logic (green or red based on whether P/L is positive or negative) so InpTxtColor doesn't apply to it.


InpBordLineColor — used in three places: the rectangular border drawn around the entire canvas perimeter, the filled header rectangle at the top of the canvas, and the anti-aliased outline rings on the current-balance marker circles (CircleAA() calls). Default is clrWhite. Changing this changes both the outer canvas frame and the marker ring outline simultaneously.


InpStrtLineColor — the color of the dashed horizontal line drawn across the canvas at the zero P/L level (the starting balance baseline). This line is what visually separates profit so it's a dash-dot pattern rather than solid. Default is clrWhite. This is completely independent of InpBordLineColor — you can make the border one color and the baseline another.
おすすめのプロダクト
インディケータは現在のクオートを作成し、これを過去のものと比較して、これに基づいて価格変動予測を行います。インジケータには、目的の日付にすばやく移動するためのテキスト フィールドがあります。 オプション: シンボル - インジケーターが表示するシンボルの選択; SymbolPeriod - 指標がデータを取る期間の選択; IndicatorColor - インジケータの色; HorisontalShift - 指定されたバー数だけインディケータによって描画されたクオートのシフト; Inverse - true は引用符を逆にします。false - 元のビュー。 ChartVerticalShiftStep - チャートを垂直方向にシフトします (キーボードの上下矢印)。 次は日付を入力できるテキストフィールドの設定で、「Enter」を押すとすぐにジャンプできます。
Atlantis Pro Indicator — ティック単位の市場分析とポートフォリオ戦略を両立 Atlantis Pro Indicator は、リアルタイムのティックデータを駆使して、重要な価格帯と高確率の反転ゾーンを高い精度で捉える多機能インジケーターです。市場のすべてのティックを連続的に解析し、買い/売り圧力の転換点を正確に見極め、チャート上に鮮明な Buy/Sell の矢印を即座に表示 — デフォルトで可視化され、すぐに行動可能です。 Atlantis Pro は あらゆる時間足・銘柄 に対応し、FX、株式、商品、指数、暗号資産など幅広く活用可能です。本当の強みは複数銘柄を 同時に監視・活用 できること。複数のシンボルで最適なエントリー・イグジットを同時に捉え、 分散ポートフォリオ を構築してリスクを分散し、安定した利益を目指せます。 単一のチャートや銘柄に縛られず、相関性のある・ない市場を横断してシグナルをキャッチすることで、自然なヘッジが効き、利益のブレを抑制。マルチ銘柄対応で、より精度の高いポートフォリオ収益を確保し、市場の変動にも揺らがない安定性を支えます。 スキャ
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
Was: $299  Now: $99  Supply Demand uses previous price action to identify potential imbalances between buyers and sellers. The key is to identify the better odds zones, not just the untouched ones. Blahtech Supply Demand indicator delivers functionality previously unavailable on any trading platform. This 4-in-1 indicator not only highlights the higher probability zones using a multi-criteria strength engine, but also combines it with multi-timeframe trend analysis, previously confirmed swings a
Japanese このインジケーターは、チャートパターンでのトレードを好むトレーダーにとって、高度なチャート分析アシスタントとして機能します。目視での分析負担を軽減し、利益を上げるための精度を高めるように設計されています。 実際の使用においての、このインジケーターの主な利点と特徴は以下の通りです: 1. 自動パターン検出 (Automated Pattern Detection) 時間の節約とバイアスの軽減: 手動でトレンドラインを引く必要はありません。価格のスイングポイント(Pivot High/Low)を検索し、価格構造が条件を満たすと、ライジングウェッジ(上昇楔形)とフォーリングウェッジ(下降楔形)を自動的に描画します。 あらゆる状況を網羅: パターン形成中、ブレイクアウト、さらにはパターン失敗(Failed)まで検出でき、市場の全体像を明確に把握できます。 2. ターゲットとフィボナッチTPの内蔵 (Built-in Targets & Fibonacci TP) ターゲットを自動計算: ブレイクアウトが発生すると、システムはウェッジの開き幅に基づいてメインターゲットの距離を即
VOLUME PROFILE SAF-XII MT5専用プロフェッショナル・マーケットプロファイル分析ツール(グリッドトレードに最適な「ドリーム・インジケーター」) ボリュームプロファイル(価格帯別出来高)とは? ボリュームプロファイルは、従来の「時間軸」の出来高とは異なり、「特定の価格帯」での取引活動を表示するプロ仕様のツールです。選択した期間内の「どこで」取引が行われたかを可視化し、以下のポイントを特定します: バリューエリア (VAH/VAL) :全取引の大部分が行われた価格帯。 ポイント・オブ・コントロール (POC) :最も出来高が集中した単一の価格水準。 リクイディティ・イムバランス :各価格帯における強気(買い)と弱気(売り)の優劣。 サポレジ(支持・抵抗) :実際の取引活動に基づいた自然な価格水準。 3つの動作モード — 「設定したらあとはお任せ」 VP_MANUAL(スイングトレード・重要ライン分析) 垂直ラインをドラッグして分析範囲を手動で設定。 ラインを動かした時のみ再計算されるため軽量。 用途 :指標発表前分析、決算発表、特定の期間分析。 VP_AUTO(スキ
VibeFox Volume Profile — MetaTrader 5 向け Volume Profile VibeFox Volume Profile は、MetaTrader 5 向けの完全な Volume Profile ツールセットです。取引された出来高を価格に沿って水平方向に分布させて描き出すため、市場が最も活発だった場所、薄商いだった場所、そしてどの価格水準が磁石や障壁として働きやすいかを一目で確認できます。各プロファイルはチャート上に直接描画され、モダンでマウス操作のパネルから制御されます——掘り下げるメニューも、アタッチするスクリプトもありません。 ローソク足だけからサポートとレジスタンスを推測する代わりに、出来高の実際の足跡を扱います。価格を引き寄せる高出来高ノード、価格が素早く通過しがちな低出来高のすき間、そして大半の取引が行われた公正価値ゾーンです。 必要な形の Volume Profile Volume Profile は単一の固定プロファイルではありません。 複数の独立したプロファイルエンジンを同時に 提供し、それぞれが独自の範囲、配置、スタイルを持つため
only 12 free copies left VOLURIS — Volume Profile エンジン あなたはすでにトレードのやり方を知っています。ただ、本来見るべきものが見えていないだけです。 その感覚を、あなたはすでに経験したことがあるはずです。 エントリーする。価格がすぐに逆行する。ストップにかかる。そしてその直後、価格は反転し、あなたが想定していた方向へ正確に進んでいく。あなたの判断は正しかった。ただ、早すぎた。あるいは遅すぎた。もしくはその両方だった。 後からチャートを見返すと、今なら分かります。エントリーのすぐ上に Naked POC があった。前回セッションの Value Area が、まさに価格が止まった場所にあった。VWAP がレジスタンスとして機能していたのに、あなたのチャートには表示されていなかった。コンテキストはすべてを教えていました。ただ、それを読み取るツールがなかっただけです。 これはトレードの問題ではありません。情報の問題です。 VOLURIS は、その問題を解決するために存在します。 VOLURIS とは VOLURIS は単なる
FREE
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
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
AW Candle Patterns
AW Trading Software Limited
AWキャンドルパターンインジケーターは、強力なキャンドルパターンスキャナーと組み合わせた高度なトレンドインジケーターの組み合わせです。これは、最も信頼性の高い30のローソク足パターンを認識して強調表示するための便利なツールです。さらに、それは色付きのバーに基づく現在の傾向分析器です。     サイズ変更と配置が可能なプラグインマルチタイムフレームトレンドパネル。トレンドフィルタリングに応じてパターンの表示を調整する独自の機能。 利点: キャンドルパターンを簡単に識別 結果を再描画しません 内蔵のマルチタイムトレンドパネル 無効なパターンタイプ(1、2、3キャンドル) パターン表示時のトレンドフィルタリングの調整 MT4 version -> HERE  / Instructions and description  -> HERE 表示されるパターンのリスト: ハンマーパターン ピンアップ/ピンダウン 弱気なハラミ/強気なハラミ 弱気のハラミクロス/強気のハラミクロス ピボットポイント反転アップ/ピボットポイント反転ダウン ダブルバーローとハイクローズ/ダブルバーローとロークローズ 終
An ICT fair value gap is a trading concept that identifies market imbalances based on a three-candle sequence. The middle candle has a large body while the adjacent candles have upper and lower wicks that do not overlap with the middle candle. This formation suggests that there is an imbalance where buying and selling powers are not equal. Settings Minimum size of FVG (pips) -> FVGs less than the indicated pips will be not be drawn Show touched FVGs Normal FVG color -> color of FVG that hasn't
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
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
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
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
Master Editionは、ボリュームとマネーフローの視点を通じて市場構造を可視化するために設計されたプロフェッショナルグレードの分析ツールです。標準のボリュームインジケーターとは異なり、このツールはチャート上に日足ボリュームプロファイルを直接表示し、価格発見がどこで行われたか、そして「スマートマネー」がどこに位置しているかを正確に確認できます。 このMaster Editionは、明確さとスピードを考慮して設計されており、ロード時にチャートレイアウトを即座に美化するユニークな自動テーマ同期システムを備えています。 主な機能: 真のマネーフロー計算: 標準のティックボリュームを超えます。「Use Money Flow」を有効にすると、ボリュームは価格によって重み付けされ、特定の価格レベルでの実際の資本コミットメントが明らかになります。 バリューエリア (VA) の可視化: バリューエリア(デフォルトではボリュームの70%)を自動的に計算します。 VA Fill: コントロールゾーンを即座に識別するために、バリューエリアの背景をシェーディングします。 主要レベル: コントロールポイン
The Sessions and Bar Time indicator is a professional utility tool designed to enhance your trading awareness and timing precision on any chart. It combines two key features every trader needs — market session visualization and real-time bar countdown — in one clean, efficient display. Key Features: Candle Countdown Timer – Shows the remaining time before the current candle closes, helping you anticipate new bar formations. Market Session Display – Automatically highlights the four main trading
FREE
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
LevelsHunter Pro – プロフェッショナルな出来高プロファイルと履歴分析 これは何か LevelsHunter Proは、現在のPOC、VAH、VALレベルを表示するだけでなく、 過去に遡って 過去のトレードの瞬間にこれらのレベルがどこにあったかを確認できる出来高プロファイルインジケーターです。 チャート上で推測するためのツールではありません。すでに起こったことを   冷静に分析   するためのものです。 トレーダーに必要な理由 問題点:   ほとんどのインジケーターは「今、ここ」だけを示します。トレードを終了してミスを分析しようとすると、レベルはすでに動いています。POCがエントリー価格より上にあったのか下にあったのかわかりません。価格がなぜ跳ね返ったのか、レベルをブレイクしたのかわかりません。 解決策:   LevelsHunter Proはすべてのバーのレベルを記録します。履歴の任意のローソク足をクリックするだけで、その瞬間の出来高プロファイルを正確に見ることができます。 トレードでの使い方 1. リアルタイムエントリーの改善 買いシグナルが見えます。価格がPOCま
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 2. Key Features Dynamic Filtering : The core feature. As soon as the current price crosses a historical liquidity level, that level disappears. This reduces chart clutter and prevents you from trading off "dead" support/resistance. Liquidity Heatma
THE PRICE WILL BE SUCH ONLY FOR THE FIRST 100 ORDERS, AFTER THAT, FOR EVERY 100 ORDERS, THE PRICE WILL INCREASE BY 20% COMPARED TO THE PREVIOUS ONE!!! What is NEXUS? NEXUS is a professional indicator for MetaTrader 5, designed to show the real volume flow and the balance between buyers and sellers in the market. The indicator analyzes price and volume movements to detect the moments when the market changes direction and large participants begin to accumulate or unload positions. Key Features
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
プレミアムレベルは、正しい予測の精度が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 Spike Blaster Pro is a next-generation MT5 indicator designed specifically for synthetic markets. It works seamlessly on Boom Index and Weltrade Index , providing traders with sharp, reliable spike detection signals. What makes Spike Blaster Pro po
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
The MarketProfileTPO indicator for MetaTrader 5 is a powerful tool designed to bring the Market Profile concept, based on Time Price Opportunity (TPO) analysis , directly onto your main chart window. This indicator calculates and displays the price distribution over a specified period, highlighting key areas of market activity and concentration. It is particularly optimized for high-volatility instruments like NAS100, US30, and XAUUSD when used on the M1 (1-minute) timeframe, offering a detailed
Introducing "X Marks the Spot" – Your Ultimate MetaTrader 5 Indicator for Perfect Trades! Are you tired of the guesswork in trading? Ready to take your MetaTrader 5 experience to a whole new level? Look no further – "X Marks the Spot" is here to revolutionize your trading strategy! What is "X Marks the Spot"? "X Marks the Spot" is not just another indicator – it's your personal trading compass that works seamlessly on all timeframes . Whether you're a beginner or an experienced trader,
The "MR Volume Profile 5" indicator is a charting tool that displays trading volume at different price levels rather than time intervals. A key concept in volume profile is the point of control (POC)—the price level with the highest volume traded during the session or time range. While tools like VWAP or OBV provide volume trends, the "MR Volume Profile 5" indicator offers granular detail about where the most market activity occurs at specific price levels. This makes it a more precise tool for
このプロダクトを購入した人は以下も購入しています
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
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
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
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
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
MERAVITH SCANNERは、MetaTrader 5用のプロフェッショナルな金融市場インジケーターで、複数の分析ツールを一つの統合システムにまとめています。独自の出来高加重平均価格(VWAP)手法を使用してすべての計算を自動で行い、主観的な解釈を完全に排除します。 このインジケーターは、すべての資産クラス(FX、株式、指数、商品、暗号通貨)およびM1から月足までのすべての時間軸で動作します。基本原理は「価格は出来高に従う」というものです。MERAVITHは機関投資家の出来高が集中するポイントを特定し、その集中から数学的に正確な価格レベルを導き出します。予測や投機は行わず、計算のみを行います。 MERAVITH SCANNERを使用すると、28の主要FX通貨ペアをすべての時間軸でわずか2~3分でスキャンできます。また、任意の市場をスキャンすることも可能です。例えば、約100銘柄の株式を約10分でスキャンできます。 インジケーターは、消耗レベル、均衡線、偏差、統計レベル、およびターゲット予測を算出します。 チャート要素 Origin Point :すべての計算が始まる起点です。イン
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
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
IVISTscalp5
Vadym Zhukovskyi
5 (6)
[iVISTscalp5]:時間を通じた市場行動研究ラボ TLV Framework | Liquidity Activation Points ⸻ 概要 iVISTscalp5 は、VISTmany プロジェクトの一環として開発された、多層型のタイミングおよび価格構造インジケーターです。 このシステムは、Liquidity Activation Points(タイミング)を通じて、 動きが発生する時間 方向性 値動きの範囲 を予測します。 iVISTscalp5 インジケーターは、デフォルト設定のまま、あらゆる金融商品に使用できます。 ⸻ 実践的価値 iVISTscalp5 は、一般的なテクニカル指標として開発されたものではありません。 開発の中心的な理念は次の通りです。 あらゆる人が「時間」を通じて市場行動を研究できるようにすること。 ⸻ Time Language VISTmany (TLV) — プロジェクトの主要概念 t(p) t(p) は、タイミングが活性化する価格レベルです。 ⸻ p(p) p(p) は
Red and Green Light – Intelligent Trading Signal Indicator Product Overview Red and Green Light is a professional trading signal indicator based on the multi-stage T3 smoothing algorithm. It integrates a visual traffic light system, intelligent signal recognition, risk alerts, and multiple notification features. Whether you're a manual trader or an Expert Advisor (EA) developer, this indicator helps you capture market opportunities with greater precision and effectively avoid the risks of
The Expert Advisor and the video are attached in the Discussion tab . The robot applies only one order and strictly follows the signals to evaluate the indicator efficiency. Pan PrizMA CD Phase is an option based on the Pan PrizMA indicator. Details (in Russian). Averaging by a quadric-quartic polynomial increases the smoothness of lines, adds momentum and rhythm. Extrapolation by the sinusoid function near a constant allows adjusting the delay or lead of signals. The value of the phase - wave s
Классификатор силы тренда. Показания на истории не меняет. Изменяется классификация только незакрытого бара. По идее подобен полной системе ASCTrend, сигнальный модуль которой, точнее его аппроксимация в несколько "урезанном" виде, есть в свободном доступе, а также в терминале как сигнальный индикатор SilverTrend . Точной копией системы ASCTrend не является. Работает на всех инструментах и всех временных диапазонах. Индикатор использует несколько некоррелируемых между собой алгоритмов для класси
FFx Universal Strength Meter PRO is more than a basic strength meter. Instead of limiting the calculation to price, it can be based on any of the 19 integrated strength modes + 9 timeframes. With the FFx USM, you are able to define any period for any combination of timeframes. For example, you can set the dashboard for the last 10 candles for M15-H1-H4… Full flexibility! Very easy to interpret... It gives a great idea about which currency is weak and which is strong, so you can find the best pai
The FFx Universal MTF alerter shows on a single chart all the timeframes (M1 to Monthly) with their own status for the chosen indicator. 9 indicators mode (MACD-RSI-Stochastic-MA-ADX-Ichimoku-Candles-CCI-PSAR). Each can be applied multiple times on the same chart with different settings. Very easy to interpret. Confirm your BUY entries when most of the timeframes are showing green color. And confirm your SELL entries when most of the timeframes are showing red color. 2 Alert Options : input to s
The FFx Watcher PRO is a dashboard displaying on a single chart the current direction of up to 15 standard indicators and up to 21 timeframes. It has 2 different modes: Watcher mode: Multi Indicators User is able to select up to 15 indicators to be displayed User is able to select up to 21 timeframes to be displayed Watcher mode: Multi Pairs User is able to select any number of pairs/symbols User is able to select up to 21 timeframes to be displayed This mode uses one of the standard indicators
FFx Patterns Alerter gives trade suggestions with Entry, Target 1, Target 2 and StopLoss .... for any of the selected patterns (PinBar, Engulfing, InsideBar, OutsideBar) Below are the different options available: Multiple instances can be applied on the same chart to monitor different patterns Entry suggestion - pips to be added over the break for the entry 3 different options to calculate the SL - by pips, by ATR multiplier or at the pattern High/Low 3 different options to calculate the 2 TPs -
MetaTrader 4 version available here : https://www.mql5.com/en/market/product/24881 FFx Basket Scanner is a global tool scanning all pairs and all timeframes over up to five indicators among the 16 available. You will clearly see which currencies to avoid trading and which ones to focus on. Once a currency goes into an extreme zone (e.g. 20/80%), you can trade the whole basket with great confidence. Another way to use it is to look at two currencies (weak vs strong) to find the best single pairs
MetaTrader 4 version available here: https://www.mql5.com/en/market/product/25793 FFx Pivot SR Suite PRO is a complete suite for support and resistance levels. Support and Resistance are the most used levels in all kinds of trading. Can be used to find reversal trend, to set targets and stop, etc. The indicator is fully flexible directly from the chart 4 periods to choose for the calculation: 4Hours, Daily, Weekly and Monthly 4 formulas to choose for the calculation: Classic, Camarilla, Fibonac
ClassicSBA
Umri Azkia Zulkarnaen
this indicator very simple and easy if you understand and agree with setup and rule basic teknical sba you can cek in link : please cek my youtube channel for detail chanel : an for detail info  contact me  basicly setup buy (long) for this indicator is Magenta- blue and green candle or magenta - green  and green candlestik and for setup sell (short) is Black - yellow - and red candle or black - red  and red candlestik
Indicador en base a la pendiente de la linea de precio, dibuja una línea de color cuando sube a base de los precios que previamente has sido procesados o linealizados, y cuando baja la pendiente la linea linealizada toma otro color. En este caso se a considerado 6 lineas de diferentes procesos desde pendientes largas hacia las cortas, observándose que cuando coincidan las pendientes se produce un máximo o mínimo, lo que a simple vista nos permitirá hacer una COMPRA O VENTA.
A scalping indicator based on mathematical patterns, which on average gives signals with relatively small SL, and also occasionally helps to catch big moves in the markets (more information in the video) This indicator has three main types of notifications: The first type warns of a possible/upcoming signal on the next bar The second type indicates the presence of a ready signal to enter the market/open a position The third type is for SL and TP levels - you will be notified every time price re
Fibonacci Múltiple 12, utiliza la serie fibonacci plasmado en el indicador fibonacci, aumentadolo 12 veces según su secuencia. El indicador fibonacci normalmente muestra una vez, el presente indicador se mostrara 12 veces empezando el numero que le indique siguiendo la secuencia. Se puede utilizar para ver la tendencia en periodos cortos y largos, de minutos a meses, solo aumentado el numero MULTIPLICA.
Recommended TimeFrame >= H1. 100% Non Repainted at any moment.  Use it carefully, only with Trend Direction. Trading Usage: 2 Variants: as Range System or as BreakOut System (Both Only With Trend Direction)::: (Always use StopLoss for minimise Risk); [1] as Range System: (Recommended) in UP TREND:  - BUY in Blue Line , then if price goes down by 50 points (on H1) open Second BUY.   Close in any Profit you wish: TrailingStop(45 points) or Close when Price touches upper Gold Line. in DOWN TREND
En base a cálculos matemáticos de determino una linea Horizontal que cruza a todas las señales de trading, mostrando los máximos y mínimos. La linea horizontal parte en dos las subidas y bajadas de las señales de trading, de tan manera que es fácil identificar los máximos y mínimos, y es inteligente por que es sensible a las subidas y bajadas, afín de no quedarse en un solo lado por siempre, trabaja excelentemente con otros indicadores suavizadores ya que les garantiza que en un intervalo de tie
this indicator is a Spike detector indicator, it is specially designed to trade Boom 1000, Boom 500, Crash 1000 and Crash 500 We recommend using it on Deriv Boom and Crash indices only Its setting is intuitive, familiar, easy to use it has notification functions; audible notifications and push notifications. this tool is simple to use, easy to handle This update is based on different strategies for spikes
Limitless MT5 is a universal indicator suitable for every beginner and experienced trader. works on all currency pairs, cryptocurrencies, raw stocks Limitless MT5 - already configured and does not require additional configuration And now the main thing Why Limitless MT5? 1 complete lack of redrawing 2 two years of testing by the best specialists in trading 3 the accuracy of correct signals exceeds 80% 4 performed well in trading during news releases Trading rules 1 buy signal - the ap
Indicador en MQL5, recibe la información del precio SUAVIZADO, lo procesa anulando los picos inteligentemente, y el resultado lo envía al desarrollo de la escalera que iniciara y subirá o bajara según el peldaño o INTERVALO ingresado Ingreso PERIODO = 50 (variar segun uso) Ingreso MULTIPLICA AL PERIODO = 1 (variar segun uso) Segun la configuración la escalera puede pegarse o separarse de los precios,, Se aplica toda la linea de tiempo, y a todas las divisas, etc.  
Indicador en MQL5, que obtiene el promedio de 10 EMAS, que son alineadas según Fibonacci, obteniendo un promedio, que sera suavizado.  Se puede ingresar un numero desde 2 a N, que multiplica a los EMA-Fibonacci. Funciona en cualquier criptomoneda, etc. etc... pudiendo calcular el futuro segun la tendencia de las EMAS. Funciona excelentemente en tramos largos, determinando exactamente el mejor inicio/salida. El precio inicial por apertura sera por un periodo de tiempo, luego aumentará.
QuantXSTocks Trading Range Indicator for MT5: INSTRUCTIONS TO USE OUR INDICATOR:- User needs to take trade on Arrow or after an Arrow CandleStick, You can achieve up-to 35-125 pips target by this Indicator. Best Timeframes for Stocks and Indices are M30 and H1: AMAZON M30 (50 pips) TESLA M30 (50 pips) APPLE M30 (50 pips) ADOBE M30 (50 pips) NASDAQ100 H1 (125 pips) The above are the approximate amount of pips you can achieve by this Indicator, Green arrow appears to be buy arrow while the Red ar
Super Suavizador
Cesar Juan Flores Navarro
Indicador en MQL5 que obtiene el promedio de 10 EMAS que son alineadas y procesadas según Fibonacci luego el promedio es suavizado"  Se ingresa un número de 2 a N que multiplica los EMA-Fibonacci y por consiguiente aumenta los fibonacci, resultando un promedio.   Se ingresa un número que suaviza los EMA-Fibonacci. Considerando los números 1/1 seria la suavización minima. Considerando los números 3/5 seria la suavización media. Considerando los números 10/30 seria la suavización alta.....etc
フィルタ:
レビューなし
レビューに返信