Breakout and rejection range trading

Core Concepts

The Breakout Trend Indicator identifies two key market behaviors:

  • Breakouts: Price breaks through support/resistance levels
  • Rejections: Price fails to break through these levels

Indicator Calculations

Top = Highest high of X candles (excluding current) Top1 = Highest high of X candles (including current) Bottom = Lowest low of X candles (excluding current) Bottom1 = Lowest low of X candles (including current) H1 = Top1 - Bottom1 (Range) Buy Trigger = Top1 - 0.3 × H1 (Exit level for uptrends) Sell Trigger = Bottom1 + 0.3 × H1 (Exit level for downtrends)

Visual Elements

Element Color Meaning
Top/Bottom Lines Blue/Red Support/Resistance from X candles
Buy/Sell Trigger Lime/Orange Trend exit thresholds
Purple Arrow ↓ Purple Rejection at Top (bearish)
Aqua Arrow ↑ Aqua Rejection at Bottom (bullish)
EMA Line Yellow Trend filter
MTF Lines Light colors Higher timeframe levels

Breakout & Rejection Rules

Bullish Breakout

Conditions (all must be met):

  •  Top1 > Top (new high created)
  • Close > Top (candle closes ABOVE previous Top)
  • Trend State = UPTREND

BEFORE: BREAKOUT: │ 1.2000 ═══ Top │ 1.2015 ─╱ Close at 1.2012 ✓ │ │ 1.2000 ════ Top (Broken!) │ 1.1900 ═══ Bottom │ 1.1900 ═══ Bottom NO TREND → UPTREND CONFIRMED

Bearish Breakout

Conditions:

  •  Bottom1 < Bottom (new low)
  •  Close < Bottom (closes below Bottom)
  •  Trend State = DOWNTREND

Important: Only closing price matters, wicks don't count!

Rejection at Top (Bearish)

Conditions:

  1.  (high[i] ≥ Top OR high[i+1] ≥ Top) - Either candle touched Top
  2.  close[i] < Top AND close[i+1] < Top - BOTH closed below Top
  3.  NOT (Top1 > Top) - No breakout occurred

[i+1]: High 1.2008 ──┐ [i]: High 1.2005 ──┐ │╲ │╲ Top 1.2000 ══════════│═══════════════════════│═══ │ │ Close 1.1993 ──┘ Close 1.1992 ──┘ Purple Arrow → BEARISH REJECTION Bulls failed TWICE → High probability reversal DOWN

Rejection at Bottom (Bullish)

Conditions:

  1.  (low[i] ≤ Bottom OR low[i+1] ≤ Bottom)
  2.  close[i] > Bottom AND close[i+1] > Bottom
  3.  NOT (Bottom1 < Bottom)

Why check both candles? Two consecutive failures = stronger confirmation than single candle rejection.

Entry & Exit Strategies

Entry Methods

1. Breakout Entry

  • LONG: Enter when candle closes above Top, or wait for pullback to Buy Trigger
  • SHORT: Enter when candle closes below Bottom, or wait for pullback to Sell Trigger

2. Rejection Entry

  • Aggressive: Enter at next candle after rejection arrow appears
  • Conservative: Wait for confirmation candle that breaks high/low of rejection candle

3. Multi-Timeframe Confirmation (Highest probability)

Required conditions:

  •  Current timeframe shows valid signal
  •  MTF shows SAME direction trend (or neutral)
  •  EMA confirms direction (if enabled)

Exit Methods

1. Trigger Break (Primary Exit)

  • LONG: Exit when price closes BELOW Buy Trigger
  • SHORT: Exit when price closes ABOVE Sell Trigger
  • Why: 30% retracement indicates weakening trend

2. Opposite Signal

  • Exit LONG when Rejection at Top appears (Purple arrow)
  • Exit SHORT when Rejection at Bottom appears (Aqua arrow)

3. Take Profit Targets

Based on Range (H1):

  • Conservative: 1.0 × H1
  • Moderate: 1.5 × H1
  • Aggressive: 2.0 × H1

Scale-out Strategy: Close 1/3 at each target level

Risk Management

Position Sizing Formula

Risk per trade = 1-2% of account Position Size = (Account × Risk%) / (Stop Loss in pips × Pip Value) Example: Account: $10,000 Risk: 2% = $200 Stop Loss: 100 pips Pip Value (1 lot): $10/pip Position Size = $200 / (100 × $10) = 0.2 lots

Stop Loss Placement

Breakout Trades:

  • LONG: Place SL below Bottom (with small buffer)
  • SHORT: Place SL above Top (with small buffer)
  • Reason: If price returns to these levels, breakout failed

Rejection Trades:

  • SHORT (Rejection at Top): SL above rejection high + buffer
  • LONG (Rejection at Bottom): SL below rejection low + buffer

Risk-Reward Ratios

Strategy Type Minimum R:R Recommended R:R
Breakout with MTF 1:1.5 1:2
Breakout without MTF 1:2 1:3
Rejection trade 1:2 1:3

Multi-Timeframe Rules

MTF Trading Principles:

  1. Align with MTF Trend

    •  GOOD: M15 Uptrend + H1 Uptrend
    •  BAD: M15 Uptrend + H1 Downtrend
  2. MTF as Support/Resistance

    • Take profit before MTF Top/Bottom
    • Expect reactions at MTF levels
  3. MTF Timeframe Selection

Current TF Recommended MTF Ratio
M5 M15-M30 3-6x
M15 H1-H4 4-16x
H1 H4-D1 4-24x

Trade Examples

Example 1: Successful Breakout Trade

Setup: M15 timeframe, X=20

1. Range: Top=1.2000, Bottom=1.1900, H1=100 pips 2. Breakout: Close at 1.2012 (above Top) ✓ 3. MTF Check: H1 = UPTREND ✓, MTF Top at 1.2200 ✓ 4. Entry: 1.2015 5. Stop Loss: 1.1895 (below Bottom) = 120 pips risk 6. Targets: TP1=1.2115, TP2=1.2165 7. Result: +133 pips average

Outcome:  WIN

Example 2: Rejection Reversal

Setup: H1 timeframe, Rejection at Top

1. Pattern: Both [i] and [i+1] touched 1.2000 Top 2. Both closed below Top (1.1993, 1.1992) 3. Purple arrow appears 4. Entry SHORT: 1.1985 5. Stop Loss: 1.2015 (above rejection) = 30 pips 6. Targets: TP1=1.1930, TP2=1.1900 7. Result: +70 pips average

Outcome: WIN

Example 3: Failed Trade (Learning)

Mistake: Ignored MTF warning

1. M15: Breakout above 1.2000 ✓ 2. MTF: H1 = DOWNTREND ❌ (IGNORED!) 3. MTF Top at 1.2020 ❌ (Very close!) 4. Entry LONG: 1.2010 5. Price hit MTF resistance, reversed 6. Exit at Buy Trigger: 1.1990 7. Result: -20 pips

Outcome:  LOSS
Lesson: ALWAYS check MTF before entering

Common Mistakes

1. Ignoring the Close

  •  WRONG: "High touched Top, entering long!"
  • CORRECT: Wait for CLOSE above Top to confirm

2. No Stop Loss

  •  "I'll wait for it to come back..." → Account blown
  •  ALWAYS place stop loss BEFORE entering

3. Revenge Trading

  •  After loss: Double position to "win it back" → Bigger losses
  •  Analyze what went wrong, maintain same risk per trade

4. Overtrading

  •  Taking every signal, 40-50% win rate, exhausted
  •  2-3 high-probability setups per day, 60-70% win rate

5. Ignoring MTF

  • "M15 looks perfect!" (ignores H1 downtrend) → Gets crushed
  •  Only trade when MTF aligns or is neutral

6. Wrong Position Sizing

  •  Fixed lot size regardless of stop distance
  •  Risk 1-2% per trade based on actual SL distance

Quick Reference Checklists

Before LONG Entry (Breakout):

  • [ ] Top1 > Top
  • [ ] Close > Top
  • [ ] MTF = Uptrend or Neutral
  • [ ] Not at MTF Top resistance
  • [ ] Stop loss set at/below Bottom
  • [ ] Position size = 1-2% risk
  • [ ] R:R minimum 1:1.5

Before SHORT Entry (Breakout):

  • [ ] Bottom1 < Bottom
  • [ ] Close < Bottom
  • [ ] MTF = Downtrend or Neutral
  • [ ] Not at MTF Bottom support
  • [ ] Stop loss set at/above Top
  • [ ] Position size = 1-2% risk
  • [ ] R:R minimum 1:1.5

Before LONG Entry (Rejection):

  • [ ] Aqua arrow appeared
  • [ ] Both candles tested Bottom
  • [ ] Both closed above Bottom
  • [ ] No breakdown occurred
  • [ ] Stop below rejection lows
  • [ ] R:R minimum 1:2

Before SHORT Entry (Rejection):

  • [ ] Purple arrow appeared
  • [ ] Both candles tested Top
  • [ ] Both closed below Top
  • [ ] No breakout occurred
  • [ ] Stop above rejection highs
  • [ ] R:R minimum 1:2

Parameter Settings

X Value (Lookback Period)

X Value Best For Characteristics
10-15 Scalping M5-M15 More signals, less reliable
20-30 Day trading M15-H1 Balanced (DEFAULT)
40-50 Swing trading H4-D1 Fewer signals, more reliable

Recommended Settings by Style

Conservative Trader:

X = 30 ShowMTF = true MTFTimeframe = H4 or higher ShowEMA = true, EMALength = 50 Only trade with full MTF + EMA confirmation

Aggressive Trader:

X = 15 ShowMTF = true MTFTimeframe = H1 ShowEMA = true, EMALength = 20 Can trade with partial confirmation

Beginner:

X = 20 (default) ShowMTF = true MTFTimeframe = one level higher ShowEMA = true, EMALength = 20 ONLY trade with full MTF confirmation Start with minimum position size

Key Success Factors

Do:+  Wait for proper close confirmation
 +Always check MTF before entering
 +Use rejection signals for reversals
 +Respect trigger levels for exits
 +Manage risk on EVERY trade
+ Keep a trading journal

Don't: - Trade based on wicks alone
- Enter without stop loss
- Ignore MTF warnings
- Revenge trade after losses
- Risk more than 2% per trade
- Overtrade in ranging markets

Final Tips

Trading Psychology:

  • Trust the system, follow rules mechanically
  • Accept losses as part of the game (40-50% loss rate is normal)
  • Quality over quantity - wait for best setups
  • Journal every trade to improve

Risk Management:

  • Never risk more than 2% per trade
  • Always use stop losses
  • Don't move stops away from entry
  • Scale out at profit targets

Market Conditions:

  • Best in trending markets
  • Avoid choppy/sideways markets
  • Wait for volatility if too quiet
  • Use higher timeframes in low volatility

Remember: No indicator is 100% accurate. Focus on process, not individual results. Let your edge play out over hundreds of trades.

Quick Summary

This strategy identifies:

  1. Breakouts when price closes beyond Top/Bottom levels
  2. Rejections when price fails to break these levels (both candles must fail)

Entry priorities:

  1. MTF confirmation (highest probability)
  2. Breakout entries (momentum)
  3. Rejection entries (reversal)

Exit when:

  1. Price closes beyond trigger levels (30% retracement)
  2. Opposite signal appears
  3. Profit targets hit

Success formula:

  • Right setup + Right timing + Right risk = Consistent profits

Good luck and trade safely! 




おすすめのプロダクト
Get ALERTS for break of your TRENDLINES, SUPPORT LINES, RESISTANCE LINE, ANY LINE!! 1. Draw a line on the chart (Trend, support, resistance, whatever you like) and give it a name (e.g. MY EURUSD line) 2. Load the Indicator and input the Line Name the same name in Indicator INPUT so system knows the name of your line (= MY EURUSD line) 3. Get Alerts when Price breaks the line and closes Works on All Time frames and charts LEAVE A COMMENT AND IF THERE IS ENOUGH INTEREST I WILL WRITE AN EA WHICH W
FREE
Golden Delta Library — Free MT5 Tools Market Description Short Description Golden Delta Library is a free MT5 toolkit for traders who want cleaner chart structure, Renko-based context, risk planning, and practical execution panels. The collection includes Renko indicators, SuperTrend / ADX Renko variants, XAUUSD helper panels, and RiskLab TradeDesk tools. Each product is designed to be lightweight, visual, and useful on live charts without promising automated profits or replacing trader judgme
FREE
Raymond Cloudy Day Indicator for MT5 – Pivot-Based Reversal and Trend Levels Raymond Cloudy Day Indicator is a pivot-based level indicator for MetaTrader 5 (MT5). It was developed by Ngo The Hung based on Raymond’s original idea and is designed to give a structured view of potential reversal zones, trend extensions and support/resistance levels directly on the chart. The default settings are optimised for XAUUSD on the H1 timeframe, but the indicator can be tested and adjusted for other symbols
FREE
Pivot Points are a classic technical analysis indicator that calculates the central pivot point (PP) as well as support (S1–S3) and resistance (R1–R3) levels based on the previous day’s High, Low, and Close. The indicator allows you to: • identify key zones where the price may bounce or break through • determine the direction of the trend • find good entry points, as well as set stop loss and take profit levels Indicator settings: • enable/disable PP, R1/S1, R2/S2, R3/S3 • enable/disable price l
FREE
B2U Market State System Part of the B2U Market State System A professional indicator suite designed to analyze market structure, trend state, and momentum. B2U Market State System 의 구성 요소입니다. 시장 구조, 추세 상태, 모멘텀을 입체적으로 분석하기 위한 전문 인디케이터 시스템입니다. Highlights structurally validated reaction zones after FVG inversion. The New Generation of Inversion Fair Value Gaps B2U IFVG BOX & Zone visually analyzes market reaction zones formed after Fair Value Gap (FVG) inversion. 차세대 Inversion Fair Value Gaps FVG 반
FREE
Ultra Momentum Advanced Directional-Force Market Analyzer Ultra Momentum is a professional momentum indicator engineered to detect the market’s true speed and directional dominance . It combines the classic Momentum calculation with an adaptive multi-period structure and high-quality algorithmic smoothing to deliver a noise-resistant, market-contextual view of momentum. Unlike standard oscillators, Ultra Momentum does more than measure a simple price difference: it analyzes the coherence of m
FREE
AliPivot Points is a Meta Trader 5 Indicator that draws you the latest pivot points. You can choose from timeframes ranging from 1 Minute to 1 Month. Calculation methods for pivot points includes: Classic Pivot Points Camarilla Pivot Points Fibonacci Pivot Points Woodie Pivot Points You can personalize the line colors, style, and width to suit your preference. The indicator displays values on the right side of the chart. AliPivot Points values can also be utilized by developers for creating Expe
FREE
The Advanced Support and Resistance Indicator for MetaTrader 5 leverages sophisticated pivot point detection algorithms to autonomously identify and visualize critical price levels on the chart. Utilizing a configurable pivot period (default: 20 bars) and data source (High/Low or Open/Close), it intelligently scans historical price action within a user-defined loopback window (default: 290 bars) to pinpoint pivot highs and lows with strict validation criteria for enhanced precision. Pivots are d
FREE
Pivot Point Supertrend (corresponds to Pivot Point Super Trend indicator from Trading View) Pivot Point Period:    Pivot point defined as highest high and highest low... input 2 = defining highest high and highest low with 2 bars on each side which are lower (for highest high) and are higher (for lowest low calculation) ATR Length  : the  ATR  calculation is based on 10 periods ATR Factor: ATR multiplied by 3
FREE
The CPR (Central Pivot Range) Indicator is a powerful technical analysis tool designed to identify key support and resistance levels on your MetaTrader 5 charts. It calculates the Central Pivot (CP) as the average of the previous day's high, low, and close prices, providing a central reference point. Calculates and plots 11 pivot levels (CP, BC, TC, S1-S4, R1-R4) Adjustable lookback period (default: 5 days) Option to show or hide price labels with customizable size and offset Fully customizable
FREE
Azimuth
Ottaviano De Cicco
5 (5)
Azimuth: Multi-Level Swing Structure Indicator for MT5 概要 Azimuth は Merkava Labs によるマルチレベルのスイング構造インジケーターです。4つの入れ子になったスイング階層、スイングアンカーVWAP、ABCパターン検出、そして確定足ベースの確認済みエントリー矢印を、Meridianアダプティブトレンドエンジンとともに一つのチャートに統合しています。ミクロなスイングからマクロなサイクルまで、ひとつのワークフローで確認できます。 多くのZigZagインジケーターは大きなスイングしか表示しませんが、Azimuthは4つの構造レベルを同時に表示し、早期サイクルのエントリー、後期サイクルの警告、完全な構造コンテキストを提供します。 1. 主な機能 Meridian Adaptive Trend Engine モメンタム・ゲーティングと動的ボラティリティ適応を備えたアダプティブ・トレンドリボンです。ローソク足カラーはトレンド状態に連動し、構造の読み取りをより明確にします。調整可能な3つのパラメータ: Period、Dep
FREE
Support Resistance Indicator The "Support Resistance" indicator is a versatile tool designed to help traders identify key support and resistance levels based on an underlying algorithm. These levels indicate price points where an asset historically experiences buying (support) or selling (resistance) pressure. The indicator allows traders to visualize these levels on their charts, making it easier to make informed decisions. All Products   |   Contact PARAMETERS: Timeframe : Users can select the
FREE
Pivot eXtreme Pivot adalah level referensi penting yang digunakan trader untuk memetakan potensi support & resistance intraday maupun jangka lebih panjang. Dalam sistem ini, level pivot dikembangkan menjadi P (Pivot Point utama) , R1–R13 (Resistance) , serta S1–S13 (Support) . Pivot Point (P) Titik pusat utama, dihitung dari rata-rata harga (High + Low + Close) / 3 . Berfungsi sebagai acuan keseimbangan harga : Jika harga di atas P → tren cenderung bullish. Jika harga di bawah P → tren cenderung
FREE
The  Linear Regression Candles  indicator is a powerful tool that enhances traditional candlestick analysis by incorporating linear regression techniques. It helps traders visualize market trends more clearly by smoothing price movements and reducing noise. Unlike standard candles, Linear Regression Candles are dynamically calculated based on statistical regression, providing a clearer picture of the prevailing market direction. Key Features: • Trend Identification – Highlights the overall mar
FREE
Smc Session Killzone and Breakout The Smc Session Killzone and Breakout indicator automates the institutional session trading model for MetaTrader 5. It draws the Asian, London, and New York session ranges as labelled boxes on the chart, detects when price sweeps beyond the Asian session high or low, and fires a non-repainting entry signal after a Market Structure Shift is confirmed. All signals are based on closed bars and do not repaint. The underlying model follows the sequence that institut
FREE
An extended version of the indicator for visualizing the time ranges of key trading sessions: Asian, European and American. The main advantage of this indicator is the automatic construction of a price profile for a trading session. The indicator has the functionality to set the start and end time of each trading session, as well as automatically determine the time zone of the trading server. The indicators include the ability to work with minimal CPU usage and save RAM. In addition, the option
FREE
This indicator show color of trend. And combined with the average line, but be used on the hightest price and the lowest of the 26 period. The target entry at the level and the point of the route between 2 line for entry and exit position This is a first version, many problems is not supported and fine. Expected a contected from your friends To continue to follow the good products
FREE
The Pivot Indicator is a vital tool for technical analysis used by traders in the financial markets. Designed to assist in identifying potential reversal points or trend changes, this indicator provides valuable insights into key levels in the market. Key features of the Pivot Indicator include: Automatic Calculations: The Pivot Indicator automatically calculates Pivot Point, Support, and Resistance levels based on the previous period's high, low, and close prices. This eliminates the complexity
FREE
This is an MQL5 custom indicator  for MetaTrader 5 called "Swing Highs and Lows Detector" What it does The indicator identifies and labels **market structure swing points** on a price chart: HH (Higher High)  – A new swing high that's higher than the previous swing high (bullish signal, colored lime green) HL (Higher Low) – A new swing low that's higher than the previous swing low (bullish signal, colored lime green) LH (Lower High) – A new swing high that's lower than the previous swing hig
FREE
Unlock Precision Trading: The ATR Dynamic Pivot System Download this free   ATR Pivot Signals   indicator and instantly gain an edge against market noise. This is the ultimate tool for traders who demand high-conviction entry points based on genuine market swing reversals, not guesswork. The   ATR Pivot Signals   system   is an innovative technical indicator that utilizes the Average True Range (ATR) to dynamically filter volatility, ensuring that a signal is triggered only when a price move is
FREE
Shadow Flare インジケーターは、MetaTrader 5 向けの 非リペイント型トレンド & 流動性ツール です。設定可能な移動平均ベースライン(HMA / EMA / SMA / RMA から選択)を計算し、その上下に ATR(Average True Range)ベースのバンドを巻き付けることで「粘着性」のあるトレンド状態を生成します。トレンド状態は、価格の終値が上側バンドまたは下側バンドを明確にブレイクしてクローズしたときにだけ反転します。同じトレンドエンジンが自動サプライ・デマンドゾーンモジュールも駆動し、スイングハイ/スイングローを検出してその周囲に色付きボックスを描画し、価格がクローズでゾーンを抜けた瞬間にそのゾーンを無効化(ミティゲート)します。 トレンド状態が反転したバーで買い・売りシグナルが発生し、オプションの出来高フィルターと RSI フィルターにより、弱いエントリーやモメンタムに逆行するエントリーをブロックできます。内蔵ダッシュボードはリアルタイムでトレンドバイアス、モメンタム(RSI ベース)、出来高ステータスを表示します。ポップアップ、サウンド、モ
FREE
KS FX Session Alert Indicator MetaTrader 5(MT5)用のFX市場セッション表示インジケーターです。ロンドン、ニューヨーク、東京、シドニーという主要な4つの取引セッションを視覚的に強調表示します。 ICT、SMC、およびプライスアクションを重視するトレーダー向けに設計されており、セッションに関する重要な背景情報を提供するとともに、市場のボラティリティが高まる時間帯や値動きを明確に示します。 主な機能 セッションの可視化 最大4つのセッション(ロンドン、ニューヨーク、東京、シドニー)を表示でき、それぞれ個別に表示・非表示を切り替え可能です。開始時刻と終了時刻は、ご自身のローカルタイムゾーンに合わせてカスタマイズできます。枠線の太さや表示範囲の延長設定を調整し、チャートを最適な見やすさに設定できます。 動的なセッションラベル セッション名はチャート上に直接表示され、リアルタイムで更新されます。オプションとして、曜日、価格レンジ(高値–安値)、およびレンジ幅(pips単位)を含めて表示させることも可能です。 内蔵された分析ツール 各セッションにおいて、
FREE
Clean Reversal Signals  is a clean and efficient visual tool designed to highlight when price touches the upper or lower extremes of a Donchian channel (120 periods) — zones that are often critical for potential reversals or price reactions. This indicator does not generate buy or sell signals and should not be used to enter trades by itself . As the name implies, it’s an indicator — its job is to indicate , not confirm. Use it as an extra layer of confirmation within your own trading strategy .
FREE
Overview QuantumEdge Oscillator is a professional-grade trading indicator that combines advanced momentum analysis with sophisticated trend detection algorithms. This 30-day trial version provides full access to all features, allowing you to thoroughly test its capabilities in live market conditions before making a purchase decision. Key Features Dual-Signal System : Combines RSI moving average with smoothed ATR-based volatility bands Multi-Timeframe Analysis : Built-in support for higher timefr
FREE
This indicator is stand alone version from  MP Pivot Levels  (All in one) containing Demark's Pivots. Calculations:     PP = X / 4     R1 = X / 2 - LOWprev     S1 = X / 2 - HIGHprev Uses: When the pair currency price may change the direction of movement. Possible constraints of support and resistance that creates plateaus for the currency pair prices. Tendency identification by comparing the present prices according to current day's pivot point and also the prior day's pivot points. ____________
FREE
The indicator draws daily support and resistance lines on the chart, as well as the Pivot level (reversal level). Adapted to work in MT5 The standard timeframe for calculating support and resistance levels is D1. You can choose other timeframes according to your strategy (for example, for M1-M15, the optimal timeframe for calculations is H1) The function for calculating support and resistance levels has been updated; in this calculation option, fibonacci levels are taken into account, respec
FREE
One of the simplest Pivot Point indicator, easy to operate, and most complete for a single chart in determining    Resistance   and   Support  level lines. In single chart,  it will show R&S Level Line with 5 popular types of Pivot Point, Highest&Lowest of closing price Include the Trend and up to 3 Time Frames. Five   types   (Floor, Woodie, Camarilla, DeMark, & Fibonacci)   of popular   Pivot Points   in determining   Resistance   and   Support   levels. With just using simple button on the
FREE
English VWAP Daily (Clean) is a simple and lightweight indicator that plots the classic Daily VWAP (Volume Weighted Average Price) directly on your MT5 chart. Features: Classic Daily VWAP calculation Supports real volume (if available) or tick volume Timezone offset option to match your broker’s server time Weekend merge option (merge Saturday/Sunday data into Friday) Clean version → no arrows, no alerts, only VWAP line VWAP is widely used by institutional traders to identify fair value, su
FREE
STRUCTURAL TREND LINES - MT4/MT5 Indicator Simple indicator that automatically draws trend lines based on market structure. Features: - 3 degrees of structure detection (short, medium, long term) - Configurable swing strength for each degree - Single color per degree for clean visualization - Adjustable number of lines per degree - Customizable colors and line widths How it works: The indicator identifies swing highs and lows based on the strength parameter, then connects these points to crea
FREE
Gaussian Envelope   is a powerful technical indicator based on kernel smoothing with a Gaussian kernel. The indicator builds a dynamic price channel that adapts to market conditions and provides clear entry signals when the channel boundaries are breached. Unlike classic Bollinger Bands or Envelopes, Gaussian Envelope uses non-linear weighted smoothing, making it more sensitive to local price changes and less prone to lag. Key Features Adaptive Smoothing   — uses Gaussian kernel for weighted p
FREE
このプロダクトを購入した人は以下も購入しています
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
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
SuperScalp Pro
Van Minh Nguyen
4.65 (26)
SuperScalp Pro – 高度なマルチフィルタースキャルピングインジケーターシステム SuperScalp Pro は、クラシックな Supertrend と複数のインテリジェント確認フィルターを組み合わせた高度なスキャルピングインジケーターです。M1 から H4 まで複数の時間足で効率的に動作し、XAUUSD、BTCUSD、主要 Forex 通貨ペア向けに最適化されています。 このインジケーターは明確な Buy / Sell シグナルを提供し、ATR に基づいてエントリー価格、Stop Loss、Take Profit を自動計算します。Fibonacci Take Profit 機能により、重要な価格帯で早期決済し、到達時に通知を送信します。 初期設定では Fibonacci Take Profit が有効化されており、より安定した取引体験を重視しています。チャートに適用するだけですぐ利用可能です。上級者向けに、すべてのパラメータは自由にカスタマイズできます。 完全なドキュメントは製品ブログにあります: [User Guide] SuperScalp Pro Auto T
このインジケーターを購入された方には、以下の特典を 無料 で提供しています: 各トレードを自動で管理し、ストップロスとテイクプロフィットを設定し、戦略ルールに基づいてポジションを決済する補助ツール 「Bomber Utility」 様々な銘柄に合わせたインジケーターの設定ファイル(セットファイル) 「最小リスク」、「バランスリスク」、「待機戦略」 の3つのモードで使用できる Bomber Utility 用の設定ファイル このトレーディング戦略をすぐに導入・設定・開始できる ステップバイステップのビデオマニュアル ご注意: 上記の特典を受け取るには、MQL5のプライベートメッセージシステムを通じて販売者にご連絡ください。 オリジナルのカスタムインジケーター 「Divergence Bomber(ダイバージェンス・ボンバー)」 をご紹介します。これは、MACDのダイバージェンス(乖離)戦略に基づいた 「オールインワン」型のトレーディングシステム です。 このテクニカルインジケーターの主な目的は、価格とMACDインジケーターの間に発生するダイバージェンスを検出 し、将来の価格の動きを示す
Gold Entry Sniper – ゴールドスキャルピング&スイングトレード用プロフェッショナル多時間足ATRダッシュボード Gold Entry Sniper は、XAUUSDや他の銘柄向けに正確な 売買シグナル を提供する、MetaTrader 5用の高度なインジケーターです。 ATRトレーリングストップロジック と 多時間足分析ダッシュボード を搭載し、スキャルピングからスイングトレードまで対応します。 主な特徴と利点 多時間足シグナル分析 – M1、M5、M15 のトレンドを同時表示。 ATRベースのトレーリングストップ – ボラティリティに応じて動的に調整。 プロ仕様のチャートダッシュボード – シグナル状況、ATRレベル、回帰線、売買方向を表示。 明確な売買マーカー – 自動矢印とテキストラベル。 エグジットアラートとトレード管理 – 利益確定のための自動検出。 完全カスタマイズ可能 – パネル位置、色、フォント、ATR/回帰設定を調整可能。 ゴールド(XAUUSD)に最適化 – M1〜M15のスキャルピングに最適、FXや指数、暗号資産にも対応。 Gold Entry
Entry In The Zone and SMC Multi Timeframe is a real-time 2-in-1 market analysis tool that combines market structure analysis and a No Repaint BUY / SELL signal system into a single indicator, built on Smart Money Concepts (SMC) — a widely adopted framework used by professional traders to understand market structure. This indicator helps you see the market more clearly, make decisions based on structure rather than guesswork, and focus on high-probability zones where price is more likely to react
まず正直に言いましょう。 どんなインジケーターも、それ単体であなたを利益化させることはできません。もしそう言う人がいるなら、それは夢を売っているだけです。完璧な売買シグナル(矢印)を表示するインジケーターは、いくらでも“完璧に見せる”ことができます。正しい過去の区間を拡大して、勝ちトレードだけを切り取ればいいだけです。私たちはそれをしません。 SMC Intraday Formula はツールです。 市場構造を読み取り、最も高い確率の価格ゾーンを特定し、今この瞬間のスマートマネーの痕跡をシンプルな言葉で正確に示します。最終判断はあなたが行います。トレードを実行するのもあなたです。しかし今は「希望」ではなく「精度」でエントリーできます。 私たちはこのインジケーターを、ゴールド(XAUUSD)および主要FX通貨ペアで約3年間、日々のスキャルピングに使用してきました。M1、M5、M15、M30の主要ツールです。これは未来を予測しようとするのではなく、今まさに形成されている高確率セットアップを示し、その理由を説明します。 他のすべてのインジケーターと何が違うのか? ほとんどのトレーディングイ
SignalTech MT5 is an unique fully rule based trading system for EURUSD, USDCHF, USDJPY, AUDUSD, NZDUSD, EURJPY, AUDJPY, NZDJPY, CADJPY.  All the winning trades with chart setups are published on the comments page. 2026-05 4107 Pips (Until 05-29 NY Closed) 2026-04 2243 Pips 2026-03 2165 Pips 2026-02 2937 Pips 2026-01 2624 Pips 2025-12 1174 Pips It can generate signals with Buy/Sell Arrows and Pop-Up/Sound Alerts. Each signal has clear Entry and Stop Loss levels, which should be automatically flag
Power Candles V3 - 自己最適化型強弱インジケーター Power Candles V3は 、通貨や銘柄の強さを、適用されたすべてのチャート上で実行可能なトレードプランに変換します。単にローソク足を色分けするだけでなく、バックグラウンドでリアルタイムの自動最適化を実行し、目の前の銘柄に対して最適なストップロス、テイクプロフィット、およびシグナルの閾値を提示します。ワンクリックで実取引に適用でき、エントリーポイント、ストップロス、テイクプロフィットのラインが正確な価格位置にチャート上に表示され、方向性を示すアラートがリアルタイムで発動します。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨事項を入手し、  https://stein.investments でコミュニティに参加しましょう クローズしたバーごとに3,000回以上のトレードシミュレーション。9つの強さの状態。2つの戦略を並行してテスト。勝率の高い設定をワンクリックで適用。 なぜこれが必要なのか ほとんどの強
この製品は 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、トレーリングストップロジック、サポートとレジスタンス、ローソク足の色分け、ア
ご紹介     Quantum Breakout PRO は 、ブレイクアウト ゾーンの取引方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。     クォンタム ブレイクアウト プロ   は、革新的でダイナミックなブレイクアウト ゾーン戦略により、あなたのトレーディングの旅を新たな高みに押し上げるように設計されています。 クォンタム ブレイクアウト インジケーターは、5 つの利益ターゲット ゾーンを備えたブレイクアウト ゾーン上のシグナル矢印と、ブレイクアウト ボックスに基づいたストップロスの提案を提供します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック 重要!購入後、インストールマニュアルを受け取るためにプライベートメッセージを送ってください。 推奨事項: 時間枠: M15 通貨ペア: GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD アカウントの種類: ECN、Raw、またはスプレッドが非常に低い R
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2:MT5向けシンセティック・フラクタル構造分析と確認済みエントリー 概要 Azimuth Pro は Merkava Labs によるマルチレベルスイング構造インジケーターです。4つのネストされたスイングレイヤー、スイングアンカーVWAP、ABCパターン検出、3タイムフレーム構造フィルタリング、そして確定バーでの確認済みエントリー — 1つのチャートで、ミクロスイングからマクロサイクルまでを網羅するワークフロー。 これはブラインドシグナル製品ではありません。ロケーション、コンテキスト、タイミングを重視するトレーダーのための構造ファーストワークフローです。 V2発売記念オファー — Azimuth Pro V2をUSD 399で(次の100本)。最終価格:USD 499。 1. V2での変更点 シンセティック・マルチタイムフレームエンジン 上位タイムフレーム分析をMeridian Proと同じ独自のシンセティックアーキテクチャで一から再構築。よりクリーンなHTFコンテキスト、安定したライブ動作、従来のMTF同期問題なし。シンセティックエンジンは 固定比率タ
GoldenX Entryは、MT5向けのインジケーターであり、適応型Smart Entry Trendアルゴリズム、シグナルスコアリングシステム、マーケットレジーム検出機能、およびボラティリティフィルターを備えています。各シグナルには、計算されたエントリーレベル、3つのテイクプロフィット(TP1、TP2、TP3)、およびストップロスレベルが含まれます。本インジケーターは、異なる市場環境に適応するために設計された複数の分析レイヤー上に構築されており、マルチレイヤー分析システムと内蔵オプティマイザーおよび統計トラッキングシステムを組み合わせています。リスク・リワード(RR)指標および過去のトレード履歴に基づく定量分析を提供します。 使い始めは簡単です — 選択した時間足でオプティマイザーを実行し、そのままチャート上でインジケーターを使用します。 コア機能 GoldenX Entryは、シグナルエンジンとトレード管理機能、そして過去統計トラッキングを1つのチャートに統合しています: - 内蔵オプティマイザー: オプティマイザーはチャート上でワンクリックで実行できます。200通りのパラメー
Quantum TrendPulse を ご紹介します。これは、   SuperTrend   、   RSI   、および Stochastic のパワーを 1 つの包括的なインジケーターに組み合わせて、取引の可能性を最大限に引き出す究極の取引ツールです。精度と効率を求めるトレーダー向けに設計されたこのインジケーターは、市場のトレンド、勢いの変化、最適なエントリー ポイントとエグジット ポイントを自信を持って特定するのに役立ちます。 主な特徴: SuperTrend 統合: 現在の市場動向に簡単に追従し、収益性の波に乗ることができます。 RSI精度: 買われすぎと売られすぎのレベルを検出し、市場の反転のタイミングに最適で、SuperTrendのフィルターとして使用されます。 確率的精度: 確率的振動を活用して、変動の激しい市場で隠れたチャンスを見つけます。SuperTrend のフィルターとして使用されます。 マルチタイムフレーム分析:   M5 から H1 または H4 まで、さまざまなタイムフレームで市場を常に把握します。 カスタマイズ可能なアラート: カスタム取引条件が満たされ
FX Trend NG:次世代マルチマーケット・トレンドインテリジェンス 概要 FX Trend NG は、複数の時間足に対応したプロフェッショナル向けトレンド分析およびマーケット監視ツールです。 市場全体の構造を数秒で把握することができます。 複数のチャートを切り替える必要はありません。どの銘柄がトレンド中なのか、どこでモメンタムが弱まっているのか、そしてどの時間足で強い整合性があるのかを瞬時に確認できます。 ローンチ特別オファー – FX Trend NG を $30(6ヶ月) または $80 永久ライセンス でご利用いただけます。 すでに Stein Investments のユーザーですか? -> メッセージを送信 して、プライベートグループへアクセスしてください。 セットアップや詳細情報が必要ですか? -> Stein Investments 公式ページ をご覧ください。 1. FX Trend NG が他と異なる理由 3ステート・トレンドロジック ― Buy と Sell だけではない • 多くのインジケーターは Buy または Sell の2状態のみを表示します。
トレンドキャッチャーインジケーター トレンドキャッチャーインジケーターは、開発者独自の適応型トレンド分析指標を組み合わせることで、市場価格の動きを分析します。短期的なノイズを除去し、根底にあるモメンタムの強さ、ボラティリティの拡大、価格構造の挙動に焦点を当てることで、真の市場方向性を特定します。また、移動平均線、RSI、ボラティリティフィルターなどの平滑化およびトレンドフィルタリング機能を備えたカスタマイズ指標も使用します。 実際の運用状況のモニタリングやその他の製品については、こちらをご覧ください: https://www.mql5.com/en/users/mechanic/seller ご注意ください。私はTelegramでEAや設定を販売していません。詐欺です。すべての設定はブログで無料で公開しています。 重要!ご購入後すぐにご連絡ください。手順とボーナスをお送りします!
Gann Made Easy   は、ミスター・ギャンの理論を使用した取引の最良の原則に基づいた、プロフェッショナルで使いやすい外国為替取引システムです。 W・D・ガン。このインジケーターは、ストップロスとテイクプロフィットレベルを含む正確な買いと売りのシグナルを提供します。 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 などの高度な取引アイデアを組み合わせています。このインジケ
RelicusRoad Pro: 定量的市場オペレーティングシステム 【期間限定】無制限アクセス 70% OFF - 2,000人超のトレーダーと共に なぜ多くのトレーダーは「完璧な」インジケーターを使っても失敗するのでしょうか? それは、文脈を無視して 単一の概念 だけでトレードしているからです。文脈のないシグナルは単なるギャンブルです。勝ち続けるには、 根拠の重なり(コンフルエンス) が必要です。 RelicusRoad Proは単なる矢印インジケーターではありません。完全な 定量的市場エコシステム です。独自のボラティリティモデリングを用いて、価格が推移する「適正価値の道(Fair Value Road)」をマッピングし、ノイズと真の構造的ブレイクを判別します。 推測はやめましょう。機関投資家レベルの「ロード・ロジック」でトレードを。 コアエンジン:「Road」アルゴリズム システムの中心となる Road Algo は、市場環境にリアルタイムで適応するダイナミックなボラティリティチャネルです。 安全ライン(平衡点) と、価格が数学的に反転しやすい 拡張レベル を投影します。 Si
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
メタトレンドプロ   これは、トレードにおける推測を排除し、市場が既に決定を下したポイントを示すトレンドフォローツールです。この指標は、トレンド、動向、構造が変化する重要なポイントを特定し、主要プレーヤーがポジションを取るべき価格の戻り領域を強調表示します。 単に値動きを見るだけでなく、その背後にある論理を理解できます。すべてのシグナルはローソク足が確定した後に記録され、再描画されることなくチャートに保存されるため、自信を持って状況を分析し、意思決定を行うことができます。トレード目標(利益確定)も表示されます。 この指標の有効性について完全に確信を持っていただくために、自動統計機能をご利用いただけます。 方向転換のたびに、インジケーターはストップロスレベルとそのインテリジェントな段階的移動(Move SL)も表示します。これは非常に重要です。     削減   リスク   ポジション別。 損切り/利益確定/リスクリワード 右側の内蔵パネルには、現在の世界的なトレンドの方向における市場参入ポイントが表示され、過去のデータからもこれらのシグナルが確認できます。 任意の時間枠/ツール この指
M30/H1/H4スイング版もあります M5/M15では取りきれない大きな波を狙いたい方へ。 Gold Signal Swing Pro(M30/H1/H4対応)を販売中。 1トレードで$20〜$80+の値幅を狙う。 https://www.mql5.com/en/market/product/177643 KURAMA GOLD SIGNAL PRO(MT5版)— 7層フィルター搭載 XAUUSD完全トレードシステム リペイントなし。リドローなし。ラグなし。すべてのサインは確定後に変わりません。 購入者限定特典:買い切りライセンスをご購入いただいた方に、AI Zone Radar($59相当)+PDFマニュアルを無料プレゼント。購入後にMQL5でメッセージをお送りください。 AI Zone Radar: https://www.mql5.com/en/market/product/175834 ゴールドトレーダーのコミュニティで実際に使用され、精度と使いやすさで高評価。 あなたの問題
この製品は 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. 価格行動、強さ、モメンタム、マルチタイムフレーム方向、高度なフィルターを分析し、トレーダーがノイズを減らし、弱いセットアップを避け、より構造化された取引判断を行えるようにします。 このインジケーターは、複雑な市場計算をシンプルな視覚シ
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (4)
新たな王者が登場 - インジケーター + 注文管理表示(TP1 + TP2 + TP3)+ オプションのTelegramシグナル送信機能付き(無料) (完全なトレード&シグナルシステム) ゴールド向け最高のEA: Gold Slayer このインジケーターには、高度な戦略、カスタマイズ可能な注文管理システム、そしてエンベロープ拡張を組み合わせた平均回帰システムが搭載されています。さらに、RSIなど複数のインテリジェントな確認フィルターによって、高確率の反転エントリーをBUY・SELLシグナルとして検出します。 単にトレードを学ぶだけでなく、複数ポジションを効果的に管理し、過去に利益を出しているオープンポジションで損失トレードをカバーする方法も学べます。 M5向けに構築・最適化されており、流動性が高くシグナルの精度が安定しているBTCUSDとXAUUSDで優れたパフォーマンスを発揮します。 このインジケーターは、ATRを基に自動計算されたエントリー、ストップロス、テイクプロフィットレベルを備えた明確なLong・Shortシグナルを提供するため、リスク管理が最初から組み込まれています。 マ
FX Power: 通貨の強弱を分析して、より賢い取引を実現 概要 FX Power は主要通貨と金の実際の強弱をあらゆる市場状況で理解するための必須ツールです。強い通貨を買い、弱い通貨を売ることで、 FX Power は取引の意思決定を簡素化し、高い確率の取引機会を見出します。トレンドを追従する場合でも、極端なデルタ値を使用して反転を予測する場合でも、このツールはあなたの取引スタイルに完全に適応します。ただ取引するだけではなく、 FX Power で賢く取引をしましょう。 1. なぜ FX Power がトレーダーにとって非常に有益なのか 通貨と金のリアルタイム強弱分析 • FX Power は主要通貨と金の相対的な強弱を計算し、マーケットダイナミクスに関する明確な洞察を提供します。 • どの資産がリードしているか、または後れを取っているかを監視して、取引するペアを賢く選びましょう。 マルチタイムフレームの包括的なビュー • 短期、中期、長期のタイムフレームで通貨と金の強弱を追跡し、マーケットトレンドに基づいて取引戦略を調整できます。 • スキャルピングからスイングトレード
Smart Structure Concepts MT5
Cristhian Alexander Gaibor Cuasquer
5 (1)
これは、ゾーンを描いてあなたに推測させる、もう一つの構造インジケーターではありません。 Smart Structure Concepts はあなたのために市場を読み取ります — XAUUSD(ゴールド)、外国為替、株価指数、暗号通貨、その他あらゆる市場 で Smart Money Concepts (SMC / ICT) 構造をリアルタイムでマーキングします。各ゾーンを設定するためにインプットに入る必要はもうありません: チャート上のインタラクティブなダッシュボードパネル で、ワンクリックで何を表示、非表示、調整するかを決定できます — プロパティを開く必要も、インジケーターを再起動する必要もありません。 このツールは MetaTrader 5 用の成長中のインジケーターとパネルのセットの一部です — すべて 11 言語の教育的なツールチップと、すべてのチャートに組み込まれたビジュアルメンターを備えています。 各ツールはあなたがトレードする間に教えます:任意のゾーン、シグナル、レベルにマウスを置くと、説明がチャートに直接表示されます。ブラックボックスなし、盲目的な注文なし。あなたはトレ
Meridian Pro
Ottaviano De Cicco
5 (2)
Meridian Pro 2.00:MT5向けプロ仕様マルチタイムフレーム・トレンドマトリクス Meridian Pro 2.00 は、MetaTrader 5 向けのプロ仕様の適応型トレンドマトリクスです。オリジナルの Meridian トレンドエンジン、クリーンなチャート ribbon、確定足ベースのシグナル矢印、8時間足 dashboard、Fuel momentum、weighted consensus、synthetic HTF processing、そしてチャート上に直接表示される上位足コンテキストラインを統合します。 目的はシンプルです。現在のトレンド、マルチタイムフレーム構造、強度、momentum、EA-ready 状態を、複数チャートに無関係なインジケータを重ねるのではなく、1つの整理された workflow で読むことです。 Meridian Pro の違い 1つの適応型エンジン - 同じ volatility-aware Meridian ロジックを M1 から W1 まで適用します。 Synthetic HTF architecture - 上位足行は下位足デ
FX Levels: あらゆる市場における非常に高精度なサポート&レジスタンス 概要 通貨ペア、株式指数、個別銘柄やコモディティなど、どのような市場でも信頼できるサポートとレジスタンスを特定したいですか? FX Levels は伝統的な “Lighthouse” メソッドと先進的な動的アプローチを融合し、ほぼ汎用的な精度を実現します。ブローカーの実務経験を活かし、自動化されたデイリー更新とリアルタイム更新を組み合わせることで、 FX Levels は反転ポイントを見つけ、利益目標を設定し、自信をもってトレードを管理するための手助けをします。今すぐ試してみて、サポート/レジスタンス分析の正確性がどれほどトレードを向上させるかを実感してください! 1. FX Levels がトレーダーにとって非常に有用な理由 非常に正確なサポート&レジスタンスゾーン • FX Levels は異なるブローカー環境でもほぼ同一のゾーンを生成するよう設計されており、データフィードの差異や時刻設定のずれによる不一致を解消します。 • つまり、どのブローカーを利用していても一貫したレベルが得られるため、戦
M1 Quantum は、M1専用のプロフェッショナルトレーディングシステムであり、ストップロス、テイクプロフィット、スマートな資金管理を内蔵した、迅速かつ正確な取引シグナルを提供します。 M1 Quantum は、 連続勝利 に重点を置いて口座を素早く成長させるために設計されたプロフェッショナルな資金管理を備えています。 M1 Quantum インジケーター の主な特徴 M1時間足 およびすべての 主要通貨ペア 向けに設計 すべての取引にストップロスとテイクプロフィットを設定 資金管理 を実装し、トレーダーが簡単に取引できるようサポート 高い勝率と高い 連続勝利 リペイントなし、遅延なし あらゆるトレーダーにとって理解しやすい M1 Quantum を使用するには、 M1 Quantum Assistant が必要です。この強力なツールは、M1 Quantum をご購入いただいたすべてのお客様に 無料 で提供されています。 M1 Quantum Assistant をダウンロード 私のMQL5 チャンネルに参加して、最新のアップデートや新製品のリリース情報を入手してください。
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
作者のその他のプロダクト
OneClick Trade Panel v1.0 — MT5 Expert Advisor Professional On-Chart Trading Panel with Built-in Risk Calculator What Is It? OneClick Trade Panel is an all-in-one trading panel that sits directly on your MT5 chart. It replaces the default MT5 one-click window with a full-featured interface combining: order execution, automatic lot calculation, visual SL/TP planning, position monitoring, and batch close operations. Built for speed. Built for risk control. No DLLs, no external dependencies. Key Fe
Quantum Scalp Momentum— Trading Guide What This Indicator Does The Scalping Combo is a 4-in-1 confluence indicator for MetaTrader 5. It overlays EMA9 and VWAP on your chart, monitors volume spikes and Stochastic momentum internally, then prints BUY/SELL arrows only when all four components align. A dashboard in the chart corner shows real-time status of every component. Components at a Glance Component Default Role EMA 9 9-period, close Micro-trend direction VWAP Daily reset Fair-value / institu
Scalp Signal with SL TP Indicator — Trading Guide What It Does Scalp Signal with SL TP detects high-probability reversal entries by combining RSI extremes with candlestick patterns. It prints buy/sell arrows on chart with auto-calculated SL and 3 TP levels based on ATR. Built for scalping and intraday trading on MT5. Signal Types The indicator generates 3 types of signals. Each requires RSI to be at an extreme level before triggering. 1. Engulfing (Default: ON) The primary and strongest signal.
Trailing Stop Manager v1.0 — MT5 Expert Advisor Advanced Multi-Mode Trailing Stop for MetaTrader 5 What Is It? Trailing Stop Manager automatically moves your Stop Loss to protect profits as price moves in your favor. Unlike MT5's built-in trailing stop (which only has one mode), this EA offers 4 professional trailing methods that adapt to different trading styles and market conditions. Works on ALL symbols. Attach to any chart and it manages all matching positions. 4 Trailing Modes 1. Fixed Pips
FREE
Trading Guide — Heatmap Volume 1. How the Indicator Works Heatmap Volume measures how many standard deviations the current volume is away from its moving average (SMA) . Core formula: stdbar = (Current Volume - SMA of Volume) / Standard Deviation The higher the stdbar value, the more abnormal the volume — and the more attention it deserves. Threshold Levels Level Default Multiplier Meaning Extra High > 4.0 σ Extremely abnormal volume — very rare High > 2.5 σ Unusually high volume — notewor
FREE
ADX Advanced Multi-Timeframe Indicator — User Guide Version 2.00 | MetaTrader 5 Overview The ADX Advanced MTF is a professional-grade indicator for MetaTrader 5 that combines the classic Average Directional Index (ADX) with multi-timeframe analysis and an elegant on-chart information panel. It provides traders with a comprehensive view of trend strength and direction across multiple timeframes simultaneously, enabling faster and more confident trading decisions. Key Highlights Real-time ADX, +DI
FREE
MCD Hot Money visualizes three distinct market participant groups as color-coded histograms in a separate sub-window, all normalized to a 0–20 scale. The indicator uses a sensitivity-weighted, offset-adjusted RSI engine to reveal when large institutional capital is entering or exiting the market. BUFFERS Retailer (Green) — fixed at 20, ceiling reference line Hot Money (Yellow) — short-term institutional flow, based on RSI(40) with base offset 30, sensitivity 0.7 Banker (Red) — smart / la
FREE
Trading Guide — Heatmap Volume BarColor What Is This Indicator? Heatmap Volume BarColor is a companion indicator that paints your candlesticks directly on the main chart based on volume intensity. It uses the exact same logic as the Heatmap Volume indicator (separate window) but applies the color-coding to the candles themselves. Instead of looking down at the volume window, you can read volume strength at a glance right on the price chart. How It Works Each candle is colored according to how ma
FREE
Daily P/L Limiter v1.0 — MT5 Expert Advisor Automated Daily Loss/Profit Limiter & Max Drawdown Protection Essential for Prop Firm Challenges (FTMO, MFF, TFT, etc.) What Is It? Daily P/L Limiter automatically monitors your account's daily Profit & Loss and takes action when your limits are hit. It tracks both realized (closed trades) and unrealized (open positions) P/L, and can close all positions, disable trading, or send alerts. This is a must-have safety net for prop firm traders, where a sing
FREE
Support Resistance Channels - Trading Guide Overview The Support Resistance Channels indicator automatically identifies and displays the strongest support and resistance zones based on pivot points. Unlike simple horizontal lines, this indicator creates channels (zones) which better represent real market behavior where support and resistance act as areas rather than precise levels. Key Features Automatic Detection : Identifies pivot highs and lows automatically Channel Zones : Shows support/resi
FREE
1. Introduction Collective TP Manager v2 is a MetaTrader 5 Expert Advisor designed to automatically manage the collective Take Profit and Stop Loss of multiple open positions on a single symbol. Instead of setting individual TP/SL for each order, this EA monitors the combined profit/loss of all (or filtered) positions and takes action when your targets are reached. 1.1 Why You Need This EA In modern trading, especially scalping and multi-EA environments, manually tracking the net profit of doze
FREE
CCI VISUAL ENHANCED - MT5 USER GUIDE   INTRODUCTION CCI Visual Enhanced for MetaTrader 5 features: Intuitive visual interface  Automatic buy/sell signals  Smart alert system  Dynamic histogram  Strong signal & divergence detection  INSTALLATION Method 1: MetaEditor (Recommended) Open MT5 → Press F4 (MetaEditor) File → New → Custom Indicator Program Name: CCI_Visual_Enhanced → Finish Delete sample code, paste .mq5 code Press F7 to compile Add to chart: Insert → Indicators → Custom Method 2: Dire
FREE
EMA Offset Bands Indicator - Description & Trading Guide Description The EMA Offset Bands indicator is a custom technical analysis tool designed for MetaTrader 5 that displays a central Exponential Moving Average (EMA) line surrounded by percentage-based offset bands. This indicator creates dynamic support and resistance levels that automatically adjust based on the EMA value. Key Features: Central EMA line (default: 200-period, displayed in yellow) Four upper offset bands at 1%, 2%, 3%, and 4%
FREE
MACD ADVANCED - BRIEF DESCRIPTION INTRODUCTION MACD Advanced is an enhanced version of the traditional MACD indicator featuring an intelligent 4-color system that helps traders easily identify market trends and momentum. KEY FEATURES 1. Smart 4-Color System Bright Green (Lime) - Strong Bullish: MACD > 0 and MACD > Signal Light Green (DarkSeaGreen) - Weak Bullish: MACD > 0 but MACD < Signal ️ Bright Red (Red) - Strong Bearish: MACD < 0 and MACD < Signal Orange Red (OrangeRed) - Weak Bearish: MAC
FREE
Trendlines with Breaks (TWB) — Trading Guide What Is It? Trendlines with Breaks is an auto-drawn trendline indicator that detects swing pivots, draws dynamic upper/lower trendlines, and fires breakout signals when price closes beyond those lines. No more manually drawing and adjusting trendlines — the indicator does it systematically. Core Settings Parameter Default What It Does Swing Detection Lookback 14 Bars left & right to confirm a pivot. Lower = more pivots, noisier lines. Higher = fewer p
1. What It Does OrderByMagic is a display-only Indicator for MT5. It reads all open positions on your account and shows them grouped by Magic Number directly on the chart — updated every 2 seconds. It never opens, closes, or modifies any trade. 2. Why You Need It The Magic Number collision problem Every EA stamps a Magic Number on the orders it opens so it can identify and manage them later. When you run multiple EAs at the same time, each one must have a unique Magic Number. In practice this o
FREE
ICT Concepts Indicator — Trading Guide Overview This MetaTrader 5 indicator implements core Inner Circle Trader (ICT) concepts on a single chart. It identifies institutional price delivery patterns — the footprints that smart money leaves behind — and visualizes them as actionable zones and signals. The indicator includes six modules that work together: Killzones — Session-based time windows where institutional activity peaks Premium / Discount Zones — Whether price is expensive or cheap relativ
RANGE TRADING METHOD GUIDE Using the MultiTF_TopBottom_Bands Indicator 1. INTRODUCTION 1.1. What is Range Trading? Range Trading is a trading method based on identifying the price oscillation zone (range) of the market and utilizing price movements within this zone to trade. 1.2. Basic Principles Top : Resistance zone - where price typically gets pushed down Bottom : Support zone - where price typically gets pushed up Range : The distance between Top and Bottom % Lines : Important intermediate l
FREE
SMC Complete Indicator v4 - Trading Guide Introduction The SMC Complete Indicator v4 is a Smart Money Concepts (SMC) trading tool for MetaTrader 5. It automatically identifies institutional trading patterns to help traders align with "smart money" - banks, hedge funds, and market makers. Core Principle: Large institutions need liquidity to fill massive orders. They create predictable patterns: accumulating at key levels, hunting stop losses, leaving footprints (Order Blocks, FVGs), and creating
Trade Journal & Dashboard v1.0 — MT5 Expert Advisor Real-Time Performance Analytics & Trade Journal on Your Chart What Is It? Trade Journal & Dashboard is an on-chart analytics panel that automatically tracks every closed trade and calculates professional performance metrics in real time. No spreadsheets, no external apps — everything you need to evaluate your trading performance lives directly on your MT5 chart. It reads your trade history, computes win rate, profit factor, expectancy, drawdown
Trade Analyzer Panel — MT5 Expert Advisor Version:   1.20 Platform:   MetaTrader 5 Type:   Panel EA (analysis + quick close) Overview Trade Analyzer Panel is a real-time dashboard EA for MetaTrader 5. It consolidates position monitoring, risk analysis, P/L simulation, target profit planning, break-even visualization, and quick close controls into a single scrollable on-chart panel. Key Features Feature Description Position Scanner Lists all open positions with symbol, direction, lot size, open
Wyckoff Method Indicator — Trading Guide A complete guide to trading with the Wyckoff Method MT5 Indicator. This document explains how to interpret signals, execute trades, manage risk, and avoid common pitfalls. 1. Understanding the Wyckoff Method The Wyckoff Method, developed by Richard D. Wyckoff in the 1920s-1930s, is built on the premise that price moves through four distinct phases driven by institutional money ("Composite Man"): Phase Description What to do Accumulation Smart money quietl
フィルタ:
レビューなし
レビューに返信