IFVG Finder zone snd sign

  • インディケータ
  • Shin Kojima
    Shin Kojima
    MQL4 / MQL5 Development Services

    • Custom Indicator Modifications
    • Convert Your Indicator into a 448 Multi-Symbol & Multi-Timeframe Scanner
    • MT4 ⇔ MT5 Conversion
    • Feel free to contact me for your project or any questions.
  • バージョン: 1.1
  • アップデート済み: 21 7月 2026


FREE for the First 100 Users

  IFVG Signals Indicator  (ICTIFVGmq4_en.mq4)  Platform: MetaTrader 4

Signal  : IFVG Buy / IFVG Sell arrows on the main chart

Zone    : Horizontal rectangle drawn at the confirmed IFVG zone

IFVG Sing  Guide is Here 


--------------------------------------------------------------------------------

WHAT IS AN IFVG?

--------------------------------------------------------------------------------

FVG  (Fair Value Gap)  : A 3-bar price gap where Bar[t+2] and Bar[t] do NOT

                          overlap, leaving an unfilled "gap" (imbalance zone).


IFVG (Inverse FVG)     : A subsequent candle whose BODY fully breaks through

                          the FVG band in the OPPOSITE direction of the original

                          FVG.  This "inversion" flips the zone from support to

                          resistance (or vice versa) and generates a trade signal.


Detection logic

  Bull FVG band  → body breaks DOWNWARD  → SELL signal (arrow at prev bar)

  Bear FVG band  → body breaks UPWARD    → BUY  signal (arrow at prev bar)


Arrow placement : The signal arrow is drawn on the bar that COMPLETED the

                  breakout (prev = A+1), NOT on the current unfinished bar.


Zone display    : A shaded rectangle is drawn from the FVG origin bar to the

                  breakout bar when ShowZones = true.


--------------------------------------------------------------------------------

INPUT PARAMETERS

--------------------------------------------------------------------------------


[ Signals ]

  bAlert          (default: true )

    Show a pop-up alert when an IFVG forms on the LATEST completed bar (i=0).

    Alerts fire at most once per bar to avoid duplicates.


  bNotification   (default: false)

    Send a push notification to the MT4 mobile app in addition to the alert.

    Requires MT4 mobile app paired with your account.


  bEmailAlert     (default: false)

    Send an email alert when an IFVG signal fires.

    Subject and body both contain the signal text (e.g. "[XAUUSD,60] BUY IFVG").

    *** Requires MT4 email settings to be configured first ***

      Tools → Options → Email tab:

        SMTP Server  : your outgoing mail server (e.g. smtp.gmail.com:587)

        SMTP Login   : your email address

        SMTP Password: your password / app password

        From / To    : sender and recipient addresses

    After saving, click "Test" to verify delivery before enabling this flag.


[ FVG Detection ]

  IFVG_GapBars    (default: 15)

    How many bars back from the current bar to search for a matching FVG.

    Larger values catch older FVGs but may increase false signals.

    Recommended range: 8 ? 20.


  FVG_EpsPoints   (default: 0.0)

    Detection tolerance in Points (the broker's smallest price unit).

    0 = strict (High/Low must not overlap at all).

    Increase slightly (e.g. 1.0 ? 3.0) on brokers with large spreads or

    if valid FVGs are being missed due to minor wick overlaps.


  MinFVG_Pips     (default: 0.0)

    Minimum FVG width filter.  FVGs narrower than this are ignored.


    0   = AUTO  (ATR-based, instrument-aware)

             Gold / metals  (Digits <= 2) : threshold = ATR × 20 %

             Forex / others              : threshold = ATR × 10 %

    > 0 = MANUAL  ? value is treated as a PERCENTAGE of ATR.

             Example: MinFVG_Pips = 10  →  threshold = ATR × 10 %

             Example: MinFVG_Pips = 20  →  threshold = ATR × 20 %

    ※ This setting works identically on XAUUSD and any forex pair because

       it is always expressed relative to the instrument's own ATR, NOT in

       raw pip units.


[ MA Filter ]

  bUseMAFilter    (default: true )

    Enable a moving-average trend filter to reduce counter-trend signals.

      BUY  signal requires  : MA is falling  AND  close[prev] < MA

      SELL signal requires  : MA is rising   AND  close[prev] > MA

    Turn OFF to see all raw IFVG signals regardless of trend direction.


  MA_Period       (default: 21)

    Period of the moving average used for the trend filter.


  MA_Kind         (default: 1)

    Moving average type.

      0 = SMA  (Simple)

      1 = EMA  (Exponential)  ← default

      2 = SMMA (Smoothed)

      3 = LWMA (Linear Weighted)

      4 = Same as 3


[ Visual ]

  ShowZones       (default: true )

    Draw a filled rectangle on the chart spanning the FVG band from the

    origin bar to the breakout bar.  Only drawn when IFVG is confirmed.


  ZoneColorBuy    (default: dark teal  C'6,38,37' )

    Background color of confirmed BUY zone rectangles.


  ZoneColorSell   (default: dark purple C'62,0,62' )

    Background color of confirmed SELL zone rectangles.


  ATR_Period      (default: 14)

    ATR period used for two purposes:

      1. Arrow vertical offset   (ATR × ATR_Multiplier)

      2. MinFVG auto threshold   (ATR × 10 % or 20 %)


  ATR_Multiplier  (default: 0.20)

    Controls how far above/below the bar the signal arrow is placed.

    0.20  = arrow offset of 20 % of the ATR value.

    Increase if arrows overlap candle bodies; decrease for tighter placement.


[ Performance ]

  MaxBackBars     (default: 2000)

    Maximum number of bars to recalculate on each tick.

    0 = only the latest bar (fastest, no history drawing).

    Reduce if the indicator slows MT4 on long charts.


--------------------------------------------------------------------------------

RECOMMENDED SETTINGS BY INSTRUMENT

--------------------------------------------------------------------------------


  ┌─────────────────────────────────────────────────────────────────────────┐

  │  Generic (all forex pairs ? safe starting point)                        │

  ├─────────────────┬───────────────────────────────────────────────────────┤

  │ IFVG_GapBars    │ 8                                                      │

  │ MinFVG_Pips     │ 0  (auto: ATR × 10 %)                                  │

  │ bUseMAFilter    │ true                                                   │

  │ MA_Period       │ 21                                                     │

  │ MA_Kind         │ 1  (EMA)                                               │

  │ ATR_Period      │ 14                                                     │

  │ ATR_Multiplier  │ 0.20                                                   │

  └─────────────────┴───────────────────────────────────────────────────────┘


  ┌─────────────────────────────────────────────────────────────────────────┐

  │  XAUUSD (Gold) ? recommended settings                                   │

  ├─────────────────┬───────────────────────────────────────────────────────┤

  │ IFVG_GapBars    │ 15                                                     │

  │ MinFVG_Pips     │ 0  (auto: ATR × 20 %  ← activated automatically       │

  │                 │     because XAUUSD has Digits <= 2)                    │

  │ bUseMAFilter    │ true                                                   │

  │ MA_Period       │ 21                                                     │

  │ MA_Kind         │ 1  (EMA)                                               │

  │ ATR_Period      │ 14                                                     │

  │ ATR_Multiplier  │ 0.20                                                   │

  └─────────────────┴───────────────────────────────────────────────────────┘

  Note: With MinFVG_Pips = 0 the indicator detects Gold automatically via

  Digits and applies a 20 % ATR threshold.  No manual adjustment needed

  when switching between XAUUSD and other pairs.


--------------------------------------------------------------------------------

SIGNAL LOGIC SUMMARY

--------------------------------------------------------------------------------


  1. Indicator scans bars i = MaxBackBars … 0  (oldest to newest).


  2. For each bar i  (called "A"):

     a. prev = i + 1  (the candidate breakout bar)

     b. Search bars  [prev+1 … i+IFVG_GapBars]  for a valid FVG.

     c. Measure the FVG band width; skip if width < MinFVG threshold.

     d. Check that no bar between the FVG and prev already closed outside

        the band (ensures the band was "intact" until prev).

     e. Test whether prev bar's BODY fully broke through the band in the

        opposite direction  (body uses prev close as open proxy).

     f. Apply MA filter if bUseMAFilter = true.

     g. If all checks pass:

          Bull FVG + downward body break  →  SELL arrow at prev bar high

          Bear FVG + upward  body break  →  BUY  arrow at prev bar low

          Draw zone rectangle if ShowZones = true.

          Fire alert/notification if i == 0 and bAlert/bNotification.


--------------------------------------------------------------------------------

ALSO AVAILABLE: IFVG ALL-CURRENCY SCANNER

--------------------------------------------------------------------------------


  This indicator monitors a SINGLE chart for IFVG signals.

  If you want to scan ALL currency pairs simultaneously and get notified

  the moment any pair fires an IFVG ? check out the scanner version:


  ┌─────────────────────────────────────────────────────────────────────────┐

  │  ICT IFVG All-Currency Scanner  (ICTIFVGSearch)                         │

  ├─────────────────────────────────────────────────────────────────────────┤

  │  ? Scans 20+ currency pairs across multiple timeframes at once          │

  │  ? Displays a real-time hit list: pair name + timeframe + signal type   │

  │  ? Click any row to jump directly to that chart                         │

  │  ? Same IFVG detection engine as this indicator ? fully consistent      │

  │  ? Supports Gold (XAUUSD), indices, and all major / minor FX pairs      │

  │  ? Saves hours of manual chart-switching every session                  │

  ├─────────────────────────────────────────────────────────────────────────┤

  │  Available on MQL5 Market:  https://www.mql5.com/ja/market/product/181837&nbsp;             │

  └─────────────────────────────────────────────────────────────────────────┘


  "The world's only multi-pair IFVG scanner for MT4."


--------------------------------------------------------------------------------

NOTES & TIPS

--------------------------------------------------------------------------------


  ? The indicator redraws on every new bar (triggered by the bar open time

    check dtCheck).  Past arrows do NOT repaint once their bar is closed.


  ? Zone rectangles are deleted automatically when the indicator is removed

    from the chart (OnDeinit).


  ? If you see too many signals on a ranging market, try:

      ? Increasing MinFVG_Pips  (e.g. 15 ? 25)

      ? Increasing IFVG_GapBars  (look for only larger / more recent FVGs)

      ? Enabling bUseMAFilter if it is currently OFF


  ? If you miss signals you can visually identify, try:

      ? Setting FVG_EpsPoints to 1.0 ? 3.0

      ? Reducing MinFVG_Pips (or keeping it at 0 for auto)

      ? Increasing IFVG_GapBars


  ? On 5-digit (or 3-digit) brokers the pip size is normalised automatically

    by the internal PipSize() function.


  ? MinFVG_Pips auto mode switches the threshold:

        Gold (Digits ? 2)  →  ATR × 20 %   (wider gap required)

        Others             →  ATR × 10 %   (standard)



--------------------------------------------

- IFVG All-Currency Scanner

--------------------------------------------

  The most effective tool for catching ICT fake-out moves.

  https://www.gogojungle.co.jp/tools/indicators/81129

  Especially powerful for targeting AMD movement setups.




================================================================================

  End of Manual

================================================================================


おすすめのプロダクト
Draw by Hand Tool
John Louis Fernando Diamante
This tool provides a freehand drawing method, to treat the chart space as a blackboard and draw by-hand. Drawings can be made to stick to the CHART (moves with chart scroll), or to stick to the WINDOW (does not move with chart scroll). Features: all drawings are individually styled, color, width show/hide each drawing type delete last drawing drawings, on chart and on window, remain through TF changes and terminal re-starts, until the indicator is removed Panel: stylable colors scalable in size
The indicator shows the potential trend direction by cyclical-wave dependence. Thus, all the rays of the intersection will be optimal rays, in the direction of which the price is expected to move, taking into account the indicator period. Rays can be used as a direction for potential market movement. But we must not forget that the approach must be comprehensive, the indicator signals require additional information to enter the market.
If you like this project, leave a 5 star review. Often times we are using brokers that are outside of the GMT-0 timezone, this not only complicates things, but, it can make seeing when a trading session starts a bit more difficult than it should. This indicator allows you to set a timezone offset it will draw a vertical line for the: Day. Week. Month. Quarter. year.
FREE
SMC Visual Indicator – Trade Like Smart Money Most traders spend hours trying to identify market structure, liquidity zones, Fair Value Gaps, and potential reversals. By the time they finish their analysis, the market has already moved. SMC Visual Indicator v6 does the hard work for you. Built around advanced Smart Money Concepts (SMC) and ICT methodologies, this indicator automatically identifies the key areas where institutional traders leave their footprints. Imagine opening your chart and in
The Donchian channel is an indicator that takes a series of user-defined periods and calculates the upper and lower bands. Draw two lines on the graph according to the Donchian channel formula. This straightforward formula is based on: The top line is the highest price for the last periods n The bottom line is the lowest price for the last periods n Trend systems follow periods when support and resistance levels are broken. in this case when the price breaks the upper line or the lower line o
FREE
This indicator graphically displays profit ($),risk/reward and % of risk according SL&TP Open orders on Current Symbol. when you open orders on current symbol and set StoplLoss and TakeProfit this indicator automatically calculate Risk/Reward and  calculate %risk Of Equity Account that your order get  stop Loss. If you trade on several symbols at the same time, you can install the indicator on each one separately and see the relevant calculations on each one.
FREE
LordChannel is an indicator for META TRADER 4 for all forex pairs and financial market metals. The indicator is used to make detections of high/low channels, implementing a technical analysis on possible breakouts and making correct order entries. LordChannel sends signals such as buy and sell in the graphical analysis, it is important to emphasize that the importance of these signals are safe in TIME FRAMES M30, H1, H4. The indicator was created for using bullish/downtrend channels to compl
This is a multi timeframe version of the  Supply and Demand indicator . It allows you to analyze a chart using the law of supply and demand on three different timeframes at a time. You will see zones of sales and purchases and determine the most profitable points to open positions. The indicator is based on the principle of market fractality. Supply and demand zones show places where a strong buyer or seller has made the price reverse and change its direction. The indicator has several types of
FREE
The indicator shows which trading pairs, strategies, robots and signals that you use are profitable and which are not. The statistic of trades and balance graph are displayed in the account currency and pips - to switch simply click on the graph. button "$"(top left) - minimize/expand and move the indicator panel button ">"(bottom right) - stretching and resetting to the original size Statistic of trades 1 line - account balance, current profit and lot of open trades; 2 line - the number of all
SafeProfitマーケットプロファイルは、外国為替市場で最も先進的な追跡指標です。これは、その日の各セッション(アジア、ヨーロッパ、アメリカ)の市場プロファイルを追跡するために開発されました。 このインジケーターを使用すると、日中の笑顔で操作できます...ビッグプレーヤーが配置されている場所と彼らが行く正確な瞬間を正確に知ることができます。 インジケーターはシンプル、高速、客観的で、ビッグプレーヤーのあらゆる動きを価格で追跡します。 コンピューターサイエンティスト、ソフトウェアエンジニア、金融市場スペシャリストのJonathas Rodriguesによって開発されたこのセンセーショナルなツールを失うだけの95%の統計から抜け出し、使用してください。 何も設定する必要はありません...それをチャートに追加し、ろうそくを閉じて休憩を待つだけです。 時間枠:30M。 SafeProfit mākettopurofairu wa, gaikoku kawase ichiba de mottomo senshin-tekina tsuiseki shihyōdesu. Kore wa, s
インディケータは現在のクオートを作成し、これを過去のものと比較して、これに基づいて価格変動予測を行います。インジケータには、目的の日付にすばやく移動するためのテキスト フィールドがあります。 オプション: シンボル - インジケーターが表示するシンボルの選択; SymbolPeriod - 指標がデータを取る期間の選択; IndicatorColor - インジケータの色; HorisontalShift - 指定されたバー数だけインディケータによって描画されたクオートのシフト; Inverse - true は引用符を逆にします。false - 元のビュー。 ChartVerticalShiftStep - チャートを垂直方向にシフトします (キーボードの上下矢印)。 次は日付を入力できるテキストフィールドの設定で、「Enter」を押すとすぐにジャンプできます。
Reversal Monster Mini
Abdulfattah Yahya Mohammed Alhazmi
The Most advanced and comprehensive EA to trade Trend Reversals/Pullbacks It is a very profitable EA, to trade trends breakout, and manage trades, takeprofit, stoploss, move to breakeven, and trailing stop. The   “Reversal Monster EA”   trades Reversal/Pullbacks when the current price of the pair pullback to a predefined horizontal level or trendline on the currency chart. The opening of the position can be immediate after pullback to the drawn trendline or after closing the candle below/above
FREE
Price Magnet — Price Density and Attraction Levels Indicator Price Magnet is a professional analytical tool designed to identify key support and resistance levels based on statistical Price Density. The indicator analyzes a specified historical period and detects price levels where the market spent the most time. These zones act as “magnets,” attracting price action or forming a structural base for potential reversals. Unlike traditional Volume Profile tools, Price Magnet focuses on price-time d
Scalper RS - ​​ は、価格チャート上で最も可能性の高い反転ポイントを識別するように設計された取引および分析インジケーターです。 価格構造化を実行するインジケーター アルゴリズムにより、さまざまな取引商品と時間枠での価格反転の組み合わせを決定できます。 可変パラメータ「 Structuring 」を使用すると、希望する取引チャートと時間枠に最適な設定を選択できます。 当初、このインジケーターは M1 - M5 - M15 の時間枠でシグナルを受信するために作成されましたが、必要なパラメータを選択することで、H1 - H4 - D1 の時間枠で長期トレンドを識別するように構成できます。 スキャルピングや短期取引に適しています。 信号矢印は、再描画なしでも、再描画ありでも動作できます (切り替え可能なパラメータ)。 すべてのシグナルはローソク足の終値に表示されます。 通知にはいくつかの種類があります。 インジケーターシグナルはトレンドの方向にも、それに逆らう方向にも使用できます。 このインジケーターは、独立したシステムとして使用することも、既存のトレンド取引システムへの追加
TMA AI Bands
Monique Ellen Miranda Dos Santos
TMA AI Bands インジケーターは、三角移動平均 (TMA) を基盤とし、動的な上バンドと下バンド、およびチャート上に直接プロットされた明確な買い/売り矢印を備えています。適応型最適化のための統合 AI を特徴とし、再描画なしを保証し、価格がバンドに触れた際に正確な反転シグナルを提供します。 * 通貨ペア: すべての通貨ペアで動作 * 推奨時間枠: D1 / W1 / MN * 設定可能な外部変数:   * TimeFrame – 計算期間   * HalfLength – 平均の平滑化   * BandsDeviations – バンドの標準偏差   * CenterShift, UpperShift, LowerShift – ラインの微調整   * ShowArrows, ArrowGap – 矢印の表示とオフセット制御 * クリーンなインターフェースとシンプルなビジュアルで、複雑さを避けつつ正確性を求めるトレーダーのために設計されています。
This indicator help to mark the high and low of the session Asian,London,Newyork , with custom hour setting This indicator is set to count from minute candle so it will move with the current market and stop at the designated hour and create a accurate line for the day. below is the customization that you can adjust : Input Descriptions EnableAsian Enables or disables the display of Asian session high and low levels. EnableLondon Enables or disables the display of London session high and
FREE
Msg2Lineはテキストボックスからフリーテキストやキャプチャを「LINE Messenger」に送信します。 グラフに線やマーク、コメントを書くと画像が送信されます。 自分宛またはグループ宛に送ることができます。とても便利でシンプルなツールです。 - フリーメッセージの送信 1. 編集ボックスにフリーテキストを入力します。 2. 送信ボタンを押します。 - フリーメッセージ+画像キャプチャの送信 1. 編集ボックスにテキストを入力します。 2. w/imgボタンを押します。 - キャプチャ画像の送信 1. w/IMGボタンを押すだけです。 *パラメータとしてLINE TOKENが必要です。 *このツールは「WebRequest」を使用 これは単純な機能ですが、LINEユーザーにとって便利なツールになるでしょう。
FREE
「Auto FIBO Pro」Crypto_Forex インジケーターは、取引の補助ツールとして最適です。 - インジケーターは、フィボナッチ レベルとローカル トレンド ライン (赤色) を自動的に計算してチャート上に配置します。 - フィボナッチ レベルは、価格が反転する可能性のある重要な領域を示します。 - 最も重要なレベルは、23.6%、38.2%、50%、61.8% です。 - リバーサル スキャルピングやゾーン グリッド取引に使用できます。 - Auto FIBO Pro インジケーターを使用して、現在のシステムを改善する機会も多数あります。 - Info Spread Swap Display があり、接続されている外国為替ペアの現在のスプレッドとスワップを表示します。 - ディスプレイには、アカウントの残高、エクイティ、マージンも表示されます。 - Info Spread Swap Display は、チャートのどのコーナーにも配置できます。 高品質のトレーディングロボットとインジケーターをご覧になるにはここをクリックしてください! これは、この MQL5 ウェブサイ
Precision Trailing Stop   is a dynamic trailing stop indicator that anchors itself to real market structure instead of lagging moving averages or fixed ATR multiples. It identifies key structural price levels on both sides of the market, builds adaptive support and resistance bands, and engages a ratcheting stop that only moves in your favour. As market structure evolves, outdated levels drop out of the calculation automatically. The result is a trailing stop that stays tight to price action whe
FREE
What are Fibonacci Numbers and Lines? Fibonacci numbers are used to create technical indicators using a mathematical sequence developed by the Italian mathematician, commonly referred to as "Fibonacci," in the 13th century. The sequence of numbers, starting with zero and one, is created by adding the previous two numbers. For example, the early part of the sequence is 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89,144, 233, 377, and so on. The Fibonacci sequence is significant because of the so-calle
The indicator detects and displays Shark harmonic pattern (see the screenshot). The pattern is plotted by the extreme values of the ZigZag indicator (included in the resources, no need to install). After detecting the pattern, the indicator notifies of that by a pop-up window, a mobile notification and an email. The indicator highlights the process of the pattern formation and not just the complete pattern. In the former case, it is displayed in the contour triangles. After the pattern is comple
Ppr PA
Yury Emeliyanov
4.75 (4)
"Ppr PA" is a unique technical indicator created to identify "PPR" patterns on the currency charts of the MT4 trading platform. These patterns can indicate possible reversals or continuation of the trend, providing traders with valuable signals to enter the market. Features: Automatic PPR Detection:   The indicator automatically identifies and marks PPR patterns with arrows on the chart. Visual Signals:   Green and red arrows indicate the optimal points for buying and selling, respectively. Ar
FREE
このプロジェクトが好きなら、5つ星レビューを残してください。 このインジケータは、指定されたためのオープン、ハイ、ロー、クローズ価格を描画します 特定のタイムゾーンの期間と調整が可能です。 これらは、多くの機関や専門家によって見られた重要なレベルです トレーダーは、彼らがより多くのかもしれない場所を知るために有用であり、 アクティブ。 利用可能な期間は次のとおりです。 前の日。 前週。 前の月。 前の四半期。 前年。 または: 現在の日。 現在の週。 現在の月。 現在の四半期。 現年。
FREE
Easy Trade Indicator – Your Path to Profitable Trades! Work any Time Frame! Maximize your profits with precise and assertive trades! ️ Trade with comfort – the indicator does the analysis and you only open the order in the direction in which the indicator shows you!  Exclusive panel with past trade counter and accuracy tracking! Simplify your analysis, boost your performance, and trade with confidence! Get it now and take your trading to the next level
The indicator searches for the largest candles with minimum wicks for the last X candles. Sometimes, such candles mark the presence of a strong buyer, who quickly and strongly pushes the price in the right direction. However, most often, these are culmination candles, especially at the end of a prolonged trend when a single large candle knocks out stop losses of the most persistent traders and the price reverses instantly. The indicator allows you to open a position on the very edge of the marke
FREE
平均方向性指数(ADX)マルチカレンシースキャナー MT4 は、複数の通貨ペアを同時に分析するために設計された高度なトレーディングインジケーターです。これは、平均方向性指数に基づいたリアルタイムのシグナルを提供することで、意思決定プロセスを強化しようとするトレーダーにとって有益です。効率的な市場トレンド分析を可能にします。 このツールは、トレンドの強さと方向の動きを簡単に特定できるようにすることで、トレーダーにとって不可欠な資産となります。ADXに基づく戦略を採用しているトレーダーにとって特に重要です。リアルタイムのアラートと使いやすいダッシュボードにより、トレーダーは市場の状況を迅速に評価し、情報に基づいた取引選択を行うことができます。 MQL製品のインストールガイド | MT4/MT5で購入したMQL製品の更新 | 一般的なトラブルシューティングガイド | インジケーター設定 / ガイド 主な機能 バッファ統合: インジケーターの値をアクセス可能なバッファとして公開し、Expert Advisorが自動取引のためにシグナルデータを利用できるようにします。 視覚的矢印シグナル: シグ
Round Numbers Levels indicator for MT4 Round Numbers indicator is a simple but useful indicator to draw 00 and 50 price levels in your chart. These levels act as supports and resistances, and therefore should be taken into account when trading. These levels can be used as profit targets or entry points. Inputs of the indicator are: TGridColor00: color to be used for xx00 levels GridStyle00: line style to be used for xx00 levels GridWidth00: line width to be used for xx00 levels GridColor50:
FREE
Verve Ai Auto Fib
Sakariya Bhaskar Nitinbhai
AI搭載の「Verve Ai Auto Fib」インジケーターは、市場のトレンドと価格チャネルを動的に識別し、リアルタイムの価格変動に基づいて自動的にフィボナッチレベルをプロットします。手動調整はもう不要—市場条件に合わせた精密なフィボナッチのリトレースメントとエクステンションをお楽しみください! 主な機能とメリット: • 自動チャネル検出 – AIアルゴリズムが主要な市場構造を識別   • リアルタイムフィボナッチレベル – 手動でフィボナッチラインを描画または調整する必要なし   • すべての市場環境で機能 – トレンド、市場レンジ、ボラティリティ、高安定期   • すべてのトレーダー向け – スキャルピング、デイトレード、スイングトレード、長期投資   • マルチ資産対応 – FX、株式、指数、商品、暗号通貨   • 精度最適化 – エントリー/エグジットポイント、反転、トレンド継続を特定   • ユーザーフレンドリー&カスタマイズ可能 – トレーディング戦略に合わせて設定を調整 このインジケーターがトレード成功に導く理由: • トレンドの強弱と反転を高精度で識別   •
FREE
Introducing Order Blocks Breaker , a brand-new way to identify and leverage order blocks in your trading strategy. After developing multiple order block tools with unique concepts, I’m proud to present this tool that takes things to the next level. Unlike previous tools, Order Blocks Breaker not only identifies order blocks but also highlights Breaker Order Blocks —key areas where the price is likely to retest after a breakout. MT5 -  https://www.mql5.com/en/market/product/124102/ This tool inco
The Divergent Accuracy indicator is designed to identify discrepancies on the price chart of a currency pair. The Divergent Accuracy indicator recognizes bullish and bearish divergences, and can also output a signal that a divergence has been detected... In addition to identifying divergences, the indicator works with overbought and oversold levels, and also shows arrows to enter the market...
このプロダクトを購入した人は以下も購入しています
M1 SNIPER は使いやすいトレーディングインジケーターシステムです。M1時間足向けに設計された矢印インジケーターです。M1時間足でのスキャルピングのためのスタンドアロンシステムとして、また既存のトレーディングシステムの一部としても使用できます。このトレーディングシステムはM1時間足での取引に特化して設計されていますが、他の時間足でも使用できます。元々、この手法はXAUUSDとBTCUSDの取引用に設計しましたが、他の市場においても役立つと考えています。 インジケーターのシグナルは、トレンドの方向と逆方向に取引できます。インジケーターのシグナルを利用して両方向に取引するのに役立つ特別な取引テクニックをご紹介します。この手法は、特別な動的なサポートとレジスタンスの価格帯を利用することに基づいています。 ご購入後、M1 SNIPER矢印インジケーターをすぐにダウンロードできます。さらに、M1 SNIPERツールのすべてのユーザーに、以下のスクリーンショットに表示されているApollo Dynamic SRインジケーターを無料で提供しています。この2つのインジケーターを組み合わせることで
DayTrader PRO MT5:  https://www.mql5.com/en/market/product/186222 DayTrader PROは、ジョン・エリュース(John Ehlers)のラグuerreフィルターと強力な自動最適化エンジンを組み合わせた、高度なトレーディング・インジケーターです。固定されたパラメーターを使用するのではなく、直近の市場状況に基づいて最適な設定を自動的に検索するため、手動による絶え間ない調整をすることなく、変化する市場のボラティリティに適応できます。 本インジケーターは、明確な「買い(BUY)」および「売り(SELL)」シグナルを生成し、現在の市場ボラティリティから算出された適応型のストップロス(Stop Loss)およびテイクプロフィット(Take Profit)レベルを表示します。トレンド、効率レシオ(Efficiency Ratio)、ボラティリティ、およびローソク足フィルターが内蔵されており、精度の低いセットアップを排除し、シグナルの精度を向上させます。 リアルタイム・パフォーマンスパネルには、現在最適化されている設定、プロフィッ
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 all
SR Liquidity は、市場の流動性が集中し、価格が最も強く反応する「隠れたゾーン」を可視化するために設計されたトレーディング指標です。こうした流動性の高いエリアは強力なサポート(支持)およびレジスタンス(抵抗)レベルとして機能し、市場が反転する可能性が最も高いポイントを明確に示してくれます。 単なる一般的なサポートラインやレジスタンスラインを描画するのではなく、「SR Liquidity」は実際の価格変動を分析し、売りと買いの圧力が集中するゾーンを特定します。これらは、市場の真の動きを牽引する「流動性のプール(溜まり場)」そのものです。それらをチャート上に直接可視化することで、価格が実際に反応する前に、その動きを予測することが可能になります。つまり、このインジケーターは価格の方向性が変わる可能性を予測するのです。生のプライスアクションを、市場の重要な水準(転換点となり得るポイント)を示す、明確で実用的なロードマップへと変換してくれます。 このインジケーターは、FX、株価指数、貴金属、仮想通貨など、あらゆる銘柄や時間足で使用可能です。 ご購入後、取引手順や無料の優れた追加インジケ
この製品は 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、トレーリングストップロジック、サポートとレジスタンス、ローソク足の色分け
Gann Made Easy は、ミスター・ギャンの理論を使用した取引の最良の原則に基づいた、プロフェッショナルで使いやすい外国為替取引システムです。 W・D・ガン。このインジケーターは、ストップロスとテイクプロフィットレベルを含む正確な買いと売りのシグナルを提供します。 PUSH通知を利用して外出先でも取引可能です。 ご購入後、取引方法の説明と優れた追加インジケーターを無料で入手するには、私にご連絡ください! おそらく、ギャンの取引手法についてはすでに何度も聞いたことがあるでしょう。通常、ギャンの理論は初心者のトレーダーだけでなく、すでにある程度の取引経験がある人にとっても非常に複雑なものです。なぜなら、ギャンの取引手法は理論的にはそれほど簡単に適用できるものではないからです。私はその知識を磨き、最良の原則を私の外国為替インジケーターに組み込むために数年を費やしました。 このインジケーターは非常に簡単に適用できます。必要なのは、それをチャートに添付し、簡単な取引推奨事項に従うだけです。このインジケーターは常に市場分析の仕事を行い、取引の機会を探します。適切なエントリーポイントを検出す
割引は 24 時間後に終了します — 次の価格は$ 69 ZORYK — MetaTrader 4専用 XAUUSDシグナル・トレードプランニングシステム このような経験はありませんか。 ゴールドを分析し、エントリーを待ち、ようやくポジションを持った直後に価格が逆方向へ動く。 早すぎる決済をしてしまったり、Stop Lossを動かしたり、数秒迷っている間にチャンスを逃したりする。 その後、相場は自分が最初に予想していた方向へ進み、目標へ到達する。 問題は常に方向判断ではありません。 本当の問題は、明確な計画がなかったことです。 どこでエントリーすべきか。 どこでトレードの前提が無効になるのか。 近い利益を確保すべきか、より大きな値動きを待つべきか。 現在のsetupが本当に強いのか、それとも無理にトレードを探しているだけなのか。 ゴールドは非常に速く動きます。 正しい分析でも、明確なプランがなければ数秒で悪い判断に変わることがあります。 ZORYKは、その問題を解決するために開発されました。 ZORYKとは ZORYKは、MetaTrader 4とXAU
Dynamic Forex28 Navigator - 次世代の Forex 取引ツール。 現在 49% オフ。 Dynamic Forex28 Navigator は、長年人気のインジケーターを進化させたもので、3 つの機能を 1 つにまとめています。 Advanced Currency Strength28 インジケーター (レビュー 695 件)  + Advanced Currency IMPULSE with ALERT (レビュー 520 件) + CS28 コンボ シグナル (ボーナス)。 インジケーターの詳細 https://www.mql5.com/en/blogs/post/758844 次世代の Strength インジケーターが提供するもの  オリジナルで気に入っていたすべての機能が、新機能と精度の向上によって強化されました。 主な機能: 独自の通貨強度計算式。 すべての時間枠でスムーズかつ正確な強度ライン。 トレンドの特定と正確なエントリーに最適です。 ダイナミックマーケットフィボナッチレベル (マーケットフィボナッチ)。 このインジケーターに固有
Beast Super Signal
Florian Zuercher
4.73 (89)
収益性の高い取引機会を簡単に特定するのに役立つ強力な外国為替取引インジケーターをお探しですか?ビースト スーパー シグナル以外に探す必要はありません。 この使いやすいトレンドベースのインジケーターは、市場の状況を継続的に監視し、新しいトレンドを検索したり、既存のトレンドに飛びついたりします。ビースト スーパー シグナルは、すべての内部戦略が一致し、互いに 100% 合流したときに売買シグナルを発するため、追加の確認は不要です。シグナル矢印アラートを受け取ったら、単に売買します。 購入後、プライベート VIP グループに追加されるようにメッセージを送ってください! (完全な製品購入のみ)。 購入後、最新の最適化されたセット ファイルについてメッセージを送ってください。 MT5バージョンは こちらから入手できます。 Beast Super Signal EA は こちらから 入手できます。 コメント セクションをチェックして、最新の結果を確認してください。 ビースト スーパー シグナルは、1:1、1:2、または 1:3 のリスクと報酬の比率に基づいて、エントリー価格、ストッ
通貨強さウィザードは、取引を成功させるためのオールインワン ソリューションを提供する非常に強力な指標です。このインジケーターは、複数の時間枠のすべての通貨のデータを使用して、このまたはその外国為替ペアのパワーを計算します。このデータは、使いやすい通貨インデックスと通貨パワーラインの形式で表され、特定の通貨のパワーを確認するために使用できます。 必要なのは、取引したいチャートにインジケーターを接続することだけです。インジケーターは、取引する通貨の実際の強さを示します。このインジケーターは、トレンドに合わせて取引するときに有利に利用できる売買高の圧力の極値も示します。このインジケーターには、フィボナッチに基づく可能なターゲットも表示されます。 このインジケーターは、PUSH 通知を含むあらゆるタイプのアラートを提供します。 購入後ご連絡下さい。私の取引のヒントをあなたと共有し、素晴らしいボーナスインジケーターを無料で提供します! 幸せで有益な取引をお祈りします。
KURAMA GOLD SIGNAL PRO(MT4版)— 7層フィルター・自動TP/SL・品質スコア・サイン履歴保存搭載 XAUUSD完全トレードシステム リアルタイムでリペイントしません。サインが出た瞬間、矢印・エントリー・TP・SLはその場で固定され、後から動きません。あなたがトレードするのは、この「リアルタイムで出たサイン」です。さらにv7.20では、実際に通知されたサインを自動保存し、再起動後もそのまま復元します。 購入者限定特典 買い切りライセンスをご購入いただいた方に、AI Zone Radar($59相当)+完全PDFマニュアルを無料プレゼント。本体価格に$59相当の特典が付いてきます。購入後にMQL5でメッセージをお送りください。 AI Zone Radar: https://www.mql5.com/en/market/product/175834 ゴールドトレーダーのコミュニティで実際に使用され、精度と使いやすさで高く評価されています。 あな
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 4. Asian session range, London and New York kill zones, level progression (L1/L2/L3), peak formation detection (PFH/PFL), entry signals, and a multi-pair scanner from one chart. Stop scanning charts one pair at a time. The State Engine tracks the BTMM daily cycle automatically — Asian box, room boundaries, level blocks, peak formations, and filtered entries — while the scanner dashboard shows level, peak status,
Prop Firm Sniper MT4  is a professional market structure indicator that automatically identifies high-probability BUY and SELL opportunities using BOS and CHoCH analysis. Recommended Timeframes: For backtesting, use the indicator on   M5 or M15   for Gold (XAUUSD), and   M15 or H1   for more volatile Forex pairs such as   GBPUSD, USDJPY, EURGBP , and similar markets. CONTACT ME AFTER PURCHASE TO CLAIM YOUR FREE BONUSES! Prop Firm Sniper  is a professional market structure indicator designed t
CRT Candle Range Theory HTF MT4.   Ultimate CRT Indicator: Advanced ICT Concepts and Malaysian SnR Trading System Master the Market Maker's Footprints with the Most Advanced Candle Range Theory Indicator Unlock the true power of  Smart Money Concepts (SMC)  and trade precisely like the institutions with the  Ultimate CRT Indicator . Built exclusively for serious traders, this indicator automates the highly effective  Candle Range Theory (CRT) , a core pillar of  ICT Concepts (Inner Circle Trader
単純なドラッグアンドドロップEAでMetatrader4をPythonに接続するためのドキュメント。 完全にテストされた、高速で効率的な完全なエンドツーエンドソリューション! Pytraderエコシステムは、PythonスクリプトとMT4またはMT4EAで構成されています。 さらに、ライセンス供与にはインジケーターが使用されます。 PythonスクリプトとEAの間の通信は、ソケットに基づいています。 EAはサーバーであり、Pythonスクリプトはクライアントです。 それは常にquery(関数/ pythonスクリプト)とoutput(データ/サーバー)です。 EAは、Pythonスクリプトが実行されているのと同じコンピューターで実行する必要はありません。 Githubリンクには、Pythonスクリプト、EA、完全なドキュメント、および関数の呼び出し方法を示すPytraderサンプルスクリプトがあります。 質問については、不和チャンネルもあります。 デモ(ライセンスインジケーターなし)でも全機能がありますが、機器の数は限られています (EURUSD、AUDCHF、NZDCHF、GBP
FullScalping は、あらゆる市場で 継続的なスキャルピングエントリー を生成するように特別に設計された 再描画なし、後方描画なし のインジケーターです。絶え間ないアクションを求める積極的なトレーダーに最適です! 独占情報とアップデートを入手するには、チャンネルに参加してください: https://www.mql5.com/en/channels/forexnewadvisor ほぼすべてのローソク足 でシグナルを出し、トレンドを確認するか、重要なリトレースメントをシグナルします。常にあなたを導くレーダーのようなものです。 どのように機能しますか?非常にシンプルです: 赤い矢印 売り 取引に入る。 青い矢印 買い 取引に入る。 常に一般的なトレンドの方向に取引し、 取引ごとに15〜20ピップ を積極的にターゲットにし、急激な市場の反転の前に素早く退出します。 シグナルは 継続的 なので、取引機会が尽きることはありません。目標は以下を使用して 集中的なスキャルピング を実行することです: 高ロット 低スプレッド(左下隅に表示) 最後のトレンド変化の近くに配置された
Currency Strength Meter is the easiest way to identify strong and weak currencies. This indicator shows the relative strength of 8 major currencies + Gold: AUD, CAD, CHF, EUR, GBP, JPY, NZD, USD, XAU. Gold symbol can be changed to other symbols like XAG, XAU etc. By default the strength value is normalised to the range from 0 to 100 for RSI algorithm: The value above 60 means strong currency; The value below 40 means weak currency; This indicator needs the data of all 28 major currency pairs a
この製品は 2026 年の市場向けに更新され、最新の MT5 ビルドに最適化されています。 価格更新のお知らせ: Atomic Analyst は現在 $99 で提供されています。 次の 30 件の購入 後、価格は $199 に上がります。 特別オファー: Atomic Analyst を購入後、私にプライベートメッセージを送ることで、 Smart Universal EA を無料 で受け取り、Atomic Analyst のシグナルを自動売買に変えることができます。 Atomic Analyst は、リペイントなし、再描画なし、遅延なしの Price Action トレーディングインジケーターで、手動取引、シグナルの明確化、EA 自動化のために設計されています。 User manual: settings, inputs and strategy.     &   User Manual PDF . 価格行動、強さ、モメンタム、マルチタイムフレーム方向、高度なフィルターを分析し、トレーダーがノイズを減らし、弱いセットアップを避け、より構造化された取引判断を行えるようにします。 こ
Scalper Inside PRO は日中トレンドの分析を助け、エントリー前にトレードを組み立てられるインジケーターです。中核となるのは、相場をより正確に読むための3つの専用ストラテジー。シグナルが出た瞬間に方向を自動で判断し、主要な価格帯を計算するので、想定エントリーポイント、予想ストップロス、複数の利確レベルを前もって確認できます。詳細なパフォーマンス統計が、各銘柄とストラテジーが過去にどう機能したかを示し、今の相場に合った資産選びを助けます。単体のスキャルピングツールとしても、あなたのシステムの一部としても、自作 EA のベースとしても使えます。MetaTrader 4 プラットフォームで動作します。 インジケーターはエントリー、3つの利確レベル - TP1、TP2、TP3、そして任意のストップロスをチャート上に直接表示します。自作の矢印インジケーターを接続し、その統計と収益性を検証することも可能です。 ご購入後は直接ご連絡ください。専用のボーナス add-ons、実トレードでの活用に関する追加情報、そしてご自身のトレードシステムや EA への正しい接続のサポートをお渡しします
高い成功率で Indirection Break Out Signal を検出します。 価格は8月15日までに119$に値上がりします Market Structure Break Out (MSB) の紹介 , このインジケーターは MT4およびMT5プラットフォーム 向けに設計された高度なツールで、トレーダーが価格構造の視点から市場の動きを把握できるよう支援します。矢印とアラートを使用して、主要な トレーディングシグナル を識別・強調表示し、 トレンド方向 および 逆方向 (反転シグナル)の両方に対応します。 際立った機能の一つは、 未突破の供給・需要ゾーンを描画する 能力であり、トレーダーに重要な価格エリアへの明確な洞察を提供します。さらに、 ライブバックテスト機能 により、ユーザーはチャート上で直接インジケーターの過去のパフォーマンスを確認でき、シグナルへの透明性と自信を提供します。 受け取り方法は? ここをクリックしてEAをダウンロード 。このEAは、すでにMarket Structure Break Outインジケーターを購入済みの場合にのみ動作します。 無料のMarke
Angle Iindicator - ターは、方向転換とトレンド確認のためのインジケーターです。 価格の動きを分析し、チャート上のピークとトラフを特定することで、反転ポイントを検出します。 トレンド方向をサポートします。 あらゆる金融商品と時間枠で使用できます。 内部パラメーターは既に設定済みです。インジケーターをチャートに配置し、「乗数」パラメーターを希望の結果に合わせて設定するだけで使用できます。 インジケーターは現在のローソク足上に矢印を生成します。ローソク足の形成中は、矢印が点滅することがあります。ローソク足が確定しても、矢印は過去の履歴には再描画されません。 方向転換のアラートが提供されます。 単独で使用することも、トレーディングシステムと組み合わせて使用​​することもできます。 インジケーターを正しく使用するには、「乗数」パラメーターを設定する必要があります。 インジケーターの結果は、チャート上で反転角度がどのように生成されるかによって異なります。 「乗数」パラメーターは連続するローソク足の構造を決定し、反転ポイントの頻度を決定します。 0.1から100
現在30%OFF! 初心者やエキスパートトレーダーのためのベストソリューション! このダッシュボードソフトウェアは、28の通貨ペアで動作しています。それは私達の主要な指標(高度な通貨の強さ28と高度な通貨インパルス)の2に基づいています。それは全体の外国為替市場の大きい概観を与えます。それは、すべての(9)時間枠で28の外国為替ペアのための高度な通貨の強さの値、通貨の動きの速度と信号を示しています。チャート上で1つのインディケータを使用して市場全体を観察し、トレンドやスキャルピングの機会をピンポイントで見つけることができたら、あなたのトレードがどのように改善されるか想像してみてください。 このインディケータには、強い通貨と弱い通貨の識別、潜在的な取引の識別と確認がより簡単になるような機能が搭載されています。このインディケータは、通貨の強さや弱さが増加しているか減少しているか、また、すべての時間枠でどのように機能しているかをグラフィカルに表示します。 新機能として、現在の市場環境の変化に適応するダイナミックなマーケットフィボナッチレベルが追加され、すでに当社のAdvanced
Advanced Supply Demand
Bernhard Schweigert
4.91 (302)
現在30%オフ 初心者にもエキスパートトレーダーにも最適なソリューション このインジケーターは独自の機能と新しい公式を多数内蔵しており、ユニークで高品質かつ手頃な取引ツールです。このアップデートでは、2つの時間枠ゾーンを表示できるようになります。より長いTFだけでなく、チャートTFとより長いTF(ネストゾーンを表示)の両方を表示できます。すべてのSupply Demandトレーダーの皆さんのお気に召すはずです。:) 重要情報の公開 Advanced Supply Demandの可能性を最大化するには、 https://www.mql5.com/ja/blogs/post/720245 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適な
Trend Catcher ind
Ramil Minniakhmetov
5 (11)
トレンドキャッチャーインジケーター トレンドキャッチャーインジケーターは、開発者独自の適応型トレンド分析指標を組み合わせることで、市場価格の動きを分析します。短期的なノイズを除去し、根底にあるモメンタムの強さ、ボラティリティの拡大、価格構造の挙動に焦点を当てることで、真の市場方向性を特定します。また、移動平均線、RSI、ボラティリティフィルターなどの平滑化およびトレンドフィルタリング機能を備えたカスタマイズ指標も使用します。 実際の運用状況のモニタリングやその他の製品については、こちらをご覧ください: https://www.mql5.com/en/users/mechanic/seller ご注意ください。私はTelegramでEAや設定を販売していません。詐欺です。すべての設定はブログで無料で公開しています。 重要!ご購入後すぐにご連絡ください。手順とボーナスをお送りします!
Presenting one-of-a-kind Gann Indicator for XAUUSD IQ Gold Gann Levels is a non-repainting, precision tool designed exclusively for XAUUSD intraday trading. It uses W.D. Gann’s square root method to plot real-time support and resistance levels, helping traders spot high-probability entries with confidence and clarity. William Delbert Gann (W.D. Gann) was an exceptional market analyst whose trading technique was based on a complex blend of mathematics, geometry, astrology, and ancient calculation
Currency Strength Pro は、主要 8 通貨を相対的な強さで順位付けします。最大 28 の通貨ペアから読み取り、複数の時間軸を合成して計算したうえで、バスケット自身が組める通貨ペアを等級付きスキャナーに順位付けします。確定足のみを使用し、ティックごとには計算しません。 考え方は単純です。今日たまたま形の良いチャートではなく、強い通貨を弱い通貨に対して取引する。強さの表は「どの通貨か」に答え、A/B/C 等級付きのスキャナーは「どのペアか、そのセットアップはどれだけ明確か」に答えます。 この指標がすること パネルは EUR、GBP、AUD、NZD、USD、CAD、CHF、JPY を強い順に並べます。すべての数値は、お使いのブローカーが実際に配信している通貨ペアから作られます。各ペアは一方に加算し他方から減算するため、8 つのスコアは常に 50 を中心とし、バスケットは構造上ゼロサムになります。50 はバスケットの平均であり、固定された水準ではありません。スコア 70 は、その通貨が今この瞬間に他の 7 通貨に対して強いことを意味し、絶対的に強いという意味ではありません。
これは、キャンドルの終値を予測する指標です。 このインジケータは、主にD1チャートでの使用を目的としていますが. この指標は、従来の外国為替取引とバイナリオプション取引の両方に適しています。 インジケーターは、スタンドアロンのトレーディングシステムとして使用することも、既存のトレーディングシステムへの追加として機能させることもできます。 このインジケーターは、現在のキャンドルを分析し、キャンドル自体の内部の特定の強度係数と、前のキャンドルのパラメーターを計算します。 したがって、この指標は、市場の動きのさらなる方向性と現在のキャンドルの終値を予測します。 この方法のおかげで、この指標は、短期の日中取引だけでなく、中期および長期の取引にも適しています。 インジケーターを使用すると、市場の状況の分析中にインジケーターが生成する潜在的な信号の数を設定できます。 インジケーターの設定には、このための特別なパラメーターがあります。 また、インジケーターは、チャート上のメッセージの形式で、電子メールで、およびPUSH通知の形式で、新しい信号について通知することができます。 購入後は必ず私に書いて
T.M.M チャネル システムは、特別なトレンド フィルター価格チャネル インジケーターを使用して、トレンドに合わせて買いと売りのシグナルを提供する外国為替取引システムです。このインジケーターは、2 つのパラメーターのみを使用して、あらゆる市場に簡単に適応できます。このチャンネル インジケーターは再描画されません。チャネルインジケーターはH4チャートでの取引に推奨されますが、どの時間枠でも使用できます。購入後、チャンネルインジケーターをダウンロードします。矢印インジケーターはご購入後に無料で提供されます。購入後に連絡するだけです。 このマーケットプレイスでは、TMM チャネル インジケーター (このページで紹介されているインジケーター) を購入できます。このインジケーターを購入すると、矢印インジケーターが無料で入手できます。この製品を購入して、矢印ツールをリクエストするメッセージを私に送ってください。 2番目のインジケーターを無料でお送りします。 購入後はご連絡ください!システムの他のインジケーターを完全に無料でお送りします。さらに、素晴らしいボーナスもお伝えします!
PRO Renko Systemは、特別にRENKOチャートを取引するために設計された高精度の取引システムです。 これは、様々な取引商品に適用することができる普遍的なシステムです。 システムは効果的に正確な逆転信号へのアクセスを与えるいわゆる市場の騒音を中和する。 表示器は非常に使いやすく、信号の生成に責任がある1つの変数だけがあります。 あなたは簡単にお好みの任意の取引ツールとレンコバーのサイズにツールを適応させることができます。 私はいつもあなたが私のソフトウェアで収益性の高い取引を支援するために余分なサポートを提供する準備ができています! 私はあなたに幸せで収益性の高い取引をしたいです! ご購入後にご連絡ください! 私はあなたに私のレンコチャートジェネレータを送信します。 私はまた、私の個人的な推奨事項やシステムの他のモジュールを無料で共有します!
BlueDigitsFx公式エコシステムへのアクセス インフラ更新情報、トレーディングリソース、製品リリース情報、およびBlueDigitsFx公式エコシステムへのアクセスを取得できます。 Telegramエコシステム ウェブサイト MT5版 BlueDigitsFx Easy 123 System — MT4向け高性能な反転・ブレイクアウト検出システム 市場の反転とブレイクアウトを見つけるためのオールインワン非リペイントシステム — 構造的な分析、明確なシグナル、確認ベースのトレードを重視するトレーダー向けに開発されています。 BlueDigitsFx Easy 123 Systemは、MT4向けのビジュアルインジケーターおよびアラートシステムであり、市場構造の変化、ブレイクアウト、トレンド反転をシンプルかつ明確に識別するのに役立ちます。 このインジケーターは、構造化された「123」パターンに基づいて動作します。 ステップ 1 :潜在的な相場の失速ポイントで大きな矢印を表示し、新高値または新安値を識別します。 ステップ 2 :市場構造のブレイクを検出し、トレンド反転の可能性を確
作者のその他のプロダクト
================================================================  DispTrade_en.mq4  User Manual ================================================================ OVERVIEW -------- Displays trade history and open positions visually on the MT4 chart using arrows and connecting lines. WHAT IT SHOWS ------------- - BUY Entry Arrow   : Entry point for BUY orders (blue) - SELL Entry Arrow  : Entry point for SELL orders (red) - Exit Arrow        : Close point for historical trades (goldenrod) - Dott
FREE
## 1. Overview PDSearch is a scanner that instantly shows you, across every symbol and every timeframe, whether price is currently trading at a premium or a discount $2014 on a single chart. Working out an ICT Premium/Discount bias normally means manually finding the swing high and low and drawing a Fibonacci retracement yourself. PDSearch automates this across every symbol and timeframe, so you can see the discount (buy-side) or premium (sell-side) bias at a glance, color-coded. DSearch  448
FREE
Reverse Elements - Formatted Description Reverse Elements Reverse Elements is a signal-based indicator designed to help identify potential market reversal points directly on the chart. Using a proprietary calculation method, the indicator displays buy and sell signals with arrows. It is built to support discretionary trading by making potential entry areas easier to recognize visually. This is not an Expert Advisor and does not place trades automatically. Main Features Buy and sell arrows displa
================================================================   TradeInfoS_en  -  Trade Statistics Indicator for MT4   Copyright (C) 2014 fx-mt4ea.com ================================================================ OVERVIEW -------- Displays trade history statistics and market info in a separate indicator window. Shows results for All-time, This Month, and This Week in three columns. DISPLAY LAYOUT -------------- [ S ]  T:xx/W:xx/L:xx/R:xx%/PL:xx    <- All-time stats [ M ]  T:xx/W:xx/L:xx
FREE
First 20 Downloads FREE ## 1. Overview $2014 MA Perfect Order All-Currency Scanner Detects "Perfect Order" moving average alignment across all currency pairs simultaneously. A Perfect Order occurs when 3-5 moving averages of increasing periods are stacked in a single, uninterrupted order $2014 proof that price is trending cleanly with no conflicting timeframes.   BUY  signal : Shorter-period MAs are all above longer-period MAs (fast-to-slow stack) -> strong uptrend   SELL signal : Shorte
FREE
================================================================   ShowKillZones v1.0   - NY AM終了を11→10、NY PM終了を17→16(キルゾーン時刻に修正)   - NY AM/PM のラベルをKill Zoneに変更 v1.0  -  使用マニュアル ================================================================ 【概要】 ICTのKill Zone(セッション時間帯)をチャート上にゾーン表示し、 各セッションの高値・安値にアラートを出すインジケーター。 ・ロンドン / NY AM / NY PM は ET(米国東部時間)で入力 ・US夏時間(DST)を自動判定 → UTC変換を自動補正 ・前日高値/安値・上位足高値/安値・ラウンドナンバーも表示 ================================================================   インストール =======
FREE
## 1. Overview Scan up to 64 symbols $FFFD~ 7 timeframes = 448 combinations simultaneously. --- ## 2. All-Currency Monitoring Series Tools that monitor all currency pairs at once become an incredibly powerful weapon once mastered ? a trading tool for life. The key is to match the right tool to your trading strategy. Here are the hottest tools available right now: - IFVG All-Currency Scanner   The most effective tool for catching ICT fake-out moves.   https://www.gogojungle.co.jp/tools/
FREE
First 50 Downloads Free      AutoLineSaver for 448 Save and restore your chart workspace automatically.  |  User Manual 1. Overview AutoLineSaver automatically saves every line you draw on the chart and restores them the next time you open it. No more redrawing your analysis from scratch. Drop AutoLineSaver onto your chart once, and your workspace is always preserved. What it saves: • Horizontal lines • Trendlines • Rays (extended trendlines) • Vertical lines • Rectangles • Fibonacci retra
FREE
Stoch Cross 448 Scanner Scan 64 pairs x 7 timeframes for stochastic golden/dead crosses — all from a single chart.  |  User Manual ------------------------------------------------------------------------ 1. Overview ------------------------------------------------------------------------ Stoch Cross 448 Scanner is a MetaTrader 4 indicator that monitors stochastic cross signals across 64 currency pairs and 7 timeframes simultaneously, displaying all results in a single panel. Drop it onto any
FREE
RSI Border Search scans up to 64 symbols across 7 timeframes (448 combinations) in real time, detecting when RSI reaches overbought or oversold levels on confirmed bars. KEY FEATURES - Multi-Symbol Scanner: Monitor up to 64 symbols x 7 timeframes = 448 cells simultaneously. - RSI Boundary Detection: Detects when RSI crosses above or below your specified boundary level on confirmed (closed) bars. - No Repaint: Only confirmed bars are evaluated. The forming bar is never used, so signals
FREE
MagicalTouch for MT4 Draw a line. Wait for the alert. MagicalTouch monitors lines you draw on MT4 and fires an alert the instant price touches them. What it does Horizontal lines: Alerts when price hits the specified level. Vertical lines: Alerts when a candle reaches the specified time. Trendlines: Alerts on touch (a unique feature MT4 cannot do natively). Alert Types: Supports Popup, Sound, Email, and Mobile Push Notifications. Quick Start (3 Steps) Apply: Drag MagicalTouch onto any chart. Dr
MA Cross 448 Scanner Scan 64 pairs x 7 timeframes for MA crossovers — all from a single chart.  |  User Manual ------------------------------------------------------------------------ 1. Overview ------------------------------------------------------------------------ MA Cross 448 Scanner is a MetaTrader 4 indicator that monitors moving average crossovers across 64 currency pairs and 7 timeframes simultaneously, displaying all results in a single panel. Drop it onto any chart and it instantly
50% OFF for the First 50 Users 1. Overview  ?  ICT IFVG All-Currency Scanner Detects IFVG (Inverse Fair Value Gap) signals across all currency pairs simultaneously. An IFVG occurs when a candle body fully breaks through a prior Fair Value Gap in the OPPOSITE direction ? a key ICT concept indicating a potential institutional reversal. IFVG 448 Scanner Guide is Here    BUY  signal : Bear FVG is broken upward   → price likely to rise   SELL signal : Bull FVG is broken downward → price likely to
HigherTF Background Candle draws higher timeframe candlesticks directly on your chart background, giving you instant multi-timeframe context without switching charts. KEY FEATURES - Background HTF Candles: Renders Open/High/Low/Close of any higher timeframe as colored rectangles behind your price action. - Instant TF Switching: Press keys 1-9 to switch between M1, M5, M15, M30, H1, H4, D1, W1, MN1. Press 0 to hide. - Auto-Promotion: If the selected TF is equal to or lower than the cha
Reverse_Elements_AllSearch Reverse_Elements signals multi-symbol / multi-timeframe scanner for MetaTrader 4 ---------------------------------------------------------------------- Important Requirement ---------------------------------------------------------------------- Reverse_Elements_AllSearch requires the main Reverse_Elements indicator. Reverse_Elements_AllSearch is not a standalone signal-generation indicator. It is a scanner that reads signals from the main Reverse_Elements indicator an
フィルタ:
レビューなし
レビューに返信