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.0


FREE for the First 100 Users

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

  IFVG Signals Indicator  (ICTIFVGmq4_en.mq4)  ?  User Manual

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

Version : 1.00

Platform: MetaTrader 4

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

Zone    : Horizontal rectangle drawn at the confirmed IFVG zone


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

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

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


おすすめのプロダクト
This is a unique tick chart indicator for MetaTrader 4 platform. The software is capable to graphically display the last 100 ticks and in addition to that it displays the current spread, bid / ask and time values ​​in an elegant IceFX style dashboard. The indicator is an efficient tool for traders using M5 or even M1 timeframe. Indicator parameters: Corner - corner of panel CornerXOffset - horizontal offset from the corner CornerYOffset - vertical offset from the corner ChartType - type of char
FREE
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
This indicator will mirror the assets in use in another metatrader, being able to choose the timeframe and a template. This is the Metatrader 4 Client, it needs the Metatrader 4 or 5 Server versions: Metatrader 4 Mirror Chart Server: https://www.mql5.com/en/market/product/88644 Metatrader 5 Mirror Chart Server:   https://www.mql5.com/en/market/product/88652 Details of how it works in the video.
FREE
ATR Bands with Take-Profit Zones for MT4 The ATR Bands indicator for MT4 is designed to assist traders in managing risk and navigating market volatility. By using the Average True Range (ATR), it helps identify key price levels and set realistic stop-loss and take-profit zones. Key Features: ATR-Based Bands : The indicator calculates dynamic upper and lower bands using ATR. These bands adjust based on price volatility, helping to indicate potential support and resistance levels. Customizable Par
FREE
IceFX VelocityMeter is a very unique indicator on MetaTrader 4 platform which measures the speed of the forex market. It's not a normal volume or other measurement indicator because IceFX VelocityMeter is capable to understand market speed movements which are hidden in ticks and those valuable information cannot be read in an ordinary way from the candles. The software monitors the received ticks (frequency, magnitude of change) within a specified time range, analyzes these info and defines, dis
FREE
Dark & Light Themes for MT4. The Dark & Light Themes indicator helps you switch the MT4 chart display between dark and light color schemes. It also includes a watermark showing the current currency pair (symbol) and the active timeframe. This simple and clean interface makes it more comfortable for traders to analyze charts using any indicator. FXDragunov Indonesia.
FREE
The indicator analyzes the volume scale and splits it into two components - seller volumes and buyer volumes, and also calculates the delta and cumulative delta. The indicator does not flicker or redraw, its calculation and plotting are performed fairly quickly, while using the data from the smaller (relative to the current) periods. The indicator operation modes can be switched using the Mode input variable: Buy - display only the buyer volumes. Sell - display only the seller volumes. BuySell -
FREE
Enhanced Volume Profile: The Ultimate Order Flow & Liquidity Analysis Tool Overview Enhanced Volume Profile   is an indicator for MetaTrader 5 that displays the traded volume at specific price levels over a defined period. It separates the total volume into buy and sell components, presenting them as a side-by-side histogram on the chart. This allows users to observe the volume distribution and the proportion of buy and sell volumes at each price level. Graphics Rendering The indicator uses t
FREE
BoxInside MT4
Evgeny Shevtsov
4.83 (6)
This indicator calculates the volume profile and places labels that correspond to the VAH, VAL and POC levels, for each candle individually. Indicator operation features The indicator works on the timeframes from M5 to MN, but it uses the history data of smaller periods: M1 - for periods from M5 to H1, M5 - for the H4 period, M30 - for the D1 period, H4 - for the W1 period, D1 - for the MN period. The color and location of the VAL, VAH and POC labels on the current candle are considered to be c
FREE
This panel is a part of the SupDem-Pro trading system and is used to search for the best opportunities for any available instruments. Which can be selected manually in the Market Watch (open it with CTRL + M). Using this trading panel in combination with ShvedSupDem-Pro_Zone allows to analyze multiple currency pairs with a single click. The panel allows to load any instruments from the Market Watch, from 6 major currency pairs up to all instruments (480). The indicator parameters Button Width -
マルチタイムフレーム対応、カスタマイズ可能なビジュアル信号、設定可能なアラートシステムを備えた相対力指数(RSI)インジケーター。 フリーランスプログラミングサービス、アップデート、その他のTrueTL製品は私の MQL5プロフィール からご利用いただけます。 フィードバックとレビューを心よりお待ちしております! RSIとは? 相対力指数(RSI)は、価格変化の速度と大きさを測定するモメンタムオシレーターです。このインジケーターは0から100の間で振動し、指定された期間にわたって最近の上昇幅と最近の下落幅の大きさを比較します。 RSIは主に買われすぎと売られすぎの状態を識別するために使用されます。高い値は買われすぎ状態を示し、低い値は売られすぎ状態を示します。トレーダーはまた、RSIと価格動作の間のダイバージェンスにも注目しており、これは潜在的なトレンド転換を示す可能性があります。 機能: 矢印と垂直線を使用したビジュアルシグナルマーカー 設定可能なトリガー付きの3つの独立したシグナルバッファ(方向変化、レベル交差、ピーク/谷、極端ゾーン) 時間帯フィルタリング付きの設定可能なア
FREE
After purchasing the Tpx Dash Supply Demand indicator, you must download this indicator which will link and feed market data to the Tpx Dash Supply Demand indicator and will provide all Supply Demand price signals, ATR Stop, VAH and VAL, trend values ​​with the ADX, and POC prices and locations in the market. Just download it and Dash will locate the indicator to retrieve the information!
FREE
Show Pips
Roman Podpora
4.27 (59)
この情報インジケーターは、アカウントの現在の状況を常に把握したい人にとって役立ちます。このインジケーターには、ポイント、パーセンテージ、通貨での利益、現在のペアのスプレッド、現在の時間枠でバーが閉じるまでの時間などのデータが表示されます。 バージョンMT5 -   より便利なインジケーター チャート上に情報線を配置するには、いくつかのオプションがあります。 価格の右側 (価格の後ろにあります); コメントとして (グラフの左上隅に); 画面の選択した隅。 情報区切り記号を選択することもできます。 | / 。 \ # インジケーターにはホットキーが組み込まれています。 キー 1 - 情報表示の種類に戻ります (価格、コメント、コーナーの右側) キー 2 - 情報表示の種類を 1 つ進みます。 キー 3 - 情報ライン表示の位置を変更します。 ホットキーは設定で再割り当てできます。 このインジケーターは使いやすく、非常に有益です。設定で不要な情報項目を無効にすることも可能です。 設定 表示された情報を置き換えるホット キー (戻る)   - 情報表示の種類に戻ります。 表示情報を切り替
FREE
================================================================   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
Real-time spread tracking and monitoring software Displays spread values in form of histograms on current timeframe of chart Convenient for analyzing spread changes, as well as for comparing trading conditions of different brokers By placing on desired chart, the spread changes at different trading times are displayed Additionally Fully customizable Works on any instrument Works with any broker
FREE
Symbol Overlay
John Louis Fernando Diamante
5 (2)
This indicator plots another symbol on the current chart. A different timeframe can be used for the symbol, with an option to display in multiple timeframe mode (1 overlay candle per several chart candles). Basic indicators are provided. To adjust scaling of prices from different symbols, the overlay prices are scaled to the visible chart price space. Features symbol and timeframe input MTF display option to vertically invert chart, eg overlay USDJPY, invert to show JPYUSD data window values; o
FREE
SpectorMA
Sergii Krasnyi
5 (1)
このインディケータは、チャートのビジュアルを向上させるだけでなく、チャートに躍動感やダイナミックさを与えます。このインジケータは、1つまたは複数の移動平均(MA)インジケータを組み合わ せたもので、常に色が変化し、カラフルで興味深い外観を作り出します。 この製品はグラフィカルなソリューションであるため、テキストでその機能を説明することは困難です。 このインジケーターは、ビデオ編集用にチャートの美しい画像を作成したいブロガーや、チャートを生き生きとカラフルにしたいトレーダーに適しています。 MAラインのカラーパレットは、虹のように変化したり、ランダムに変化したりします(設定したパラメータによる)。MAインジケータは、「MA期間」パラメータのステップを維持することで、独立に並び、美しい画像を作成します。 また、このインジケーターにはMA期間を常に変更する機能があり、チャートに活気とダイナミズムの効果を作り出すことができます。 ご清聴ありがとうございました。 ご清聴ありがとうございました。
FREE
Market Profile 3
Hussien Abdeltwab Hussien Ryad
3 (2)
Market Profile 3 MetaTrader 4 indicator  — is a classic Market Profile implementation that can show the price density over time, outlining the most important price levels, value area, and control value of a given trading session. This indicator can be attached to timeframes between M1 and D1 and will show the Market Profile for daily, weekly, monthly, or even intraday sessions. Lower timeframes offer higher precision. Higher timeframes are recommended for better visibility. It is also possible t
FREE
This indicator has been created for finding the probable reversal points of the symbol price. A small candlestick reversal pattern is used it its operation in conjunction with a filter of extremums. The indicator is not redrawn! If the extremum filter is disabled, the indicator shows all points that have a pattern. If the extremum filter is enabled, the condition works – if the history Previous bars 1 candles back contains higher candles and they are farther than the Previous bars 2 candle, such
FREE
外国為替マーケットプロファイル(略してFMP) これは何ではありません: FMPは、従来の文字コード化されたTPO表示ではなく、チャートデータプロファイルの計算全体を表示しません。また、チャートを期間に分割して計算しません。 それが何をするか: 最も重要なことは、FMPインジケーターは、ユーザー定義のスペクトルの左端とユーザー定義のスペクトルの右端の間にあるデータを処理することです。 ユーザーは、インジケーターの両端をマウスで引くだけでスペクトルを定義できます。 インジケーターの右端がライブバーに引き寄せられ、さらに(将来に)引っ張られると、インジケーターは「ライブ」と見なされます(新しいバーで更新されます) インジケーターは、アタッチされているチャートに「アンカー」オブジェクトをドロップし、その後、そのアンカーをハードドライブ上のファイルに関連付けます。 これにより、チャート(またはインジケーター)が閉じられるまで、再起動しても設定が維持された状態で、チャート上で継続的なFMPを実行できます。 FMPインジケーターは、1つのチャート上でそれ自体の多くのインスタンスを実行でき、
FREE
Local_Timeは、チャート下部に指定の時差または、自動計算された時差でオリジナルの時間目盛りを追加します。 時間目盛りには、「DD.MM hh:mm」「DD MMM hh:mm」「MM-DD hh:mm」「MM/DD hh:mm」「DD hh:mm」「hh:mm」などなど対数のフォーマットに対応しています。 時差計算の必要性がない方でも、標準の時間目盛を消して、この時間目盛でサーバー時間の表示形式を変えるだけで、チャートの見やすさがアップするでしょう。 また、この日時バーよりも下にサブウインドウが作られてしまった場合は、赤いバーが表示されクリックすると最下部に移動する機能も付いています。 表示イメージは、スクリーンショットをご覧ください。 how to use https://www.mql5.com/en/blogs/post/752455
FREE
Better Period Separators For MetaTrader 4 The built-in period separators feature doesn’t allow users to specify the time period, so you can use this indicator to create more customizable period separators. On intraday charts, you could place period separators at a specific time, you could also place extra period separators at a specific time on Monday to mark the start of a week. On higher timeframe charts, this indicator works the same as the built-in period separators, On the daily chart, peri
FREE
There is a very simple and surprisingly effective indicator called Pi Cycle, which starts to give the first warning. It is worth a look, so as not to miss the giant elephant in the living room!)) What is Pi Cycle? Pi Cycle is a very simple indicator created by analyst Philip Swift . It takes into account two (DMA biased moving averages ): 350-day average x 2 111-day average Both can be considered long-term indicators. The second one is obviously more sensitive to current market changes, since
FREE
This simple indicator paints with a darker color on the volume bar when the quantity traded is above the average of select number of periods of the volume itself, highlighting the moments when there was a large volume of deals above the average. It is also possible to use a configuration of four colors where the color tone shows a candle volume strength. The indicator defaults to the simple average of 20 periods, but it is possible to change to other types of averages and periods. If you like t
FREE
Constructor is a convenient tool for creating, (building strategies) testing and applying trading strategies and ideas, as well as testing and using separate indicators and their groups. Constructor includes opening, closing, deal tracking, averaging and recovery modules, as well as various trading options with and without averaging and martingale. You are able to connect up to 10 different external indicators. Find the detailed instructions in the attached pdf file. Trading settings averaging
FREE
Time Scale
Taras Slobodyanik
4.87 (15)
The indicator draws the time scale on the chart. You can specify the time offset, adjust the size and font to display on the chart (it is displaying your local time on your chart instead of MT time). You can also select the desired format for displaying the date and time. While holding down the middle mouse button, and moving the cursor, a slider will appear on the scale. You may be interested in my other product , which contains a more advanced version of the Time Scale. You can also find my o
FREE
Here   our more valuable tools SMC Trend Trading   ,  Easy SMC Trading  ,  Institutional SMC Architect Volume Analysis Tools  ,  Volume flow Profile  ,  Market volume profile  , FVG with Volume  , Liquidity Heatmap Profile  ,  Volume Spread Analysis       MT5 VERSION   TRADE COPIER Select Role: On the account sending trades, choose Sender (Master Account) . On the account receiving trades, choose Copier (Receiver Account) . Lot Size Mode: Same Lot Size as Master: Ignores multipliers, copies ex
Zig Zag 123 tells us when a reversal or continuation is more likely by looking at the shift in supply and demand. When this happens a signature pattern appears known as 123 (also known ABC) will often break out in direction of higher low or lower high. Stop loss and take profit levels have been added. There is a panel that shows the overall performance of your trades for if you was to use these stop loss and take profit levels.  We get alerted if a pattern 123 appears and also if the price re
FREE
AQ XFifteen
HIT HYPERTECH INNOVATIONS LTD
4 (7)
Χ15 indicator is a MetaTrader 4 tool that allows you to BUILD & BACKTEST ON REAL TIME your own strategies quickly, easily and efficiently. It contains 15 of the most popular technical analysis indicators that you can use, each one in a different way. Choose the indicators that you want to use, select how you will use them and you will see on the chart BUY (green) and SELL (red) arrows implementing your strategy. Choose Take Profit and Stop Loss and you will see the results of your strategy with
FREE
it is hard to do full margin strategy in MT4, because you cannot close all orders easily. Unlock the power of full margin trading with confidence using   FullMargin RiskGuard , a cutting-edge Expert Advisor (EA) designed specifically for beginner traders on the MetaTrader 5 platform. Inspired by the renowned trading style of Papip Celebes, this EA empowers users to execute full trade strategies while safeguarding their capital with advanced risk management features. Key Features: MaxFloatingLos
FREE
このプロダクトを購入した人は以下も購入しています
Gann Made Easy は、ミスター・ギャンの理論を使用した取引の最良の原則に基づいた、プロフェッショナルで使いやすい外国為替取引システムです。 W・D・ガン。このインジケーターは、ストップロスとテイクプロフィットレベルを含む正確な買いと売りのシグナルを提供します。 PUSH通知を利用して外出先でも取引可能です。 ご購入後、取引方法の説明と優れた追加インジケーターを無料で入手するには、私にご連絡ください! おそらく、ギャンの取引手法についてはすでに何度も聞いたことがあるでしょう。通常、ギャンの理論は初心者のトレーダーだけでなく、すでにある程度の取引経験がある人にとっても非常に複雑なものです。なぜなら、ギャンの取引手法は理論的にはそれほど簡単に適用できるものではないからです。私はその知識を磨き、最良の原則を私の外国為替インジケーターに組み込むために数年を費やしました。 このインジケーターは非常に簡単に適用できます。必要なのは、それをチャートに添付し、簡単な取引推奨事項に従うだけです。このインジケーターは常に市場分析の仕事を行い、取引の機会を探します。適切なエントリーポイントを検出す
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
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
PZ Day Trading
PZ TRADING SLU
3.67 (3)
このインディケータは、価格アクション分析とドンチャンチャネルのみを使用して、ジグザグ方式で価格の反転を検出します。再描画やバックペインティングを一切行わずに、短期取引向けに特別に設計されています。それは彼らの操作のタイミングを増やすことを目指している賢明なトレーダーにとって素晴らしいツールです。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 驚くほど簡単に取引できます すべての時間枠で価値を提供します 自己分析統計を実装します 電子メール/音声/視覚アラートを実装します 可変長のブレイクアウトと混雑ゾーンに基づいて、インディケータは価格アクションのみを使用して取引を選択し、市場が非常に高速に行っていることに反応します。 過去のシグナルの潜在的な利益が表示されます この指標は、独自の品質とパフォーマンスを分析します 負けブレイクアウトは強調表示され、説明されます インジケータは、非バックペインティングおよび非再ペイントです この指標は、日中のトレーダーが単一の価格反転を見逃さないようにするのに役立ちます。ただし、すべての
Trend Catcher ind
Ramil Minniakhmetov
5 (10)
トレンドキャッチャーインジケーター トレンドキャッチャーインジケーターは、開発者独自の適応型トレンド分析指標を組み合わせることで、市場価格の動きを分析します。短期的なノイズを除去し、根底にあるモメンタムの強さ、ボラティリティの拡大、価格構造の挙動に焦点を当てることで、真の市場方向性を特定します。また、移動平均線、RSI、ボラティリティフィルターなどの平滑化およびトレンドフィルタリング機能を備えたカスタマイズ指標も使用します。 実際の運用状況のモニタリングやその他の製品については、こちらをご覧ください: https://www.mql5.com/en/users/mechanic/seller ご注意ください。私はTelegramでEAや設定を販売していません。詐欺です。すべての設定はブログで無料で公開しています。 重要!ご購入後すぐにご連絡ください。手順とボーナスをお送りします!
この製品は 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 Scalper Inside PRO は、独自の内蔵アルゴリズムを用いて相場の方向性や主要なターゲット価格を評価する、デイトレード向けのトレンド&スキャルピングインジケーターです。本インジケーターはエントリーポイントとエグジットポイント、および複数の利益確定ターゲット価格を自動的に計算し、詳細なパフォーマンス統計を表示します。これにより、さまざまな銘柄や戦略がヒストリカルデータ上でどのように機能したかを確認できます。これは、現在の相場環境に適した銘柄を選ぶのに役立ちます。また、ご自身の矢印インジケーターを Scalper Inside PRO に接続し、その統計やヒストリカルシグナルをすばやく確認することも可能です。 Scalper Inside PRO マニュアルおよび設定の説明: こちらをクリックして読む 本インジケーターはあらゆる銘柄および時間足で動作し(デイトレードには M5 を推奨)、複数の内蔵戦略を備えています。単独のスキャルピングツールとして、またトレードシステムの分析コンポーネントとして使用できます。 主な機能 独自の次世代トレ
M1 SNIPER は使いやすいトレーディングインジケーターシステムです。M1時間足向けに設計された矢印インジケーターです。M1時間足でのスキャルピングのためのスタンドアロンシステムとして、また既存のトレーディングシステムの一部としても使用できます。このトレーディングシステムはM1時間足での取引に特化して設計されていますが、他の時間足でも使用できます。元々、この手法はXAUUSDとBTCUSDの取引用に設計しましたが、他の市場においても役立つと考えています。 インジケーターのシグナルは、トレンドの方向と逆方向に取引できます。インジケーターのシグナルを利用して両方向に取引するのに役立つ特別な取引テクニックをご紹介します。この手法は、特別な動的なサポートとレジスタンスの価格帯を利用することに基づいています。 ご購入後、M1 SNIPER矢印インジケーターをすぐにダウンロードできます。さらに、M1 SNIPERツールのすべてのユーザーに、以下のスクリーンショットに表示されているApollo Dynamic SRインジケーターを無料で提供しています。この2つのインジケーターを組み合わせることで
Quant Direction
Georgios Kalomoiropoulos
Quant Direction は、3次元の市場分析ツールです。完全に客観的なアルゴリズムベースの市場分析を提供し、様々なパラメータにわたる正確なパーセンテージ偏差を同時に算出します。高度なAI搭載モデリングツールで開発され、厳密なテストを経て開発されたこのアルゴリズムは、かつてない精度で市場を分析するように設計されています。プラットフォーム上では、あらゆる通貨ペアや金融商品を分析できます。 短期取引、デイトレード、スイングトレードなど、どのような取引スタイルに も、Quant Directionは最適な選択肢です。 オペレーターの本当の利点 Quant Directionの真の利点は、感情、眼精疲労、過剰分析を完全に排除できる点にあります。方向性を探るために何十ものチャートを手作業で精査したり、自分の好みを常に疑ったりする必要がなくなります。このシステムは、8つの時間間隔(5ヶ月から月単位まで)をミリ秒単位で処理します。あらゆる瞬間に市場を支配している主体を正確に明らかにし、常に成功確率が最も高い方向で取引できるようにします。 市場分析の3つの側面 このアルゴリズムは市場を3つの
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 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適な
BTMM State Engine Pro is a MetaTrader 4 indicator for traders who use the Beat The Market Maker approach: Asian session context, kill zone timing, level progression, peak formation detection, and a multi-pair scanner from a single chart. It combines cycle state logic with a built-in scanner dashboard so you do not need the same tool on many charts at once. What it does Draws the Asian session range; session times can follow broker server offset or be set in inputs. Tracks level progression (L
通貨強さウィザードは、取引を成功させるためのオールインワン ソリューションを提供する非常に強力な指標です。このインジケーターは、複数の時間枠のすべての通貨のデータを使用して、このまたはその外国為替ペアのパワーを計算します。このデータは、使いやすい通貨インデックスと通貨パワーラインの形式で表され、特定の通貨のパワーを確認するために使用できます。 必要なのは、取引したいチャートにインジケーターを接続することだけです。インジケーターは、取引する通貨の実際の強さを示します。このインジケーターは、トレンドに合わせて取引するときに有利に利用できる売買高の圧力の極値も示します。このインジケーターには、フィボナッチに基づく可能なターゲットも表示されます。 このインジケーターは、PUSH 通知を含むあらゆるタイプのアラートを提供します。 購入後ご連絡下さい。私の取引のヒントをあなたと共有し、素晴らしいボーナスインジケーターを無料で提供します! 幸せで有益な取引をお祈りします。
Scalper Vault は、スキャルピングを成功させるために必要なすべてを提供するプロフェッショナルなスキャルピング システムです。このインジケーターは、外国為替およびバイナリー オプションのトレーダーが使用できる完全な取引システムです。推奨される時間枠は M5 です。 システムは、トレンドの方向に正確な矢印シグナルを提供します。また、トップとボトムのシグナルとギャン マーケット レベルも提供します。 インジケーターは、プッシュ通知を含むすべてのタイプのアラートを提供します。 インジケータの購入後にご連絡ください。私の個人的な取引の推奨事項と素晴らしいボーナス指標を無料で共有します! 幸せで有益な取引をお祈りします!
Super Signal – Skyblade Edition プロ仕様のノンリペイント / ノーラグ・トレンドシグナルシステム。卓越した勝率を実現 | MT4 / MT5 対応 1分足、5分足、15分足などの低い時間足で最も効果を発揮します。 主な特徴: Super Signal – Skyblade Edition は、トレンド取引に特化したスマートなシグナルシステムです。マルチレイヤーのフィルターロジックを用いて、明確な方向性と実際のモメンタムに支えられた強力なトレンドのみを検出します。 このシステムは 天井や底を予測するものではありません 。次の3つの条件がすべて満たされた場合にのみシグナルを発生させます: 明確なトレンド方向 モメンタムの増加 健全なボラティリティ構造 市場セッションに基づく流動性分析と組み合わせることで、シグナルの精度とタイミングがさらに向上します。 シグナルの特性: すべての矢印シグナルは 100% 非リペイント / 遅延なし 一度出現したシグナルは固定され、点滅・消失しません チャート上の矢印、情報パネル、ポップアップ通知、音声アラート、プッシュ通知
トレンドラインプロ   市場の真の方向転換点を理解するのに役立ちます。この指標は、真のトレンド反転と主要プレーヤーが再び参入するポイントを示します。 分かりますか     BOSライン   複雑な設定や不要なノイズなしに、より長い時間足でのトレンドの変化と重要なレベルを把握できます。シグナルは再描画されず、バーが閉じた後もチャート上に残ります。 VERSION MT 5     -     RFI LEVELS PRO インジケーター と組み合わせることで、その潜在能力を最大限に発揮します。 インジケーターが示す内容: 本当の変化   トレンド(BOSライン) 一度シグナルが現れたら、それは有効です!これは、リペイント機能を持つインジケーターとの重要な違いです。リペイント機能を持つインジケーターは、シグナルを発した後、それを変更し、資金の損失につながる可能性があります。これにより、より高い確率と精度で市場に参入できます。また、矢印が現れた後、目標値(利益確定)に達するか、反転シグナルが現れるまで、ローソク足の色を変更する機能もあります。 繰り返しエントリ       主要プレーヤーの
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 Discounted   Price   $50  !!     Secure your lifetime access   now   before it switches to   subscription-only ! 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 indicat
Special offer : ALL TOOLS , just $35 each! New tools   will be   $30   for the   first week   or the   first 3 purchases !  Trading Tools Channel on MQL5 : Join my MQL5 channel to update the latest news from me ボリュメトリックオーダーブロック多時間枠 インジケーターは、主要な市場参加者が注文を蓄積する重要な価格エリアを特定することで、より深い市場の洞察を求めるトレーダー向けに設計された強力なツールです。これらのエリアはボリュメトリックオーダーブロックとして知られており、サポートやレジスタンスの潜在的ゾーンとして機能し、取引の意思決定において重要な優位性を提供します。 MT5バージョンを見る:   Volumetric Order Blocks MT5 Multi Timeframe See more products at:   https://www.mql5.com/en
Cycle Sniper
Elmira Memish
4.39 (36)
Please contact us after your purchase and we will send you the complimentary indicators to complete the system Cycle Sniper is not a holy grail but when you use it in a system which is explained in the videos, you will feel the difference. If you are not willing to focus on the charts designed with Cycle Sniper and other free tools we provide, we recommend not buying this indicator. We recommend watching the videos about the indiactor and system before purchasing. Videos, settings  and descri
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 ゴールドトレーダーのコミュニティで実際に使用され、精度と使いやすさで高く評価されています。 あな
説明書(ロシア語)  /  説明書 (英語)  /  バージョン MT5 主な機能: 売り手と買い手のアクティブなゾーンを表示します。 このインジケーターは、買いと売りの適切な最初のインパルスレベル/ゾーンをすべて表示します。これらのレベル/ゾーンがアクティブになると、エントリーポイントの探索が始まり、レベルの色が変わり、特定の色で塗りつぶされます。状況をより直感的に把握できるように、矢印も表示されます。 LOGIC AI - テンプレートをアクティブ化するときにエントリポイントを検索するためのゾーン(円)の表示 視認性を向上させるため、人工知能を用いて進入ポイントを探索したゾーンを表示する機能が追加されました。 より高い時間枠からのレベル/ゾーンの表示(MTFモード) より長い時間間隔でレベル/ゾーンを表示する機能を追加しました。また、インジケーターに自動トレンド検出機能(   TPSproTREND PRO   )を実装しました。 取引のための個別の専門的なステップバイステップのアルゴリズム このアルゴリズムは、トレンドの方向と逆方向の両方でデイトレードを行うために設計されていま
Beast Super Signal
Florian Zuercher
4.73 (89)
収益性の高い取引機会を簡単に特定するのに役立つ強力な外国為替取引インジケーターをお探しですか?ビースト スーパー シグナル以外に探す必要はありません。 この使いやすいトレンドベースのインジケーターは、市場の状況を継続的に監視し、新しいトレンドを検索したり、既存のトレンドに飛びついたりします。ビースト スーパー シグナルは、すべての内部戦略が一致し、互いに 100% 合流したときに売買シグナルを発するため、追加の確認は不要です。シグナル矢印アラートを受け取ったら、単に売買します。 購入後、プライベート VIP グループに追加されるようにメッセージを送ってください! (完全な製品購入のみ)。 購入後、最新の最適化されたセット ファイルについてメッセージを送ってください。 MT5バージョンは こちらから入手できます。 Beast Super Signal EA は こちらから 入手できます。 コメント セクションをチェックして、最新の結果を確認してください。 ビースト スーパー シグナルは、1:1、1:2、または 1:3 のリスクと報酬の比率に基づいて、エントリー価格、ストッ
ICT PO3 (Power of 3) AMD Protocol Framework Indicator True Time & Structure Integration   |  Non-Repainting | Real-Time  | Multi-Asset  | MT5 Version Available Full Setup Guide & Strategy Playbook: https://www.mql5.com/en/blogs/post/768683 MT5 Version: https://www.mql5.com/en/market/product/171633 Indicator Overview The ICT PO3 AMD Protocol Framework is a complete structural overlay for MetaTrader 4 that maps the True Daily Cycle directly onto your lower-timeframe execution chart. It projects
ORB Seeker
Marcela Goncalves De Oliveira
発売記念特別価格! たったの79ドル! 10個売れた後、価格は値上げされ、最終価格は199ドルになります。 ご購入後、ご連絡いただければ、ブレイクアウトシグナルに基づいて完全に自動化された最適化済み設定ファイルで取引できる無料のボーナスEAをお送りします。 クリーンなセッションブレイクアウトを自信を持ってキャッチしましょう! ORB Seekerは、正確性、シンプルさ、柔軟性、そして明確なチャート構造を求めるトレーダー向けに開発された、プロ仕様のオープニングレンジブレイクアウト(ORB)インジケーターです。 このシステムは、あらゆる銘柄のプレマーケットまたはカスタムセッションのレンジを自動的にプロットし、エントリー、ストップロス、テイクプロフィット、およびオプションの50%部分TPレベルを含む明確なブレイクアウトシグナルを提供します。すべての計算結果はリアルタイムでチャート上に表示されます。 ロンドン市場オープン、ニューヨーク市場セッション、アジア市場セッション、または独自のカスタム市場時間帯で取引できます。ORB Seekerは選択したセッション時間帯に合わせて調整されるため、市
AXIOM MATRIX MT5 ローンチ価格:$99 Axiom Matrix はローンチ価格 $99 でご利用いただけます。 最初の30件の購入後、価格は $199 に上がります。 ご購入後、手順のご案内と限定ギフトボーナスの受け取りのために、直接DMをお送りください。 Axiom Matrix は、MetaTrader 5 用のプロフェッショナルなマルチシンボル・マルチタイムフレーム市場スキャナー兼意思決定ダッシュボードです。 Market Watch をスキャンし、複数の時間足を分析し、複数のエビデンスエンジンを読み取り、最も強いチャンスを比較し、1つのクリーンなマトリックスダッシュボード内で最適な BUY、SELL、WAIT、またはブロック状態を表示します。 私が Axiom Matrix を作った理由は、市場スキャンという重い作業を代わりに行ってくれる1つのツールが欲しかったからです。 RSI だけを確認したくありませんでした。 次に MACD だけ。 次に移動平均線。 次に出来高。 次にボラティリティ。 次にサポートとレジスタンス。 そして、1つのトレードアイデアを作るた
Artemis Gold M1 Scalper は、M1 時間足でゴールドのスキャルピングをよりクリーンで構造的に行いたい XAUUSD トレーダー向けに、専用設計されたプレミアム MT4 インジケーターです。 これは一般的な矢印インジケーターではありません。Artemis は、動的なサポート/レジスタンス、トレンド確認、モメンタムフィルター、ATR ベースのトレードレベル、シグナル品質スコア、市場状態分析、セッション強度、アクティブトレード保護、そして見やすいダッシュボードを、ゴールド特有の高速な値動きに合わせて設計されたスキャルピング・フレームワークとして統合しています。 Gold M1 に別のアプローチが必要な理由 ゴールドは通常のFX通貨ペアよりも速く、鋭く動きます。M1 時間足では、そのボラティリティがノイズの多いシグナル、遅れたエントリー、低品質なセットアップにつながりやすくなります。多くのスキャルピング系インジケーターは、チャートを矢印で埋め尽くすか、シグナルの背後にある市場背景を説明せずに表示するだけです。 Artemis はその逆の考え方に基づいています。まずノイズを
Ranging Market Detector scans the market for momentum and price to check whether the price is range- bound and the direction to which it will breakout.  It works with all the  all assets and visually shows you the instances when the market is either ranging or trending. Informs when the price has finished a retracement, an opportune time to re-enter the trend early. This will help you in position management.  It works very well for Scalping, Day trading, and Swing trading. Helpful in all timefra
特別オファー : すべてのツール 、各 $35 ! 新しいツール   は   最初の 1 週間   または   最初の 3 回の購入 について   $30 !  MQL5 の Trading Tools チャンネル :最新情報を受け取るために私の MQL5 チャンネルに参加してください Stochastic Z-Score は、価格を Z-Score で正規化し、確率論的ロジックで範囲化し、HMA で平滑化するモメンタム・オシレーターです。長期的な文脈として ALMA を用います。オプション要素として、ヒストグラム、動的バンド、反転ラベルがあります。 MT5 版はこちら:  Stochastic Z Score MT5 Scanner MT4 版はこちら:  Stochastic Z Score MT4 Scanner その他の製品:   All P roducts Overview Stochastic Z-Score は、ボラティリティで正規化した Z-Score と確率的ロジックを組み合わせ、Hull Moving Average (HMA) で平滑化します。 価格の乖離を正
この製品は 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、トレーリングストップロジック、サポートとレジスタンス、ローソク足の色分け
Price & Time Market Structure Indicator A professional market structure tool that analyzes waves through both price and time — not price alone. Main Description NeoWave PRO is a professional market structure indicator for MetaTrader 4 designed for traders who want to move beyond traditional one-dimensional wave tools such as ZigZag, swing indicators, and basic high/low systems. Most wave indicators analyze only one thing: Price. But a real market wave is not only a price movement. A true wave de
PRO Renko Systemは、特別にRENKOチャートを取引するために設計された高精度の取引システムです。 これは、様々な取引商品に適用することができる普遍的なシステムです。 システムは効果的に正確な逆転信号へのアクセスを与えるいわゆる市場の騒音を中和する。 表示器は非常に使いやすく、信号の生成に責任がある1つの変数だけがあります。 あなたは簡単にお好みの任意の取引ツールとレンコバーのサイズにツールを適応させることができます。 私はいつもあなたが私のソフトウェアで収益性の高い取引を支援するために余分なサポートを提供する準備ができています! 私はあなたに幸せで収益性の高い取引をしたいです! ご購入後にご連絡ください! 私はあなたに私のレンコチャートジェネレータを送信します。 私はまた、私の個人的な推奨事項やシステムの他のモジュールを無料で共有します!
作者のその他のプロダクト
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
================================================================  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 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
================================================================   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
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
================================================================   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
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.   BUY  signal : Bear FVG is broken upward   → price likely to rise   SELL si
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
フィルタ:
レビューなし
レビューに返信