Argus Indicator

The package consists of two MetaTrader 5 indicator files that are normally placed together on the chart:
  • TudasInstantAnalysis.mq5 — the "top" indicator, drawn over price on the main chart.
  • TudasDownCombined.mq5 — the "bottom" indicator, an independent subwindow below the chart.
The logic has been calibrated, and continues to be calibrated, against real XAUUSD data.


Part 1 — Top Indicator: TudasInstantAnalysis.mq5


1.1 EMA Ribbon — moving-average ribbon

Trend "by eye" on candles is easy to confuse with a pullback: you end up trading against the move right when a local correction looks like a reversal.
The ribbon removes that subjectivity: four EMAs (20, 50, 100, 200) are colored automatically based on their direction.
  • Green — the line is rising (slope faster than InpFlatATR ×ATR per bar).
  • Red — falling.
  • Yellow — sideways, slope within the threshold.
  • Line thickness increases with the period: EMA20 is the thinnest, EMA200 the thickest.
  • Semi-transparent clouds fill the space between neighboring lines: green when the upper EMA sits above the lower one, red when it's the other way around

How to read trend strength: the 4 lines fan out to the same side and the clouds share the same color — a strong, stable trend. The lines weave together and flip color often — the market is sideways, better to skip signals.
Simple idea: price pulls back to a green EMA — wait for a buy signal from another module in the package (mirror for red). Works best with the trend or in a flat market; against the trend, take short targets only or skip the signal.
1.2 Price Channel(PriceChannel)
An entry "out of thin air", with no relation to structure — it's unclear exactly where you went wrong if the trade didn't work out.
The linear-regression channel over the last InpLength bars (50 by default) gives an entry from the edge, not from nowhere: three lines — mean (solid) + upper/lower (dashed), width = ± InpMult ×standard deviation.

  • Green (BULL) / Red (BEAR) / Yellow (FLAT) — based on the regression slope, normalized and compared against the InpThreshold threshold.
  • Label in the chart corner: PriceChannel: BULL/BEAR/FLAT slope X.XX .
  • Wide channel = high volatility/strong trend. Narrow channel = calm before an impulse — the market "coiling like a spring".


How to read it: the channel edges act as support/resistance; after a breakout, the middle line usually switches roles. The channel's direction filters out false signals against the trend.
Simple idea: price at the green lower edge — wait for Buy; at the red upper edge — wait for Sell. Against the channel's direction, signals are weaker.

1.3 Support/Resistance Zones 

Hand-drawn levels — different ones today, different ones tomorrow, and stops pile up right where you drew yesterday's line.
The indicator finds levels on its own, from confirmed swing pivots over the last SRZ_InpLookback bars (5000 by default), and updates them without trader intervention.
  • Green — support, red — resistance.
  • Weak zone — thin dashed line (1 touch). Strong zone — thick solid line + rectangular fill ( InpStrongTouches =2+ touches) — the key levels to watch first. Label next to the line: STRONG/WEAK RESISTANCE/SUPPORT ZONE price (±% of current) .
  • Broken zones aren't deleted — they remain as a dotted line with the historical memory of the level, not just "the level disappeared".
  • Nearby price touches (radius broken price label — a InpTouchPts ) merge into a single zone instead of duplicating — the touch counter grows, the zone stays one.

How to read it: price moves from level to level. Open a position from a strong level, and place the target before reaching the next strong level, not right on it. Bounce or breakout: Bounce — in a sideways/weak trend: find the nearest strongest level, wait for the bounce to start, trade in its direction. Breakout — in a strong trend: wait for the level to break + a retest of the same level from the other side, trade in the breakout's direction.
Advanced idea: you don't need to wait for every module to agree at once — 2–3 factors (level + channel edge + EMA turn) already give a noticeably more reliable entry point than a level alone.

1.4 Pressure Dots + Pump/Dump + Divergences (TudasCandleSignals)

Candles say a lot, but it's hard to track every tick — you miss half the clues, and the ones you do notice get interpreted a little differently each time.
Big-player pressure — colored dots next to the candle's wick:
  1. Dot at the low, green — buying pressure.
  2. Dot at the high, red — selling pressure.
  3. Dot size = pressure strength (close offset from the bar's center, reinforced by anomalous volume). Weak signals (below Pressure_MinStrength ) aren't drawn.
  • Pump (green label with an up arrow) — volatility compression + volume increase on the breakout bar + a close above the compression range. A zone where big players were quietly building a position — an impulse is brewing.
  • Dump (red label with a down arrow) — a recent high pierced followed by a weak close — a classic retail stop-hunt, a strong sell signal.

Divergence counter — one of the strongest phenomena in technical analysis: price marks a new extreme, but the oscillator doesn't — the move is losing strength underneath. Calculated across 11 oscillators at once (RSI, MACD, Stochastic, AO, CCI, Momentum, OBV, ADX, MFI, ROC, WPR):
  • Red arrow up — bearish divergence, green down — bullish.
  • Number in the circle — how many oscillators confirmed the divergence (minimum InpMinCount =3, maximum 11).
  • Filled circle — also confirmed by money flow (OBV/MFI diverged too) — a reinforced signal.
  • False divergences, after which no real move followed ( InpProveBars bars), remove themselves retroactively.
Simple idea: bullish divergence at the bottom — wait for Buy; bearish at the top — wait for Sell. The higher the number in the circle, the stronger the signal.

1.5 "Instant Technical Analysis" Panel

Everything described above is manual work: looking at 5 different layers and weighing what they say together yourself. The panel does this automatically.
15 factors, reliability scale 0–30

№ 

Factor


Source


1–4
EMA20/50/100/200 trend
slope of the EMA Ribbon lines
5 Price channel
PriceChannel state
6 "Whale" event (VSA)
narrow bar+anomalous volume+close at the edge = pressure; wide bar+anomalous volume = impulse
7 Volume delta
volume on bullish bars minus bearish bars
8-12 RSI/Stochastic/MFI/CCI/Momentum
rising/falling over recent bars
13 Latest divergence
if more recent than AN_DivRecencyBars bars
14 Position next to an S/R zone
closer to support or resistance
15 Latest Pump/Dump
if more recent than AN_PumpDumpRecencyBars bars

  • Each factor contributes +1 (buy side), −1 (sell side), or 0. The sum determines direction, reliability = |sum|×2, max 30 — but the more factors that ACTUALLY line up at the same time, the higher and more reliable that number is, and vice versa: 2–3 points means almost nothing lined up, the signal isn't worth attention. The signal fires when reliability ≥ AN_MinScoreToFire (a threshold calibrated against the real score distribution — the theoretical max of 30 is nearly unreachable), no more than once every AN_CooldownBars bars, and only on an already-closed bar — reliability matters more than how fast it appears. What appears on the chart when it fires:
  • BUY/SELL XX% badge next to the entry.
  • Analysis panel: sections "1) Trend / 2) Levels / 3) Entry Confirmation" — each factor with a colored dot (green = favors buy, red = favors sell, yellow = neutral), then Reliability: N/30 points , entry/SL/TP, risk/reward ratio, and a live line below that updates every bar: the current floating result while the position is "open", and after closing, the final outcome by stop or by take.
  • Entry level and SL — in large white text, so they don't get lost on the chart.
  • TP1/TP2/TP3 — from the nearest S/R zones in the trade's direction, but never closer than the stop (minimum 1R/2R/3R) — the risk/reward ratio is protected at the calculation level, not just visually.
  • Touch counter at the bottom left — how many times TP1/TP2/TP3/SL were actually reached across every signal fired during the session

Part 2 — Bottom Indicator: TudasDownCombined.mq5

2.1 Money Flow

Price is rising, but money is actually leaving the asset — you can't see this in the candles, and the move dies right after you enter, because there's no real buyer behind it.
Money Flow shows the intensity of capital entering and leaving the asset, before this shows up in price, not after. The line is smoothed through a cascade of EMAs to strip out small-player noise and show the direction the big players are setting.
  • Flow rising — money coming in — bullish signal.
  • Flow falling — money leaving — bearish signal.
  • Green zone (near 100%) — market top. Red zone (near 0%) — market bottom.
  • Single label in the corner: Flow: NN% .

Simple idea: price leaves the red zone (bottom) and flow starts rising — wait for Buy. Leaving the green zone (top) with flow falling — wait for Sell. Works best with the flow's direction — shorting against a rising flow of big players is risky, that kind of counter-signal is best filtered out.


2.2 Trend Ribbon

The wave just started, or is it already ending — by eye these two states are almost indistinguishable.
The ribbon is colored by direction: green — rising wave, red — falling wave. A color change at the wave's turn is a possible reversal signal.


Advanced idea (three-wave combo): determine the overall trend with Money Flow → confirm with an Impulse turn → enter on the ribbon/analysis-panel signal → results tend to be more precise on higher timeframes.



2.3 Impulse

There's movement on the chart, but no force behind it — the trade reverses right after you enter, because there was no real volume behind the impulse.
Impulse is the fastest, least smoothed layer in the package: the wave changes color by direction (green = bullish mood, red = bearish), wave size = current strength of buyers/sellers, dots at peaks/troughs = turning points.

Three uses:
  1. Entry — in an uptrend, the best entries are green dots on a green wave.
  2. Averaging in — the same colored dot again, in the same direction — you can add to the position with the trend.
  3. Taking profit — an opposite-colored dot appears — signal to close the position.

Being the fastest layer, it's not enough on its own — by default it's used as an early warning, with reliability confirmed by Money Flow/the Ribbon/the analysis panel. Works best with an already established trend.

2.4 Whales (VSA)

A big player is quietly building a position while retail jumps in right at the peak.

The module analyzes bar volume and range (honest disclaimer: forex/CFD brokers don't provide data on individual trade sizes — this is volume analysis under the Wyckoff methodology, not a literal "whale detector")

  • Pressure (narrow bar + anomalous volume + close at the edge) = absorption/distribution — a phase where a big player is accumulating or unloading a position.
  • Impulse trades (wide bar + anomalous volume) = an aggressive trade already opened by a big player.
  • The wave doesn't cut off instantly — it holds and decays smoothly, forming a shaped mountain, not an isolated flash.
  • Text labels right on the chart: "R↑/R↓" (reversal — absorption at the bottom/distribution at the top) and "I↑/I↓" (impulse — trend continuation) — green for buy, red for sell.
  • A readiness dot on the main chart — appears when several consecutive events cluster in the same direction ( Kity_ReadinessPersistEvents , 3 by default) — a signal that the accumulation/distribution phase is about to end.

Simple idea: knowing where a big player opens and closes positions means trading alongside the strongest market participants, not against them.

Advanced idea: identify the market phase from the pressure → confirm the big player's strength with impulse trades and the readiness dot → enter with the trend on the signal.

2.5 Overheat Scale

Two typical mistakes: entering after the move already happened, and entering right as the impulse starts fading.
The scale combines 6 oscillators at once (RSI, StochRSI, Stochastic, MFI, CCI, Momentum) into a single compact strip — one unified "sensor" for market overheating, instead of watching six charts at once.
  • Green — overbought (buy-side strength). Red — oversold (sell-side strength). Grey — neutral.
  • Segment brightness = degree of overheating (how far the move has gone).
  • Runs with hysteresis (doesn't switch off instantly at the smallest pullback — there's a separate zone-exit level, so it doesn't flicker every bar).
  • Labels on the right update every tick: RSI (62%), etc
Entry rule: open the trade when overheating first appears, close as the scale starts to fade.
"Buy the green" — enter on green overheating, exit as it fades. "Sell the red" — mirror for red. The more of the 6 oscillators that overheat at the same time, the more reliable the signal.

Part 3 — General Principles

  1. Reliability matters more than speed. Every marker and both panels are calculated only on already-closed bars — a signal may appear a bar later, but it never "changes its mind" afterward.
  2. The more factors that line up at the same time, the stronger the signal — this principle holds at every level of the package: from a single divergence, to all six Overheat Scale oscillators, to the final analysis panel.
  3. Best used with the trend or in a flat market, on higher timeframes. Against the trend, signals are weaker — short targets only, or skip them.
  4. Thresholds and weights are calibration hypotheses, obtained through testing on real data, not dogma — they're tuned to the specific instrument/timeframe via debug mode ( ..._Debug=true ), which prints the real signal distribution to the journal.
  5. Simple strategy — wait for the corresponding layer's Buy/Sell signal and enter. Advanced strategy — don't wait for every module to agree at once; 2–3 matching factors already give a noticeably more reliable entry point than any one alone
おすすめのプロダクト
The package consists of two MetaTrader 5 indicator files that are normally placed together on the chart: TudasInstantAnalysis.mq5   — the "top" indicator, drawn over price on the main chart. TudasDownCombined.mq5   — the "bottom" indicator, an independent subwindow below the chart. The logic has been calibrated, and continues to be calibrated, against real XAUUSD data. Part 1 — Top Indicator:   TudasInstantAnalysis.mq5 1.1 EMA Ribbon — moving-average ribbon Trend "by eye" on candles is easy t
インディケータは現在のクオートを作成し、これを過去のものと比較して、これに基づいて価格変動予測を行います。インジケータには、目的の日付にすばやく移動するためのテキスト フィールドがあります。 オプション: シンボル - インジケーターが表示するシンボルの選択; SymbolPeriod - 指標がデータを取る期間の選択; IndicatorColor - インジケータの色; HorisontalShift - 指定されたバー数だけインディケータによって描画されたクオートのシフト; Inverse - true は引用符を逆にします。false - 元のビュー。 ChartVerticalShiftStep - チャートを垂直方向にシフトします (キーボードの上下矢印)。 次は日付を入力できるテキストフィールドの設定で、「Enter」を押すとすぐにジャンプできます。
CyberTradeTHxAI Gold Sniper MT5 Professional Gold Trading Signal Indicator for MetaTrader 5 CyberTradeTHxAI Gold Sniper MT5 is a professional-grade Gold (XAUUSD) trading indicator developed to identify high-probability Buy and Sell opportunities using trend analysis, pullback confirmation, and intelligent market structure detection. Designed for both beginner and advanced traders, the indicator automatically calculates optimal Entry Zones, Stop Loss, and multiple Take Profit levels while provid
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
プレミアムレベルは、正しい予測の精度が80%を超える独自の指標です。 この指標は、最高のトレーディングスペシャリストによって2か月以上テストされています。 あなたが他のどこにも見つけられない作者の指標! スクリーンショットから、このツールの正確さを自分で確認できます。 1は、1キャンドルの有効期限を持つバイナリーオプションの取引に最適です。 2はすべての通貨ペア、株式、商品、暗号通貨で機能します 手順: 赤い矢印が表示されたらすぐにダウントレードを開き、青い矢印が表示されたら閉じます。青い矢印の後に開くこともできます。 試してテストしてください!推奨設定はデフォルトです! 日足チャートで最高の精度を示します! インディケータは、2600 Pipsの収益性に対して、約10Pipsという非常に小さなマージンを使用します。
Japanese このインジケーターは、チャートパターンでのトレードを好むトレーダーにとって、高度なチャート分析アシスタントとして機能します。目視での分析負担を軽減し、利益を上げるための精度を高めるように設計されています。 実際の使用においての、このインジケーターの主な利点と特徴は以下の通りです: 1. 自動パターン検出 (Automated Pattern Detection) 時間の節約とバイアスの軽減: 手動でトレンドラインを引く必要はありません。価格のスイングポイント(Pivot High/Low)を検索し、価格構造が条件を満たすと、ライジングウェッジ(上昇楔形)とフォーリングウェッジ(下降楔形)を自動的に描画します。 あらゆる状況を網羅: パターン形成中、ブレイクアウト、さらにはパターン失敗(Failed)まで検出でき、市場の全体像を明確に把握できます。 2. ターゲットとフィボナッチTPの内蔵 (Built-in Targets & Fibonacci TP) ターゲットを自動計算: ブレイクアウトが発生すると、システムはウェッジの開き幅に基づいてメインターゲットの距離を即
##   ONLY GOLD ##   Тiльки Золото ## **Mercaria Professional Trading Zones - Complete Guide** ## **Mercaria Professional Trading Zones - Повний посібник** ### **How Mercaria Zones Work / Як працюють зони Mercaria** **English:** Mercaria Zones is an advanced trading indicator that identifies high-probability support and resistance areas using ZigZag extremes combined with mathematical zone calculations. The indicator works on multiple timeframes simultaneously, providing a comprehensive view
SophieSMC One is a premium Smart Money Concepts indicator designed specifically for XAUUSD (Gold) traders who want a cleaner, more structured and institutional approach to the market. Built around real market structure concepts, SophieSMC One combines multiple Smart Money Concepts tools into one powerful and visually clean trading system for MetaTrader 5. FEATURES: • BOS & CHoCH market structure detection • Fair Value Gap (FVG) identification • Liquidity sweep visualization • Order Block recog
Volume Profile Multiple — アルゴリズム取引対応バッファ付き マルチブロック・ボリュームプロファイル 時間足を変えるたびにボリュームプロファイルを一つずつ描き直し、再計算する手間にうんざりしていませんか? Volume Profile Multiple は、チャート上に複数の連続したボリュームプロファイルを自動的に描画し、直近の表示範囲だけでなく、相場の各区間で機関投資家の関心が実際にどこにあったのかを明らかにします。 この指標が行うこと 本指標は価格履歴をN本のローソク足ごとのブロックに分割し(ブロック数と1ブロックあたりの本数は自由に設定可能)、各ブロックについて完全なボリュームプロファイルを計算します:コントロールポイント(POC)、バリューエリアの上限・下限(VAH/VAL)、高出来高ゾーンと低出来高ゾーン(HVN/LVN)です。結果として、ブロックごとの市場構造を視覚化したマップが得られ、実出来高に基づく蓄積ゾーン、サポート・レジスタンス、バリューエリア間の価格ローテーションの特定に役立ちます。 アルゴリズム取引にも対応 多くのボリュームプロファイル系
Cumulative Volume Delta MA-X MTF (Gradient Momentum 搭載) このインディケーターは、MetaTrader 5向けにマルチタイムフレーム(MTF)での累積ボリューム・デルタ(CVD)分析を行います。ティックデータまたはリアルボリュームデータを分析することで、買い圧力と売り圧力の純差を計算し、オーダーフローのセンチメントを視覚的に表現します。 ロジックと機能 このインディケーターは、数学的なアプローチを用いてボリューム分析を行います: データソース : 取引所銘柄のリアルボリューム(Real Volume) と、FX/CFD向けの OHLCウィック・プロキシ(OHLC Wick Proxy)計算の両方をサポートしています。 グラデーションシステム : 4色の移動平均線がトレンドの段階を識別します: ディープスカイブルー(DeepSkyBlue) : 数値が正で、上昇中。 オレンジ(Orange) : 数値が正で、下落中。 マゼンタ(Magenta) : 数値が負で、下落中。 パープル(Purple) : 数値が負で、上昇中。 5レイヤー
Overview Heiken Ashi CE Filtered MT5 is a technical indicator for the MetaTrader 5 platform. It integrates smoothed candlestick charting with a dynamic exit strategy and a customizable trend filter to deliver clear buy and sell signals. The indicator is designed to improve trend detection and signal reliability by reducing market noise. If you want to see more high-quality products or order the development/conversion of your own products, visit my partners' website: 4xDev Get 10% OFF on manual
Part 2 — Bottom Indicator: TudasDownCombined.mq5 2.1 Money Flow Price is rising, but money is actually leaving the asset — you can't see this in the candles, and the move dies right after you enter, because there's no real buyer behind it. Money Flow shows the intensity of capital entering and leaving the asset, before this shows up in price, not after. The line is smoothed through a cascade of EMAs to strip out small-player noise and show the direction the big players are setting. Flow rising
PatternScope — Multi-Pattern Recognition for MT5 PatternScope is a multi-pattern recognition indicator for MetaTrader 5. It scans price action for classic chart patterns, confirms breakouts, and draws clear   Entry, Stop Loss and Take Profit   levels. A compact dashboard shows the latest pattern, bias and Risk:Reward. Patterns:   Double Top/Bottom, Triple Top/Bottom, Head and Shoulders (and inverted), Bullish & Bearish Flag, Pennant, Rising & Falling Wedge, Triangle, Rectangle, Cup and Handle —
SMART ATR GRID PRO++ – Adaptive Grid Intelligence Suite is a next-generation, institutional-grade grid trading indicator engineered for traders who demand precision, adaptability, and comprehensive market structure analysis. By seamlessly integrating   Adaptive Volatility Grid System ,   KAMA Candle Trend Filtering ,   Multi-Factor Trend Detection (ADX + EMA20/50) ,   Dynamic Heatmap Zone Engine , and   Real-Time Market Regime Classification , this indicator delivers a complete decision-making
学習可能な人工知能とニューラルネットワーク。 SolarTrade Suite 金融指標 - Theia 市場指標! これは、革新的で高度な特別なアルゴリズムを使用して値を計算する指標です。 金融市場の世界であなたのアシスタントとなるでしょう。 SolarTrade Suite - Theia 市場指標は、金融商品の価格を数値先まで予測し、その結果をターミナルウィンドウにコメントとして表示します。 説明の下部にある SolarTrade Suite シリーズの他の製品もご覧ください。 投資と金融市場の世界を自信を持ってナビゲートしたいですか? SolarTrade Suite - Theia 市場指標は、情報に基づいた投資判断を行い、利益を増やすのに役立つ革新的なソフトウェアです。 SolarTrade Suite - Theia 市場指標金融指標のメリット: - 正確な計算:当社の指標は、高度なアルゴリズムと分析手法を使用して、市場の動きを正確に予測します。 この場合、効果的な人工知能です。 - ユーザーフレンドリーなインターフェース:直感的なインターフェースにより
Gann Time–Price Square Cycles (MT5) このインジケーターは、W.D. Gann が提唱した「時間と価格のバランス」という概念を応用しています。 チャート上のスイングを検出し、 Quarter, Half, Full サイクルの時間間隔を将来に向けて投影し、垂直線で表示します。 このツールは、トレーダーがスイングの大きさと経過時間の関係を、MT5チャート上で直接研究できるよう設計されています。 機能 PivotDepth と最小スイングサイズに基づき、スイングの高値・安値を検出。 Quarter, Half, Full の調和的な時間間隔を投影。 計算されたサイクルポイントを示す垂直線を描画。 インジケーターを削除するまで、描画されたラインはチャート操作中も保持。 特徴 Quarter, Half, Full サイクルごとに独立した PivotDepth と MinSwingSize パラメータを設定可能。 新しいバー生成時、シンボル変更、タイムフレーム変更時に自動更新。 最大 5000 本の履歴バーを処理できる設計。 同じチャートに複数インスタンスを
This indicator is the same as the popular Heiken Ashi Smoothed. The Heikin Ashi indicator for MetaTrader 5 already exists, but it has two disadvantages: It paints the candles not accurate. It's not possible to change the candle width. See also Heikin Ashi in MQL5 Code Base . In this version there are no such disadvantages.
GoldPro Max
Taher Ahmed Mohamed Taha Elshafei
GOLDPRO MAX Advanced Multi-Timeframe and Smart Money Market Analysis for MetaTrader 5 GoldPro Max is a professional market analysis indicator for MetaTrader 5 designed to help traders study market direction, price structure, liquidity, market imbalance and potential trading areas from multiple perspectives. The indicator combines Multi-Timeframe Analysis, Smart Money Concepts, Market Structure, Liquidity Analysis, Order Blocks, Fair Value Gaps, Premium and Discount analysis, Smart Analytical Eng
Auto-levels trading robot: key levels & risk manager Short Description: Automatically plots dynamic weekly support and resistance zones with real-time risk tracking. Full Description: Elevate your chart analysis with a dynamic tool designed to map the market structure effortlessly. This indicator automatically calculates and plots critical support and resistance levels based on weekly price action, updating every new week to align seamlessly with current market dynamics. By projecting precise pe
GDS Renko Pip ST Chart - Pip-Based Renko Chart Indicator for MetaTrader 5 GDS Renko Pip ST Chart is a pip-based Renko chart indicator for MetaTrader 5. It helps traders build and study cleaner Renko price movement using a practical fixed pip or point-based brick structure. This tool is designed as a Renko chart foundation for manual analysis. It does not predict the market, does not generate buy or sell signals and does not decide whether a trade should be opened. Renko EDGE EA Golden Delta | A
GDS Renko Pip ST - Fixed Brick Renko Chart Tool for MetaTrader 5 GDS Renko Pip ST is a Renko chart tool for MetaTrader 5 designed for traders who want to build and study fixed brick Renko movement using a practical pip or point-based setup. The purpose of this tool is simple: create a cleaner Renko structure so the trader can observe direction, brick runs, pullbacks, support and resistance behavior without normal candle noise. This is not a signal indicator and it does not predict the market. It
Ing (inguz,ingwar) - the 23rd rune of the elder Futhark ᛝ, Unicode+16DD. Add some runic magic to your trading strategies. The correct marking of the daily chart will indicate to you the successful moments for counter-trend trading. Simple to use, has high efficiency in volatile areas. Be careful in lateral movements. Signals ᛝ are generated when the main lines of construction intersect. Red arrow down - recommended sales Blue up arrow - recommended purchases rare purple arrows indicate exce
ONNYX INDICATOR バージョン 1.14 MetaTrader 5 用のサプライ・デマンド分析インジケーターです。確定したスイングからゾーンを作成し、ATR で幅を調整し、品質をパーセント表示します。確定足の BUY/SELL シグナルは後から消えない設計です。 主な機能 - ゾーン内に品質パーセントを表示するサプライ・デマンドゾーン。 - 確定足で表示される大きな BUY/SELL 矢印。 - EMA トレンドフィルターとローソク足反発確認。 - トレンド、価格レベル、市場状況パネル。 - 関連する経済指標を最大5件表示。発表前は Forecast/Previous、発表後は Actual を表示。 - 60秒ごとのニュース更新とストラテジーテスター用カレンダーキャッシュ。 - ポップアップ、プッシュ、メール通知。 - iCustom 用バッファ:0=BUY価格、1=SELL価格。 使用方法 チャートに適用し、履歴の読み込みを待ってから、トレンドと有効ゾーンを確認し、確定足シグナルを独自のリスク管理と組み合わせてください。XAUUSD H1 は見やすい構造、M15 はより
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.
Passband Filter Pro Passband Filter Pro is a trend and cycle oscillator for MetaTrader 5. It is built on the Ehlers Super Passband Filter, a band pass filter that removes long term trend drift and short term noise so that only the dominant market cycle remains. The result is a clean oscillator with a color cloud that shows overbought and oversold conditions, cycle turns, and momentum on forex, gold, indices, stocks and crypto. Most traders enter too early or too late. Simple moving averages la
Trade Extender
Loncey Duwarkah
5 (1)
Autonomously executes trades, overseeing the entire process from initiation to completion.  Free support via chat, email and remote assistance Originally built for XAUUSD (Gold). Settings changes for other symbols Powerful rules management Enhanced positioning features Risk Management / Dynamic lot sizing Quick Setup Symbols : XAUUSD Investment for all: Our trading bot is crafted to serve traders of all investment levels, ensuring accessibility to the forex market even for those with limited fu
Enigmera MT5
Ivan Stefanov
3.67 (3)
Enigmera は MetaTrader 5 用の手動インジケーターおよびトレーディングシステムです。フラクタルサイクルを用いてサポートとレジスタンスの水準を計算し、蓄積局面を示し、現在の値動きの方向とターゲットを描画します。この分析はトレンド局面でも調整局面でも利用できます。 本インジケーターはチャート上のボタンで手動操作します。MetaTrader のストラテジーテスターのビジュアルモードで起動し、購入前に過去データ上の動作を確認できます。ボタンで操作する一部の機能は、テスターではライブチャートと同じように動作しない場合があります。 動作の仕組み 銘柄のフラクタルサイクルから、現在のトレンドのサポートライン、その周囲の許容偏差チャネル、3 つの偏差レベル、ターゲットラインを導き出します。サポートラインは相場の状態を示し、価格がその上を維持している間はトレンドが継続し、ラインを割るとトレンドの転換を意味します。いったん描画されたラインは再描画されません。 大半の機能はチャート左側のボタンで操作するため、相場環境の変化に合わせて表示をすばやく調整できます。 ボタン ON/OFF:イン
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
LuoMo Volume & Price Structure 8.98 A multi-function chart indicator for   MetaTrader 4 and MetaTrader 5 , designed to display key volume, volatility, sentiment, and price-structure information directly on the main chart. Main Features Volume and price-based Support & Resistance Volume spike and exhaustion signals ATR volatility expansion alerts Volume Profile with HVN and LVN Bullish and bearish sentiment distribution Developing or fixed POC VAH and VAL levels Supply and Demand zones Volume-wei
RBreaker Gold Indicatorsは、金先物の短期日内取引戦略であり、トレンドフォローと日内反転の2つの取引手法を組み合わせたものです。トレンド相場での利益を捉えるだけでなく、相場が反転した際には迅速に利確し、その流れに沿ってポジションを反転させることができます。 この戦略は、アメリカの雑誌『Futures Truth』において、15年連続で最も収益性の高い取引戦略トップ10に選ばれた実績を持ち、非常に長いライフサイクルを誇り、現在も国内外で広く使用・研究されています。 本インディケーターは、2026年の金先物の値動きに対応し、14日間のATR指標に基づいて、ブレイクアウト係数A、観察係数B、リバーサル係数Rをより合理的な値で定義しています。非常に優れたインディケーターであり、安定的な年間収益を実現しています。ぜひおすすめします〜
このプロダクトを購入した人は以下も購入しています
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
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
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
CGE Trading Suite
Carl Gustav Johan Ekstrom
5 (2)
Institutional-Grade Analytics for MT5 The full analytical edge of a professional trading desk, built into your MT5 chart. Standard retail platforms lack the depth required for professional market analysis. The CGE Trading Suite bridges this gap, transforming MetaTrader 5 into a comprehensive workspace. By integrating 21 proprietary modules into a single, unified chart interface, the suite eliminates fragmented analysis. It provides definitive clarity across market structure, timing, momentum,
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
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
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
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
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
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
Trend and Signals MT5  indicator scans  30 trading Instruments (Forex, Metals and Indices).     It uses special algorithm on the  current market   based on   Pure Price Action   and display the overall trend and signal on the dashboard. When signals are produced the indicator sends alert and notification. Strategy for Signals This indicator uses the daily timeframe to determine the direction of the trend. The hourly timeframe is used to identify possible entries. Main trend and is determined by
This indicator is based on a mathematical formula and an ANN combined, designed to make a model(using previous prices) of the most recent market condition (any chart*) in order to use the model as a forecasting tool. *This indicator can operate on any chart/timeframe, but it's suggested you use multiple timeframes for each trade because this method relies solely on the time factor, you can not use this indicator to predict price volatility, but if it's fit correctly it will show you when the nex
This indicator is based on the crossing of two Moving Average with the RSI It is intended for scalpers Specially designed for Boom and Crash syhtetic indices from Binary.com/Deriv.com It is easy to use and intuitive. We recommend its use on M1 and is equipped with three types of notification Email alert Sound notification Push notification these parameters can be activated and deactivated.
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) は
This indicator is a scalping indicator intended solely for the Boom and Crash indices of the Deriv Limited market It supports Boom 500, Boom 1000, Crash 500 and Crash 1000 Not repaint and no bug The settings are intuitive and easy to use The product activation number is 20 The Time Frame used depends on the user If you are an aggressive scalper then just use M1 For long trades use M15 If you are conservative use M5 Please contact me for more details of its use
The Recuroid indicator shows very good entry points. Just look at the screenshots, then download the free version and look in the strategy tester and see for yourself. The system is based on two key algorithms. The first algorithm (managed) creates a system of balanced transition from the buy zone to the sell zone and vice versa, draws arrows and lines, and forms entries. The second algorithm (managing) corrects the initial data for the first algorithm (managed) by measuring virtual windows, t
Live broadcast of the indicator on YouTube. Please click on the link below for more credibility. There are also videos of the indicator that you can watch. Note that the broadcast is late, do not rely on it. Only a review of the indicator is only a review of the indicator’s accuracy, which does not lose almost and the profit rate reaches 95%. I will work with great accuracy on the CRASH coin 1000 INDICES
MMM Gold Sniper MT5
Gilang Wardhana Purnama Putra
Indicator is based on   Market Maker Strategy.   NO REPAINT. MM's are traders and their objective is to make money.  This includes strategies to trade against retails traders.  The major difference between them and other traders is that they have the ability, through access to massive volumes, to move price at their will.  So to make money, they aim to buy at a lower price and then sell at a higher price. They achieve this by:  1. Inducing traders to take positions. This is achieved by using a
Tatino Super Signals is Non Repaint Indicator for Binary Option trading and Forex trading. Recommendations: Timeframe: All timeframes. For best results we recommend using it on M1, M5 and M15 timeframes. Currency pairs: All Pairs Account type: All Type Broker time: Any Brokers : Alls Binary Trading : Expired 1 Candle Buffer Buy=1, Sell=0, Entry Next Candle Recommended Forex trading stop loss : 15 pips Recommended  Forex tradingTake profit levels : 15 pips Specifications: Does not repaint   Pa
Magicx
Hasan Abdulhussein
The indicator places a buy or sell signal when the conditions of the strategy it was designed with are met. The strategy is guaranteed, strong, and has been tested for 9 years. The indicator is for binary options and can be converted into a bot by linking it to MT2Trading, where it sends the signal to this platform. This platform automatically opens a trade on the trading platform you are using, whether it is Pocket Option, IQ Option, or any other binary options platforms. The entry is on the n
作者のその他のプロダクト
ARGUS Breakout Universal — Volatility Breakout EA for MT5 A fully automated breakout trading system built on one core principle: enter only when the market is truly moving, protect capital when it is not. No martingale. No grid. No averaging. How It Works The EA detects consolidation zones — periods where price compresses within a tight range. When price breaks out with volume confirmation, the EA enters in the breakout direction, filtered by a Daily SMA trend filter to avoid counter-trend trade
The Opening Range Breakout Portfolio The Opening Range Breakout Portfolio A fully automated, intraday diversification system for US stock indices. > INSTITUTIONAL-GRADE LOGIC. SINGLE-CHART SIMPLICITY. Diversification over aggression Most automated systems rely on aggressive risk parameters applied to a single setup. The Opening Range Breakout Portfolio pursues a smoother equity curve through breadth. Target Trades the opening range of the US cash session. Scope Spans multiple index symbols and t
KijunMaster EA 基準線 Expert Advisor for MetaTrader 5 Kijun Master Two classic Ichimoku plays, executed with machine discipline. KijunMaster buys the pullback when a trend rejects the Kijun-sen, and fades the spike when the line goes flat. Nothing else, ever. Hard stop on every trade Closed-bar signals, zero repaint No martingale No grid No averaging down The idea One line, two regimes, one EA that knows the difference Every Ichimoku trader on the planet watches the same line. The Kijun-sen is the
The package consists of two MetaTrader 5 indicator files that are normally placed together on the chart: TudasInstantAnalysis.mq5   — the "top" indicator, drawn over price on the main chart. TudasDownCombined.mq5   — the "bottom" indicator, an independent subwindow below the chart. The logic has been calibrated, and continues to be calibrated, against real XAUUSD data. Part 1 — Top Indicator:   TudasInstantAnalysis.mq5 1.1 EMA Ribbon — moving-average ribbon Trend "by eye" on candles is easy t
Part 2 — Bottom Indicator: TudasDownCombined.mq5 2.1 Money Flow Price is rising, but money is actually leaving the asset — you can't see this in the candles, and the move dies right after you enter, because there's no real buyer behind it. Money Flow shows the intensity of capital entering and leaving the asset, before this shows up in price, not after. The line is smoothed through a cascade of EMAs to strip out small-player noise and show the direction the big players are setting. Flow rising
フィルタ:
レビューなし
レビューに返信