Multi Currency Stocastic Cross Scanner

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 chart and it instantly scans every selected symbol and
timeframe for stochastic golden crosses and dead crosses — no need to
switch charts manually.

Signal logic:
- Buy signal:
  Stochastic main line crosses the signal line from below to above
  while the stochastic is at or below the buy level.
  Default buy level: 20

- Sell signal:
  Stochastic main line crosses the signal line from above to below
  while the stochastic is at or above the sell level.
  Default sell level: 80

Key specs:
- Signals fire on confirmed (closed) candles only. No repainting.
- Uses built-in MT4 iStochastic calculation. No external custom
  indicator reference is required.
- Works on FX pairs, Gold (XAUUSD), indices, crypto — any symbol in
  your broker's Market Watch.
- Default display: 29 symbols x 7 timeframes.
- Full capacity: 64 pairs x 7 timeframes = 448 combinations.
- Settings are fully adjustable per symbol and timeframe.

------------------------------------------------------------------------
2. Typical Workflow
------------------------------------------------------------------------
Step 1  Find signals with 448 Scanner
        The panel highlights a cell when a stochastic cross signal is
        detected on the latest confirmed bar.

Step 2  Open chart with one click
        Click the timeframe label in the panel to open a new chart
        for that symbol and timeframe instantly.

Step 3  Check the chart context
        Use the opened chart to confirm trend direction, support and
        resistance, higher timeframe bias, and your own entry rules.

Step 4  Restore your chart workspace anytime with AutoLineSaver for 448
        Use AutoLineSaver to save and restore your drawn lines at any time.

------------------------------------------------------------------------
3. Color Guide
------------------------------------------------------------------------
Each cell in the panel represents one symbol x timeframe combination.

Color         Meaning
----------    -------------------------------------------------------
Cyan          Buy condition detected.
Dodger Blue   A new buy signal was just detected on this bar.
              Reverts to Cyan on the next scan cycle.
Red           Sell condition detected.
Magenta       A new sell signal was just detected on this bar.
              Reverts to Red on the next scan cycle.
White/Gray    No signal detected.
Yellow        Signal ended, or symbol is excluded from scan when the
              SymOnOff feature is used.

- When an alert fires, the symbol name turns Red temporarily.
  It returns to its normal color on the next scan cycle.
- The number shown next to each symbol name is the current spread.
  When the spread turns Red, the symbol is skipped due to the
  MaxSpread filter.

------------------------------------------------------------------------
4. Installation
------------------------------------------------------------------------
1. Copy  StochCrossAllSearch.mq4  to your MT4  MQL4/Indicators/  folder.
2. Restart MetaTrader 4, or press F5 in MetaEditor to refresh.
3. Attach the indicator to any chart.
   The timeframe of the host chart does not affect scan results.

This version is a built-in single-file scanner.
AllSearch.mqh is already embedded in the mq4 file, so no Include file
is required.

------------------------------------------------------------------------
5. First Launch Warning
------------------------------------------------------------------------
Immediately after attaching the indicator, symbols that have not been
recently loaded in Market Watch may lack price history.

If this occurs, the following alert may appear:

  "Please load [Symbol][Timeframe] chart once"

Open a new chart for the indicated symbol and timeframe. Once the chart
loads, MT4 downloads the required history and the scanner works normally
from that point on.

------------------------------------------------------------------------
6. How to Specify Symbols (UseSymbols)
------------------------------------------------------------------------
Only symbols visible in MT4's Market Watch window are scanned.
Add any symbol you want to monitor to Market Watch before starting.

There are two ways to enter symbols in UseSymbols:

Method 1 — Currency codes (auto-combination)
  Enter 3-letter currency codes separated by spaces.
  All valid pairs are generated automatically.

  Example: EUR USD JPY  ->  EURUSD, EURJPY, USDJPY

Method 2 — Full symbol names (direct)
  Enter the full symbol name to add it directly.

  Example: XAUUSD  ->  Gold is added to the scan list

You can combine both methods.
  Example: XAUUSD USD EUR JPY  ->  XAUUSD, EURUSD, EURJPY, USDJPY

- Display order follows the order of entry in UseSymbols.
- If your broker adds a suffix to symbol names (e.g. EURUSDm or
  EURUSDPro), enter the suffix in AddSymbol (e.g. AddSymbol = m).

------------------------------------------------------------------------
7. Parameters
------------------------------------------------------------------------
Stochastic Settings
  StochKPeriod          7       Period of the stochastic %K line.
  StochDPeriod          3       Period of the stochastic %D signal line.
  StochSlowing          3       Slowing value of the stochastic.
  StochBuyLevel         20      Lower level used for buy signal detection.
                                A buy signal is detected when the main line
                                crosses above the signal line in this zone.
  StochSellLevel        80      Upper level used for sell signal detection.
                                A sell signal is detected when the main line
                                crosses below the signal line in this zone.
  StochMethod           MODE_SMA
                                Moving average method used for stochastic
                                calculation.
                                0=MODE_SMA  1=MODE_EMA
                                2=MODE_SMMA 3=MODE_LWMA
  StochPriceField       0       Price field used for stochastic calculation.
                                0 = Low/High
                                1 = Close/Close
  bMainLineLevelOnly    true    true: The 20/80 zone is judged by the main
                                  line only.
                                false: Both the main line and signal line
                                  must be inside the 20/80 zone.

Signal Detection Details
  The scanner compares the latest confirmed bar (shift 1) with the
  previous confirmed bar (shift 2).

  Buy:
    main(shift 2) < signal(shift 2)
    main(shift 1) > signal(shift 1)
    and the selected 20-zone condition is met.

  Sell:
    main(shift 2) > signal(shift 2)
    main(shift 1) < signal(shift 1)
    and the selected 80-zone condition is met.

Timeframe Selection — Display ON/OFF
  Controls which timeframes appear in the panel and are scanned.
  Set to false to exclude a timeframe entirely.

  bUseM1        false           Show M1 in the panel and scan it.
  bUseM5        false           Show M5 in the panel and scan it.
  bUseM15       true            Show M15 in the panel and scan it.
  bUseM30       true            Show M30 in the panel and scan it.
  bUseH1        true            Show H1 in the panel and scan it.
  bUseH4        true            Show H4 in the panel and scan it.
  bUseD1        true            Show D1 in the panel and scan it.
  bUseW1        true            Show W1 in the panel and scan it.

Alert Settings — Alert ON/OFF (independent from display)
  Display and alerts are controlled separately.
  A timeframe can be visible in the panel but fire no alert.
  Example: bUseH1=true + bAlertH1=false
           H1 is shown in the panel, but no alert fires on H1 signals.

  bAlertOnce    true            true: Log detailed messages to Experts tab
                                  and show one summary pop-up.
                                false: Show pop-up alert dialog for each
                                  detected signal.
  bFindAlert    true            Alert when a new cross signal is detected.
  bLostAlert    false           Alert when an existing signal ends.
  bAlertM1      true            Fire alerts on M1 signals.
  bAlertM5      true            Fire alerts on M5 signals.
  bAlertM15     true            Fire alerts on M15 signals.
  bAlertM30     true            Fire alerts on M30 signals.
  bAlertH1      true            Fire alerts on H1 signals.
  bAlertH4      true            Fire alerts on H4 signals.
  bAlertD1      true            Fire alerts on D1 signals.
  bAlertW1      true            Fire alerts on W1 signals.

Spread Filter
  bUseSpread    true            Show the current spread next to each symbol name.
                                Aqua = within the allowed range.
                                Red  = spread exceeds MaxSpread. Symbol is skipped
                                       for that scan cycle automatically.
  MaxSpread     6.0             Spread threshold in pips. Symbols above this value
                                are excluded from scanning until spread drops back
                                below the limit.

Notification Settings
  bMail         false           Send an email when an alert fires.
                                Requires MT4 email settings to be configured.
  bPush         false           Send a mobile push notification when an alert fires.
                                Requires MT4 notification settings to be configured.

Symbol Settings
  UseSymbols    XAUUSD USD EUR JPY GBP CAD AUD NZD CHF
                                Space-separated list. See section 6 for details.
  AddSymbol     (empty)         Suffix appended to every symbol name.
                                Example: enter "m" if your broker uses EURUSDm.

Special Features
  SelfRifresh   false           Controls color update behavior for multi-instance use.
                                false (default): Colors reset each cycle automatically.
                                  DodgerBlue -> Cyan, Magenta -> Red, Yellow -> White.
                                true: Colors set by other indicators on the same panel
                                  are preserved. Use this on secondary instances when
                                  running multiple scanners on the same chart.
  SymOnOff      false           Enables click-to-exclude on symbol names.
                                false (default): Clicking a symbol has no effect.
                                true: Click a symbol name to toggle it Yellow
                                  (excluded from scan). Click again to restore.
                                  Useful for hiding specific symbols temporarily
                                  without editing UseSymbols.
  AddText       (empty)         Prefix added to all chart object names for this
                                instance. Set a unique value (e.g. "A", "B") when
                                running multiple instances on the same chart to
                                prevent object name conflicts.

Display Position Settings
  ATRCorner     1               Corner where the panel is anchored.
                                0 = Upper-Left
                                1 = Upper-Right  (default)
                                2 = Lower-Left
                                3 = Lower-Right
  TxtXBase      0               Horizontal offset of the entire panel from the
                                anchored corner (pixels). Increase to shift the
                                panel away from the chart edge.
  LineMax       30              Maximum symbol rows per column. When the symbol
                                count exceeds this, a new column is added
                                automatically.
  FontSize      10              Font size of all panel text. Changing this value
                                also scales the spacing between columns and rows.
  TxtXPos       5               Horizontal spacing between each timeframe column
                                in the panel (pixels).
  TxtXSpace     5               Additional horizontal padding between timeframe
                                columns. Adjust together with TxtXPos to fine-tune
                                column spacing.
  TxtYPos       5               Vertical spacing between symbol rows (pixels).
                                Increase if rows overlap at larger font sizes.

------------------------------------------------------------------------
8. Tips
------------------------------------------------------------------------
- All signals are based on completed bars only.
  The current open bar is never used for signal generation.
- The scanner uses shift 1 and shift 2 to confirm the stochastic cross.
- Enabling many timeframes with a large symbol list increases CPU load.
  Disable unused timeframes with bUseM1, bUseM5, etc.
- If you want stricter overbought/oversold filtering, set
  bMainLineLevelOnly=false.
- To run multiple instances on the same chart with different settings,
  set a unique value for AddText on each instance.

------------------------------------------------------------------------
9.  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.
  Especially powerful for targeting AMD movement setups.

- MA + Pin Bar All-Currency Scanner
  A precision tool that finds pin bars bouncing off moving averages to catch pullback entries.
  The ultimate edge comes from knowing [what was swept]. Works perfectly with ICT methodology.

- AutoLineSaver
  An almost essential companion for all-currency monitoring.
  Automatically saves and restores your drawn lines even after closing charts ? an extremely
  convenient tool that dramatically improves the efficiency of multi-pair chart analysis.





おすすめのプロダクト
--- FREE VERSION - WORKS ONY ON EURUSD ------------------------------------------------------------------- This is a unique breakout strategy that is used for determination of the next short term trend/move. The full system is available on MQL5 under the name "Forecast System". Here is the link -->  https://www.mql5.com/en/market/product/104166?source=Site Backtest is not possible, because calculations are done based on the data of all timeframes/periods. Therefore I propose you use the technolo
FREE
Auto Supply and Demand Oscillator is an indicator for MetaTrader 4 and MetaTrader 5 that detects supply and demand zones automatically and displays them as a single oscillator value at the bottom of the chart, instead of drawing rectangles directly on price. Concept Supply zones are price areas where strong selling created a sharp downward move away from a balance area. Demand zones are price areas where strong buying created a sharp upward move. Traditional implementations draw boxes on the
FREE
Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
FREE
Candle Countdown — MT4用 正確なローソク足カウントダウン Candle Countdown は、 現在のローソク足が閉じるまでの残り時間 をチャート上に表示するシンプルで正確なツールです。 エントリーがローソク足のクローズに依存する場合、数秒の違いが重要になります。 このインジケーターは正確な時間を表示し、焦らずに判断できるようサポートします。 ローソク足のクローズ時間を正確に把握するためのインジケーターです。 表示内容: ローソク足が閉じるまでの残り時間 サーバー現在時刻 スプレッド ストップレベル(Stop Level) タイマーはティックに依存せず、プラットフォームの内部タイマーによって更新されるため、市場の動きが少ない場合でも安定した表示を維持します。 これにより、低ボラティリティの環境でも滑らかで安定したカウントダウンを実現します。 情報は背景付きのブロック内に表示されるため、どのチャートカラーでも見やすく、分析の妨げになりません。 ローソク足のクローズが近づくと、タイマーの色が変化し、視覚的に状況を把握しやすくなります。 MT5版はこちら: Cand
FREE
マルチタイムフレーム対応、カスタマイズ可能なビジュアルシグナル、設定可能なアラートシステムを備えたAverage True Range(ATR)インジケーター。 フリーランスプログラミングサービス、アップデート、その他のTrueTL製品は私の MQL5プロフィール でご覧いただけます。 フィードバックとレビューを大変お待ちしております! ATRとは? Average True Range(ATR)は、J. Welles Wilderが開発した市場のボラティリティを測定するテクニカルインジケーターです。指定した期間のTrue Rangeの平均を計算します。True Rangeは以下の中で最大の値です:現在の高値から現在の安値までの距離、前回の終値から現在の高値までの距離、または前回の終値から現在の安値までの距離。 ATRは価格方向を示しません — ボラティリティのみを測定します。ATRが上昇するとボラティリティの増加を示し、ATRが低下するとボラティリティの減少を示します。トレーダーはATRを使用して市場状況を評価し、動的なストップロスを設定し(例:ATRベースのトレーリングストッ
FREE
It is just an alternative fibo lines, because mt4 have is a very strange drawing of fibo lines A simple Box (Rectangle) graphic element with adjustable levels binding: it is possible to specify up to 17 custom levels, all rectangles on the chart with the given prefix in their name are processed. Levels are specified in % of the height of the rectangle. A convenient graphical element for analyzing charts by growth-correction levels. Enjoy your work!
FREE
Contact me for any queries or custom orders, if you want to use this in an EA. Key Features: Pattern Recognition : Identifies Fair Value Gaps (FVGs) Spots Break of Structure (BOS) points Detects Change of Character (CHoCH) patterns Versatile Application : Optimized for candlestick charts Compatible with any chart type and financial instrument Real-Time and Historical Analysis : Works seamlessly with both real-time and historical data Allows for backtesting strategies and live market analysis Vi
FREE
MetaTraderでは、複数の   水平線   を描画し、それぞれの価格レベルを追跡するのは面倒な作業になることがあります。このインジケーターは、価格アラートの設定、サポートとレジスタンスの表示、その他の手動用途のために、等間隔で複数の水平線を自動で描画します。 このインジケーターは、短期間で売買による利益を狙いたい初心者のFXトレーダーに最適です。水平線は、相場がトレンド中またはレンジ相場である場合に、エントリーの可能性があるゾーンを見つける手助けをしてくれます。 機能 入力設定に基づいて、瞬時に複数の水平線を描画可能。 各水平線を区別しやすいように、カラフルなカラーテーマを採用。 複数の取引セッションのレンジを追跡するのに必須のツール。 価格が水平線にタッチした際にアラートを送信。 アラート間に間隔を設定でき、過度な通知を防止。 完全にカスタマイズ可能。 解説 このインジケーターは、入力設定で指定されたデータと指示に従って水平線を描画します。価格がこれらの水平線でどのように反応するかを観察することで、重要なサポート・レジスタンス付近でのトレード機会を見極めることができます。
FREE
The free version of the Hi Low Last Day MT4 indicator . The Hi Low Levels Last Day MT4 indicator shows the high and low of the last trading day . The ability to change the color of the lines is available . Try the full version of the Hi Low Last Day MT4 indicator , in which additional indicator features are available : Displaying the minimum and maximum of the second last day Displaying the minimum and maximum of the previous week Sound alert when crossing max . and min . levels Selecting an arb
FREE
価格波形パターン MT4へようこそ --(ABCD パターン)--     ABCD パターンは、テクニカル分析の世界で強力で広く使用されている取引パターンです。 これは、トレーダーが市場での潜在的な売買機会を特定するために使用する調和的な価格パターンです。 ABCD パターンを使用すると、トレーダーは潜在的な価格変動を予測し、いつ取引を開始および終了するかについて十分な情報に基づいた決定を下すことができます。 EA バージョン :   Price Wave EA MT4 MT5バージョン: Price Wave Pattern  MT5 特徴 :  ABCDパターンの自動検出。 強気パターンと弱気パターン。  任意のシンボルと任意の時間枠で機能します。 主要なレベルと価格目標。 カスタマイズ可能な設定と繊維レベルの調整。 アラートと通知。 今後さらに多くの機能が追加される予定です。 
FREE
The principle of this indicator is very simple: detecting the candlestick pattern in D1 timeframe, then monitoring the return point of graph by using the pullback of High-Low of D1 Candlestick and finally predicting BUY and SELL signal with arrows, alerts and notifications. The parameters are fixed and automatically calculated on each time frame. Example: If you install indicator on XAUUSD, timeframe D1: the indicator will detect the reversal, pullback, price action on this timeframe (for exam
FREE
The indicator displays signals according to the strategy of Bill Williams on the chart. Demo version of the indicator has the same features as the paid, except that it can work only on a demo account . Signal "First Wise Man" is formed when there is a divergent bar with angulation.  Bullish divergent bar - with lower minimum and closing price in the upper half. Bearish divergent bar - higher maximum and the closing price at the bottom half. Angulation is formed when all three lines of Alligator
FREE
Power Trend Free - the indicator shows the trend strength in the selected period. Input Parameters The indicator has three input parameters: Period - a positive number greater than one, it shows the number of candlesticks used for calculations. If you enter one or zero, there will be no error, but the indicator will not be drawn. Applied Price - the standard "Apply to:" set meaning data used for the indicator calculation: Close - Close prices; Open - Open prices; High - High prices; Low - Low p
FREE
''Trendlines'' is an Indicator, that every Trader need and shows Trendline and  Support and resistance levels in all  Timeframe's. Also In 1-hour, 4-hour and daily time frames and Current timeframes, support, and resistance levels are specified and trend lines are drawn so that the trader can see all levels on a chart.   In   Properties   it is possible to turn off unnecessary Lines.  In ' Tendency indicator '' , as full package of Predictions that every Trader need, there  is also the Predict
FREE
Perfect for one minutes high trading and scalping. This indicator is very effective for trading on one minutes, in the hour. A combination of moving averages and STOCHASTICS calculation to produce a very convincing signal every hour. Blue colour signals a buy opportunity. Follow the X signs for possible buy points. The Blue average line serves as possible trend direction and support. Red colour signals a sell opportunity. Follow the X signs for possible sell points. The Red average line serves a
FREE
Индикатор "Buy Sell zones x2" основан на принципе "остановка/разворот после сильного движения". Поэтому, как только обнаруживается сильное безоткатное движение, сразу после остановки - рисуется зона покупок/продаж. Зоны отрабатывают красиво. Или цена ретестит зону и улетает в космос, или пробивает зону насквозь и зона отрабатывается с другой стороны так же красиво.  Работает на всех таймфреймах. Лучше всего выглядит и отрабатывает на Н1.    Может использоваться как: индикатор зон, где лучше вс
FREE
Our offer also includes a free panel — Indicator Panel — which allows you to show or hide indicators created by BOToBRACIA. High and Low Points is a practical technical analysis indicator that plots levels corresponding to the highs and lows from previous periods (day / week / month) — levels that, in the Smart Money Concepts (SMC) and ICT approach, are treated as liquidity zones, while in classical technical analysis they serve as potential support and resistance levels. Indicator settings: •
FREE
FlatBreakout (Free Version) Flat Range Detector and Breakout Panel for MT4 — GBPUSD Only FlatBreakout is the free version of the professional FlatBreakoutPro indicator, specially designed for flat (range) detection and breakout signals on the GBPUSD pair only. Perfect for traders who want to experience the unique fractal logic of FlatBreakout and test breakout signals on a live market without limitations. Who Is This Product For? For traders who prefer to trade breakout of flat ranges (breakout,
FREE
This indicator finds Three Drives patterns. The Three Drives pattern is a 6-point reversal pattern characterised by a series of higher highs or lower lows that complete at a 127% or 161.8% Fibonacci extension. It signals that the market is exhausted and a reversal can happen. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  |  Get Help ] Customizable pattern sizes Customizable colors and sizes Customizable breakout periods Customizable 1-2-3 and 0-A-B ratios It impl
FREE
Discover the power of precision and efficiency in your trading with the " Super Auto Fibonacci " MT4 indicator. This cutting-edge tool is meticulously designed to enhance your technical analysis, providing you with invaluable insights to make informed trading decisions. Key Features: Automated Fibonacci Analysis: Say goodbye to the hassle of manual Fibonacci retracement and extension drawing. "Super Auto Fibonacci" instantly identifies and plots Fibonacci levels on your MT4 chart, saving you tim
FREE
ピボットポイントフィボRSJは、フィボナッチレートを使用してその日のサポートラインとレジスタンスラインを追跡するインジケーターです。 この壮大な指標は、フィボナッチレートを使用してピボットポイントを通じて最大7レベルのサポートとレジスタンスを作成します。 価格がこのサポートとレジスタンスの各レベルを尊重する方法は素晴らしいです。そこでは、オペレーションの可能な入口/出口ポイントを認識することができます。 特徴 最大7レベルのサポートと7レベルの抵抗 レベルの色を個別に設定します 入力 ピボットタイプ ピボットフィボRSJ1 =フィボ比1の計算 ピボットフィボRSJ2 =フィボ比2の計算 ピボットフィボRSJ3 =フィボ比3の計算 ピボットフィボクラシック=クラシックピボット計算 最小ピボットレベル ピボット3レベル ピボット4レベル ピボット5レベル ピボット6レベル ピボット7レベル それでも質問がある場合は、ダイレクトメッセージで私に連絡してください: https://www.mql5.com/ja/users/robsjunqueira/
FREE
Are you tired of drawing trendlines every time you're analyzing charts? Or perhaps you would like more consistency in your technical analysis. Then this is for you. This indicator will draw trend lines automatically when dropped on a chart. How it works Works similar to standard deviation channel found on mt4 and mt5. It has 2 parameters: 1. Starting Bar 2. Number of bars for calculation The   starting bar   is the bar which drawing of the trend lines will begin, while the   number of bars for c
FREE
Binary options tester Trading panel to test your strategies according to the rules of binary options. Scope: Set the percentage of profit from the transaction. Set the expiration time in seconds. Set the bet size Set the Deposit amount. Make several deals in a row. Keep track of the time before expiration. The tick chart with trade levels is duplicated to an additional window for accuracy. It allows you to work both in the testing mode and in the real quotes mode. The program gives an idea of bi
FREE
BinaryFortune
Andrey Spiridonov
3.83 (6)
The BinaryFortune indicator has been developed and adapted specifically for trading short-term binary options. The algorithm of the indicator analyzes numerous factors before generating a signal. The indicator is installed in the conventional way. The indicator consists of an information window, which displays the name of the trading instrument, support and resistance levels, and the signal itself ( BUY , SELL or WAIT ). A signal is accompanied by a sound and a pop-up Alert. Advantages of the in
FREE
Follow The Line
Oliver Gideon Amofa Appiah
3.94 (16)
FOLLOW THE LINE GET THE FULL VERSION HERE: https://www.mql5.com/en/market/product/36024 This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL.  It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more
FREE
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
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
The " YK Find Support And Resistance " indicator is a technical analysis tool used to identify key support and resistance levels on a price chart. Its features and functions are as follows: 1. Displays support and resistance levels using arrow lines and colored bands, with resistance in red and support in green. 2. Can be adjusted to calculate and display results from a specified timeframe using the forced_tf variable. If set to 0, it will use the current timeframe of the chart. 3. Uses the
FREE
ハーモニックパターンは市場の転換点を予測するのに最適です。これらのパターンは高い勝率と1日の中での多くの取引機会を提供します。当社のインジケーターは、ハーモニックトレーディングの原則に基づいて、市場反転ポイントを予測する最も一般的なハーモニックパターンを特定します。 重要な注意事項: インジケーターは再描画されず、遅れることはありません(パターンはDポイントで検出されます);再描画されることはありません(パターンは有効またはキャンセルされます)。 使用方法: インジケーターをMT5チャートにドラッグアンドドロップします。 パターン検出をTRUE(ABCD;Gartley)に設定します。 任意のデバイスを設定します(高いデバイス=より多くのパターン;低いデバイス=より少ないパターン)。 好みに合わせて色を調整します。 バルブ/エントリーポイント、TP、SLの警告を有効または無効にします。 パターンが検出された場合: アルゴリズムはDポイントでパターンを検出します。 警告が有効になっている場合、パターン検出を通知します。 パターンが無効になった場合、「パターンがキャンセルされました」という
FREE
Aurum Trend Scout — Aurum Trend Engine 無料LITE版 Aurum Trend Scoutは、Aurum Trend Engineエキスパートアドバイザーの 無料版 です。H1タイムフレームでXAUUSD(ゴールド)を、Parabolic SAR + ボリンジャーバンド幅比率に基づくトレンドフォロー戦略で取引します。 このLITE版には、ATRベースのストップロスを含む完全な戦略ロジックが含まれています。固定ロットを使用し、FULL版の動的マネーマネジメントは含まれていません。 検証済みパフォーマンス(実データ、XAUUSD H1、2014-2025) スプレッド20ポイント: プロフィットファクター 1.32 | 勝率 63.65% | 最大DD 2.22% | 純利益 $11,363 | 1,004トレード スプレッド30ポイント: プロフィットファクター 1.25 | 勝率 62.60% | 最大DD 2.40% | 純利益 $9,378 | 1,016トレード LITE版の機能 完全な戦略ロジック(FULL版と同一) ATRベースのストップ
FREE
このプロダクトを購入した人は以下も購入しています
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for all
Gann Made Easy は、ミスター・ギャンの理論を使用した取引の最良の原則に基づいた、プロフェッショナルで使いやすい外国為替取引システムです。 W・D・ガン。このインジケーターは、ストップロスとテイクプロフィットレベルを含む正確な買いと売りのシグナルを提供します。 PUSH通知を利用して外出先でも取引可能です。 ご購入後、取引方法の説明と優れた追加インジケーターを無料で入手するには、私にご連絡ください! おそらく、ギャンの取引手法についてはすでに何度も聞いたことがあるでしょう。通常、ギャンの理論は初心者のトレーダーだけでなく、すでにある程度の取引経験がある人にとっても非常に複雑なものです。なぜなら、ギャンの取引手法は理論的にはそれほど簡単に適用できるものではないからです。私はその知識を磨き、最良の原則を私の外国為替インジケーターに組み込むために数年を費やしました。 このインジケーターは非常に簡単に適用できます。必要なのは、それをチャートに添付し、簡単な取引推奨事項に従うだけです。このインジケーターは常に市場分析の仕事を行い、取引の機会を探します。適切なエントリーポイントを検出す
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
Super Signal – Skyblade Edition プロ仕様のノンリペイント / ノーラグ・トレンドシグナルシステム。卓越した勝率を実現 | MT4 / MT5 対応 1分足、5分足、15分足などの低い時間足で最も効果を発揮します。 主な特徴: Super Signal – Skyblade Edition は、トレンド取引に特化したスマートなシグナルシステムです。マルチレイヤーのフィルターロジックを用いて、明確な方向性と実際のモメンタムに支えられた強力なトレンドのみを検出します。 このシステムは 天井や底を予測するものではありません 。次の3つの条件がすべて満たされた場合にのみシグナルを発生させます: 明確なトレンド方向 モメンタムの増加 健全なボラティリティ構造 市場セッションに基づく流動性分析と組み合わせることで、シグナルの精度とタイミングがさらに向上します。 シグナルの特性: すべての矢印シグナルは 100% 非リペイント / 遅延なし 一度出現したシグナルは固定され、点滅・消失しません チャート上の矢印、情報パネル、ポップアップ通知、音声アラート、プッシュ通知
Trend Catcher ind
Ramil Minniakhmetov
5 (10)
トレンドキャッチャーインジケーター トレンドキャッチャーインジケーターは、開発者独自の適応型トレンド分析指標を組み合わせることで、市場価格の動きを分析します。短期的なノイズを除去し、根底にあるモメンタムの強さ、ボラティリティの拡大、価格構造の挙動に焦点を当てることで、真の市場方向性を特定します。また、移動平均線、RSI、ボラティリティフィルターなどの平滑化およびトレンドフィルタリング機能を備えたカスタマイズ指標も使用します。 実際の運用状況のモニタリングやその他の製品については、こちらをご覧ください: https://www.mql5.com/en/users/mechanic/seller ご注意ください。私はTelegramでEAや設定を販売していません。詐欺です。すべての設定はブログで無料で公開しています。 重要!ご購入後すぐにご連絡ください。手順とボーナスをお送りします!
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 インジケーターが提供するもの  オリジナルで気に入っていたすべての機能が、新機能と精度の向上によって強化されました。 主な機能: 独自の通貨強度計算式。 すべての時間枠でスムーズかつ正確な強度ライン。 トレンドの特定と正確なエントリーに最適です。 ダイナミックマーケットフィボナッチレベル (マーケットフィボナッチ)。 このインジケーターに固有
この製品は 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、トレーリングストップロジック、サポートとレジスタンス、ローソク足の色分け
Miraculous Indicator – ガン・スクエア・オブ・ナインに基づく100%非リペイントのFXおよびバイナリーツール この動画では、FXおよびバイナリーオプションのトレーダー向けに特別に開発された、非常に正確で強力な取引ツールである Miraculous Indicator を紹介しています。このインジケーターがユニークなのは、伝説的な ガン・スクエア・オブ・ナイン と ガンの振動の法則 に基づいている点で、現代の取引で利用できる最も正確な予測ツールの一つとなっています。 Miraculous Indicatorは 完全に非リペイント であり、ローソク足が確定した後にシグナルが変化したり消えたりすることはありません。つまり、見たものがそのまま利用できます。これにより、トレーダーは自信を持ってエントリーおよびエグジットを行うための信頼性と一貫性のある根拠を得ることができます。 主な特徴: ガン・スクエア・オブ・ナインとガン理論に基づいて構築 100%非リペイントのシグナルシステム すべての時間枠(M1、M5、H1、H4、日足、週足)で機能 FXおよびバイナリーオプション取引
Advanced Supply Demand
Bernhard Schweigert
4.91 (300)
現在30%オフ 初心者にもエキスパートトレーダーにも最適なソリューション このインジケーターは独自の機能と新しい公式を多数内蔵しており、ユニークで高品質かつ手頃な取引ツールです。このアップデートでは、2つの時間枠ゾーンを表示できるようになります。より長いTFだけでなく、チャートTFとより長いTF(ネストゾーンを表示)の両方を表示できます。すべてのSupply Demandトレーダーの皆さんのお気に召すはずです。:) 重要情報の公開 Advanced Supply Demandの可能性を最大化するには、 https://www.mql5.com/ja/blogs/post/720245 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適な
System Trend Pro - This is the best trend trading indicator!!! The indicator no repaint!!!  The indicator has   MTF   mode, which adds confidence to trading on the trend (   no repaint   ). How to trade? Everything is very simple, we wait for the first signal (big arrow), then wait for the second signal (small arrow) and enter the market in the direction of the arrow. (See screens 1 and 2.) Exit on the opposite signal or take 20-30 pips, close half of it, and keep the rest until the opposite
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
M1 SNIPER は使いやすいトレーディングインジケーターシステムです。M1時間足向けに設計された矢印インジケーターです。M1時間足でのスキャルピングのためのスタンドアロンシステムとして、また既存のトレーディングシステムの一部としても使用できます。このトレーディングシステムはM1時間足での取引に特化して設計されていますが、他の時間足でも使用できます。元々、この手法はXAUUSDとBTCUSDの取引用に設計しましたが、他の市場においても役立つと考えています。 インジケーターのシグナルは、トレンドの方向と逆方向に取引できます。インジケーターのシグナルを利用して両方向に取引するのに役立つ特別な取引テクニックをご紹介します。この手法は、特別な動的なサポートとレジスタンスの価格帯を利用することに基づいています。 ご購入後、M1 SNIPER矢印インジケーターをすぐにダウンロードできます。さらに、M1 SNIPERツールのすべてのユーザーに、以下のスクリーンショットに表示されているApollo Dynamic SRインジケーターを無料で提供しています。この2つのインジケーターを組み合わせることで
トレンドトレーディング は、タイミングのプルバックとブレイクアウトにより、市場で起こっているトレンドから可能な限り利益を得るように設計された指標です。確立されたトレンドの中で価格が何をしているかを分析することにより、取引の機会を見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 自信を持って効率的に金融市場を取引する むち打ちにならずに確立されたトレンドから利益を得る 収益性の高いプルバック、ブレイクアウト、早期の逆転を認識する この指標は、独自の品質とパフォーマンスを分析します 複数時間枠のダッシュボードを実装します インジケーターは再描画されていません 電子メール/音声/視覚アラートを実装します 確立されたトレンドは多くの取引機会を提供しますが、ほとんどのトレンド指標はそれらを完全に無視しています。インジケーターの解釈はかなり簡単です: (1) トレンドの変化 (2) トレンドの方向への後退 (3) トレンドの方向へのブレイクアウト 赤いダッシュ は下降トレンド中の修正です 青いダッシュ は上昇トレンド中
ORB Seeker
Marcela Goncalves De Oliveira
発売記念特別価格! たったの79ドル! 10個売れた後、価格は値上げされ、最終価格は199ドルになります。 ご購入後、ご連絡いただければ、ブレイクアウトシグナルに基づいて完全に自動化された最適化済み設定ファイルで取引できる無料のボーナスEAをお送りします。 クリーンなセッションブレイクアウトを自信を持ってキャッチしましょう! ORB Seekerは、正確性、シンプルさ、柔軟性、そして明確なチャート構造を求めるトレーダー向けに開発された、プロ仕様のオープニングレンジブレイクアウト(ORB)インジケーターです。 このシステムは、あらゆる銘柄のプレマーケットまたはカスタムセッションのレンジを自動的にプロットし、エントリー、ストップロス、テイクプロフィット、およびオプションの50%部分TPレベルを含む明確なブレイクアウトシグナルを提供します。すべての計算結果はリアルタイムでチャート上に表示されます。 ロンドン市場オープン、ニューヨーク市場セッション、アジア市場セッション、または独自のカスタム市場時間帯で取引できます。ORB Seekerは選択したセッション時間帯に合わせて調整されるため、市
An extremely convenient indicator that truly makes the process of making money on the exchange easy. It is based on the scientifically rigorous theory of the market developed by the author, the beginning of which is presented here .                The full algorithm of this indicator operation is presented in the article .               The indicator calculates the most probable price movement trajectory and displays it on the chart. Based on the predicted price movement trajectory
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
開発者からのお知らせ:   ご購入後、最新の   推奨設定ファイル(Set File) 、取引アドバイス、および   VIPサポートグループ への招待を受け取るためにご連絡ください。そこで他のM1 Quantumユーザーと交流できます。 MT5バージョン利用可能 : MT5を見る M1 Quantum は、M1専用のプロフェッショナルトレーディングシステムであり、ストップロス、テイクプロフィット、スマートな資金管理を内蔵した、迅速かつ正確な取引シグナルを提供します。 M1 Quantum は、 連続勝利 に重点を置いて口座を素早く成長させるために設計されたプロフェッショナルな資金管理を備えています。 M1 Quantum インジケーター の主な特徴 M1時間足 およびすべての 主要通貨ペア 向けに設計 すべての取引にストップロスとテイクプロフィットを設定 資金管理 を実装し、トレーダーが簡単に取引できるようサポート 高い勝率と高い 連続勝利 リペイントなし、遅延なし あらゆるトレーダーにとって理解しやすい M1 Quantum を使用するには、 M1 Quantum Assistan
Market Structure Patterns   is an indicator based on   smart money concepts   that displays   SMC/ICT   elements that can take your trading decisions to the next level. Take advantage of the   alerts ,   push notifications   and   email messages   to keep informed from when an element is formed on the chart, the price crosses a level and/or enters in a box/zone. Developers can access the values of the elements of the indicator using the   global variables  what allows the automation of trading d
Scalping Lines System - は、M1-H1の時間枠で金(XAUUSD)を取引するために特別に設計されたスキャルピング取引システムです。 トレンド、ボラティリティ、買われ過ぎ/売られ過ぎの市場分析のための指標を1つのオシレーターに統合し、短期的なシグナルを識別します。 シグナルラインの主要な内部パラメータは事前​​に設定されています。 一部のパラメータは手動で調整可能です。「トレンド波の持続時間」(MAトレンドを使用してトレンド方向の一連のシグナルの持続時間を調整)と「シグナルラインにスムージングを適用」(シグナルラインの生成を調整)です。 始値でシグナルラインを計算する際、インジケーターは再描画されません。他の価格では、シグナル矢印がちらつく場合があります。 シグナルはローソク足が閉じた後に表示され、複数のアラートタイプが用意されています。 推奨される時間枠:M1-M5-M15-M30-H1。 このインジケーターは元々金の取引用に設計されましたが、スプレッドの低いボラティリティの高い資産(BTCや暗号通貨、銀、株価指数CFD(ナスダック100など))の取引にも適
現在30%OFF! 初心者やエキスパートトレーダーのためのベストソリューション! このダッシュボードソフトウェアは、28の通貨ペアで動作しています。それは私達の主要な指標(高度な通貨の強さ28と高度な通貨インパルス)の2に基づいています。それは全体の外国為替市場の大きい概観を与えます。それは、すべての(9)時間枠で28の外国為替ペアのための高度な通貨の強さの値、通貨の動きの速度と信号を示しています。チャート上で1つのインディケータを使用して市場全体を観察し、トレンドやスキャルピングの機会をピンポイントで見つけることができたら、あなたのトレードがどのように改善されるか想像してみてください。 このインディケータには、強い通貨と弱い通貨の識別、潜在的な取引の識別と確認がより簡単になるような機能が搭載されています。このインディケータは、通貨の強さや弱さが増加しているか減少しているか、また、すべての時間枠でどのように機能しているかをグラフィカルに表示します。 新機能として、現在の市場環境の変化に適応するダイナミックなマーケットフィボナッチレベルが追加され、すでに当社のAdvanced
Friends, we present to your attention our new Forex Gump Laser indicator. Since there are no designers in our team, but mainly mathematicians, financiers, programmers and traders, we did not make any special changes in the indicator design. In appearance, it resembles the usual Forex Gump. On the other hand, Forex Gump has become not just the name of an indicator, it is a brand. And we try to preserve the corporate identity in all its varieties. The whole essence of the indicator in its operatio
Scalper Inside PRO Scalper Inside PRO は、独自の内蔵アルゴリズムを用いて相場の方向性や主要なターゲット価格を評価する、デイトレード向けのトレンド&スキャルピングインジケーターです。本インジケーターはエントリーポイントとエグジットポイント、および複数の利益確定ターゲット価格を自動的に計算し、詳細なパフォーマンス統計を表示します。これにより、さまざまな銘柄や戦略がヒストリカルデータ上でどのように機能したかを確認できます。これは、現在の相場環境に適した銘柄を選ぶのに役立ちます。また、ご自身の矢印インジケーターを Scalper Inside PRO に接続し、その統計やヒストリカルシグナルをすばやく確認することも可能です。 Scalper Inside PRO マニュアルおよび設定の説明: こちらをクリックして読む 本インジケーターはあらゆる銘柄および時間足で動作し(デイトレードには M5 を推奨)、複数の内蔵戦略を備えています。単独のスキャルピングツールとして、またトレードシステムの分析コンポーネントとして使用できます。 主な機能 独自の次世代トレ
単純なドラッグアンドドロップEAでMetatrader4をPythonに接続するためのドキュメント。 完全にテストされた、高速で効率的な完全なエンドツーエンドソリューション! Pytraderエコシステムは、PythonスクリプトとMT4またはMT4EAで構成されています。 さらに、ライセンス供与にはインジケーターが使用されます。 PythonスクリプトとEAの間の通信は、ソケットに基づいています。 EAはサーバーであり、Pythonスクリプトはクライアントです。 それは常にquery(関数/ pythonスクリプト)とoutput(データ/サーバー)です。 EAは、Pythonスクリプトが実行されているのと同じコンピューターで実行する必要はありません。 Githubリンクには、Pythonスクリプト、EA、完全なドキュメント、および関数の呼び出し方法を示すPytraderサンプルスクリプトがあります。 質問については、不和チャンネルもあります。 デモ(ライセンスインジケーターなし)でも全機能がありますが、機器の数は限られています (EURUSD、AUDCHF、NZDCHF、GBP
Easy Breakout
Mohamed Hassan
4.71 (14)
After your purchase, feel free to contact me for more details on how to receive a bonus indicator called VFI, which pairs perfectly with Easy Breakout for enhanced confluence!    Easy Breakout is a powerful price action trading system built on one of the most popular and widely trusted strategies among traders: the Breakout strategy ! This indicator delivers crystal-clear Buy and Sell signals based on breakouts from key support and resistance zones. Unlike typical breakout indicators, it levera
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
デイトレーダーマスターは、デイトレーダーのための完全なトレーディングシステムです。システムは2つのインジケーターで構成されています。 1つの指標は売買する矢印信号です。それはあなたが得る矢印インジケーターです。 2つ目のインジケーターを無料で提供します。 2番目のインジケーターは、これらの矢印と組み合わせて使用​​するために特別に設計されたトレンドインジケーターです。 インジケーターは繰り返さず、遅れないでください! このシステムの使用は非常に簡単です。 2色の線で表示されている現在のトレンドの方向に矢印信号をたどる必要があります。青は買いの傾向です。赤い色は売りの傾向です。青い矢印は買いシグナルです。赤い矢印は売りの合図です。トレンドラインの色と一致するように、矢印の色と信号の方向が必要です。 矢印インジケーターは、主に時間間隔M5とM15での日中取引のために作成されました。ただし、技術的には、システムは他の時間間隔で使用できます。 インジケータには、PUSHメッセージ機能を備えたポップアップアラートが装備されています。 購入後、必ず私に書いてください!私はあなたにシステムとの取引の
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
現在40%オフ 初心者やエキスパートトレーダーに最適なソリューション! このインジケーターは、独自の機能と新しい計算式を取り入れた、ユニークで高品質、かつ手頃な価格のトレーディングツールです。たった1枚のチャートで28の為替ペアの通貨強度を読み取ることができます。新しいトレンドやスキャルピングチャンスの引き金となるポイントを正確に特定することができるので、あなたのトレードがどのように改善されるか想像してみてください。 ユーザーマニュアルはこちら  https://www.mql5.com/en/blogs/post/697384 これが最初の1本、オリジナルだ! 価値のないクローンを買わないでください。 特別な サブウィンドウの矢印で強い通貨の勢いを表示 GAPがあなたのトレードを導く! 基準通貨や気配値が売られすぎ・買われすぎのゾーン(外相フィボナッチレベル)にあるとき、個別チャートのメインウィンドウに警告表示。 通貨がレンジの外側から反落した場合、プルバック/リバーサルのアラート。 クロスパターンの特別なアラート 複数の時間枠を選択可能で、トレンドを素早く確認できます
PRO Renko Systemは、特別にRENKOチャートを取引するために設計された高精度の取引システムです。 これは、様々な取引商品に適用することができる普遍的なシステムです。 システムは効果的に正確な逆転信号へのアクセスを与えるいわゆる市場の騒音を中和する。 表示器は非常に使いやすく、信号の生成に責任がある1つの変数だけがあります。 あなたは簡単にお好みの任意の取引ツールとレンコバーのサイズにツールを適応させることができます。 私はいつもあなたが私のソフトウェアで収益性の高い取引を支援するために余分なサポートを提供する準備ができています! 私はあなたに幸せで収益性の高い取引をしたいです! ご購入後にご連絡ください! 私はあなたに私のレンコチャートジェネレータを送信します。 私はまた、私の個人的な推奨事項やシステムの他のモジュールを無料で共有します!
Apollo BuySell Predictor は、いくつかの取引モジュールを含む専門的な取引システムです。独自のブレイクアウト ゾーン、フィボナッチ ベースのサポートとレジスタンス レベル、ピボット トレンド ライン、プルバック ボリューム シグナル、およびトレーダーが日常的に必要とするその他の便利な機能をトレーダーに提供します。システムはどのペアでも機能します。推奨される時間枠は M30、H1、H4 です。インジケーターは、H4 よりも高い時間枠を除いて、他の時間枠でも機能します。 このシステムは、トレーダーが取引を成功させるために必要なすべてを提供するため、普遍的です。システムは複数の方法で使用できます。デイトレード、スイングトレード、さらにはスキャルピングにも使用できます。どのような取引スタイルを好む場合でも、システムは市場を真の姿で見るのに役立ちます。すべての信号は再描画せず、ラグもありません! 取引の好みやタスクに応じて、システムのさまざまなモジュールのオン/オフを切り替えることができます。システムは、PUSH 通知を含むすべてのタイプのアラートを提供します。必要なアラー
作者のその他のプロダクト
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
================================================================================   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? -------------------
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
================================================================   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
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
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 retracements How it works: • Lines
## 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 signal : Bull FVG is broken downward → price likely to fall Scans up to 64 symbols × 7 timeframes = 448 combina
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
フィルタ:
レビューなし
レビューに返信