Sig Ma MT4

  • インディケータ
  • James Patrick D Artanion Grieves
    James Patrick D Artanion Grieves
    5 (7)
    私は真に効果的なエキスパートアドバイザー、インジケーター、ユーティリティ、そしてトレーディング戦略を開発しています。専門分野は以下のとおりです。
    言語とフレームワーク: MQL4、MQL5、OOP、OpenCL
    インターフェース: パネル、オブジェクト、ユーザーインターフェース
    分野: 自動取引、手動利益、戦略開発
    追加リソース: 顧客が間違いを犯したときにそれを知らせ、成功に導きます。
    モジュール式で拡張性があり、市場の非効率性を巧みに利用するために心理学的に設計されたものが必要なら、私にお任せください。取るに足らないものが必要なら、他を探してください。
  • バージョン: 1.0
  • アクティベーション: 10
プロフェッショナルなスムージング、明確なアラート、複数の時間枠のサポートを備えた、色分けされたスマート移動平均で、日常的なトレーダー向けに設計されています。

## 簡単に言うと、何をするか
-  チャート上に移動平均線を描きます。
-  線の色は方向によって変わります。
  -  青=上昇傾向
  -  赤=下降トレンド
  -  黄色 = フラット/ニュートラル
-  ラインの方向が変わったときにアラートを送信します (オプション)。
-  現在の時間枠内で作業するか、より明確にするためにより長い時間枠を「借りる」こともできます。

トレーダーが愛する理由
-  ノイズ除去: クラシックまたは高度なスムージング ツール (SMA、EMA、HMA、KAMA、T3 など) を選択します。
-  兆候は明らかです。色を見ればすぐに傾向がわかります。
-  柔軟性: より一貫性のある動作のために、生の価格設定または平均足の価格設定を使用します。
-  軽量: ライブ グラフィックで高速かつ応答性に優れるように設計されています。

## クイックスタート
1.  コピー  `カスタムMA.mq5`   MQL5 > インジケーター > カスタムインジケーター。
2.   MetaTrader 5 を開き、必要に応じてインジケーターをコンパイルします (ナビゲータ > インジケーター > 右クリック > 更新)。
3.  ドラッグ  「カスタム MA」  写真にあります。
4.  必要な設定(下記参照)を選択し、「OK」をクリックします。

ボタンの設定(簡易ガイド)
-  時間枠: 現在の時間枠を使用するか、より安定した読み取りのために、より高い時間枠 (例: M5 チャートの H1) に切り替えます。
-  価格:
  -  元の価格(終値/始値/最高値/最安値/平均価格/標準価格/加重終値など)。
  -  平均足価格(HA終値/始値/高値/安値/平均/標準など)により、よりスムーズなエントリーが可能になります。
-  期間: 平均を計算する際に考慮するバーの数。期間が長いほど、平均はより滑らかになり、よりゆっくりとした動きになります。
-  方法: スムーズスタイルを選択します。重要なポイント:
  -   SMA、EMA、LWMA、SMMA (クラシック)
  -   HMA(高速かつ安定)、KAMA(ノイズ適応型)、T3/TEMA/DEMA(高速応答)、
  -  フィルター ZeroLagEMA、McGinley、Laguerre、SuperSmoother、Butterworth、ALMA、EWMA、VWMA/V-EMA など。
-   ShowInColor: グラデーションカラーリング(青/赤/黄)を有効にします。
-   Shiftキー:行全体を前後に移動します。オプションです。不明な場合は0のままにしておいてください。
-  通知(オプション):
  -   AlertOn: ポップアップアラートを有効にします。
  -   AlertShift: 1 = 前のバーをチェック (より安全)、0 = 現在のバー (前のバーですが、ノイズが多い)。
  -   SoundsNumber/Pause + サウンド ファイル。
  -   EmailOn / PushNotificationOn には独自のカウンターがあります。

## 仕組み(数学は不要)
-  各チョコレートバーには価格があります(生または平均足を選択できます)。
-  選択した方法を使用してこれらの価格を平滑化し、移動平均を生成します。
-  今日の値が昨日の値より大きい場合、線は「上昇」です。昨日の値より小さい場合、「下降」です。同じ場合、「横ばい」です。
-  色は更新されるので、この機能を有効にすると、向きが変わると通知がトリガーされます。

## 複数の時間枠(MTF)
-  より短い期間でより詳細なチャートを作成したい場合は、期間を長く設定してください。
-  このインジケーターは、現在のチャート上で、より高い時間枠値を持つ移動平均を直接選択して表示します。

## 平均足バリアント
-   HA 価格を選択すると、インジケーターは最初に内部平均足シリーズを構築し、次にそれを平滑化します。
-  その結果、小さな振動やひび割れを無視できる、より静かなラインが実現します。

## 取引のアイデア(シグナルではない)
-  トレンドに従って、線の色の方向に取引します。赤に対して買い、青に対して売ることは避けます。
-  リトレースメント: 青いトレンドで価格がこのラインまで上昇するか、赤いトレンドで価格がこのラインまで上昇するのを待ちます。
-  確認: 構造 (HH/HL または LH/LL) またはお気に入りのオシレーターと一致します。

## 通知のヒント
-  ヒストグラムが閉じたときに反転が確認されるように、AlertShift = 1 に設定するのが最適です。
-  一日を通して音を使って注目を集めたり、外出中に電子メールやプッシュ通知を送信したりできます。

## ライセンス
-  デモ アカウントと戦略テスターは完全にサポートされています。
-  アクティブアカウント: この行は承認されたアカウントにのみ表示されます。承認されていないアカウントのインストールにはブロックメッセージが表示されます。
-  別のアカウントにアクセスする必要がある場合は、著者に連絡してください。

トラブルシューティング
-  行が表示されません: 許可されていないアクティブなアカウントを使用しているか、上で選択した期間のデータがない可能性があります。
-  ノイズが大きすぎる場合: 期間を長くするか、より穏やかな方法 (例: HMA、KAMA、T3、SuperSmoother) に変更します。
-  遅すぎる場合: 期間を短縮するか、より感度の高い方法 (EMA、ZeroLagEMA、DEMA/TEMA など) を選択します。

得られるもの
-  トレンドの方向が一目でわかります。
-  柔軟で実績のあるスムージング ツールのセットを 1 つのインジケーターにまとめました。
-  バーが閉じると、明確なアラートが鳴ります。

明確なトレンドを好む場合は、これによりチャートがシンプルかつ焦点が絞られたものになります。



おすすめのプロダクト
Big Trend Signal   indicator is designed for trend and signal trading. This indicator generates trend signals.  It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators.  You can only trade with this indicator. The generated signals are displayed on the graphical screen.  Thanks to the alert features you can ge
Bollinger Trend Lines – MT4 & MT5 Bollinger Trend Lines   is a professional volatility-based trend indicator designed to clearly identify trend direction and dynamic stop levels using Bollinger Bands. Fuses on one core principle: follow the trend, ignore noise, and let volatility define the stop. How it works The indicator builds   trailing trend lines   using Bollinger Bands: In an   uptrend , the   lower band trails price and can only rise In a   downtrend , the   upper band trails pri
Signal Undefeated   indicator is designed for trend and signal trading. This indicator generates trend signals.  It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators.  You can only trade with this indicator. The generated signals are displayed on the graphical screen.  Thanks to the alert features you can g
InitialBalance. Universal business tool from professional traders that helps to visualize interest market situations. It previews markets using a price action and sentiment in the market. Tool necessary to understand the market situation and the anticipation of further movement. Finally, you will see how traders estimate the market. Who knows the first steps in the market can estimate the point where the market will stop and reflect! With this tool, you will see important supports and resistance
Chart Patterns Detect 15 patterns (Ascending Triangle, Descending Triangle, Rising Wedge, Falling Wedge, Bullish Flag, Bearish Flag, Bullish Rectangle, Bearish Rectangle Symmetrical triangle, Head and Shoulders, Inverted Head and Shoulders, Triple top, Triple Bottom, Double Top, Double Bottom) Use historical data to calculate the probability of each pattern to succeed (possibility to filter notification according to the chance of success) gives graphic indication about the invalidation level and
Signal trend indicator. Detects the direction of the trend and is coloured accordingly.  Has built in audible and visual alerts when trends change. Can send notifications to your phone or email. Allows Trend and Counter-Trend trading. Works on all timeframes, all currency pairs, metals, indices and cryptocurrencies. Can be used with binary options. Distinctive features No re-drawing; Simple and clear settings; Four types of alerts; Works on all timeframes and all trading tools; Suitable
数列の一つに「森林火災数列」があります。これは、最も美しい新しいシーケンスの 1 つとして認識されています。その主な特徴は、このシーケンスが線形トレンドを回避することです。最短のものであってもです。この指標の基礎を形成したのはこのプロパティです。 財務時系列を分析する場合、この指標は可能なすべての傾向オプションを拒否しようとします。そして失敗した場合にのみ、トレンドの存在を認識し、適切なシグナルを発します。このアプローチにより、新しいトレンドの始まりの瞬間を正しく判断できます。ただし、偽陽性の可能性もあります。それらの数を減らすために、このインジケーターに追加のフィルターが追加されました。新しいバーが開くとシグナルが生成されます。いずれの場合も再描画は発生しません。 指標パラメータ: Applied Price - 適用価格定数; Period Main - インディケータのメイン期間、その有効な値は 5 ~ 60 です。 Period Additional - 追加の期間。このパラメーターの有効な値は 5 ~ 40 です。 Signal Filter - 追加の信号フィルター、有効
「ダイナミック・スキャルピング・オシレーター」は、MT4向けの高度なカスタムCrypto_Forexインジケーターです。効率的な取引ツールです! - 新世代のオシレーター - 使い方は画像をご覧ください。 - ダイナミック・スキャルピング・オシレーターは、適応型の売られ過ぎ/買われ過ぎゾーンを備えています。 - オシレーターは、動的な売られ過ぎ/買われ過ぎエリアから正確なエントリーポイントを見つけるための補助ツールです。 - 売られ過ぎ値:グリーンラインより下、買われ過ぎ値:オレンジラインより上。 - このインジケーターは、プライスアクションパターンと組み合わせるのに最適です。 - 標準的なオシレーターよりもはるかに正確です。対応時間枠:M30、H1、H4、D1、W1。 - PCとモバイルの両方でアラート機能付き。 高品質のトレーディングロボットとインジケーターをご覧になるにはここをクリックしてください! これは、このMQL5ウェブサイトでのみ提供されるオリジナル製品です。
This indicator displays the short-term trend direction and flat areas in the same way as the classic Heiken Ashi indicator, but it is not plotted using candles or a moving average, but rather the Skynet Moving Average indicator. Advantages no delay, or a slight delay when using the 'smooth' parameter. customizable parameters for any price data and timeframes. visualization of the flat and the short-term trend. unlike the classic Heiken Ashi indicator, the frequency of candles changing from bull
MajorAlert - is a professional trading indicator for MetaTrader 4 that combines two distinct market analysis approaches into one powerful tool. By integrating a counter‑trend entry logic (upper block) with a trend‑following filter (lower block), the indicator generates high‑probability signals on the chart with clearly separated arrow colors. Key Features Fully self‑contained   – no external indicators required; all calculations are built‑in. Versatile inputs   – adjust all parameters to suit a
Hidden123Gap (123Gap) is universal business tool from the professional traders that helps to visualize market situation. It previews markets using a price action and a sentiment in the market. The tool is necessary to understand the market situation and the anticipation of further movement. Finally, you will see how traders estimate the market. With this tool, you will see important supports and resistances. It shows you the entry of big players on the market. The indicator works on all timefram
Introduction It is common practice for professional trades to hide their stop loss / take profit from their brokers. Either from keeping their strategy to the themselves or from the fear that their broker works against them. Using this indicator, the stop loss / take profit points will be drawn on the product chart using the bid price. So, you can see exactly when the price is hit and close it manually.  Usage Once attached to the chart, the indicator scans the open orders to attach lines for t
FX Flow   indicator can be used as an anticipator of the next trend, preferably confirmed by Price Action or another oscillator (RSi, Stochastic ..). It takes the money flows of the major currencies USD EUR GBP AUD NZD CAD CHF JPY into account, and processes them. Excellent tool for indices, but also for correlations between currencies. Works on each timeframes.  Blue line: Bull market Yellow line: Bear market Note : if the indicator opens the window, but does not draw lines, load the historie
Be notified of every color change of Heiken Ashi (HA) candles. The indicator will trigger past and new signals every time that HA candles change their colors. Note : this tool is based on the code of Heiken Ashi indicator developed by MetaQuotes Software Corp. Features The signals are triggered at closing of last bar/opening of a new bar; Any kind of alerts can be enabled: Dialog Box, Email message, SMS notifications for smartphones and tablets, and Sound alerts; By default, up arrows are plott
Nexus Pulse Detector — 価格構造に基づく高度なシグナルシステム 仕組み Nexus Pulse Detector は再構築されたトレンドツールでも、精度を装ったリペイント系インジケーターでもありません。これは、価格の圧縮および拡張フェーズにおける方向的な不均衡を監視する、構造ベースのシグナルエンジンです。各シグナルは、買い手と売り手の主導権の移行を反映し、複数の条件によりブレイクアウトの正当性が検証されます。 ノイズではなく価格構造にフォーカス 単純な高値・安値に反応するのではなく、最近の構造的な極値と短期的な価格平均との関係性から圧力ポイントを抽出します。それらのレベルが吸収されたか、拒否されたか、十分な勢いで突破されたかを判断し、その結果としてのみ反応します。 市場が証明したときのみシグナルを表示 あらゆる変動でシグナルが発生するわけではありません。Nexus Pulse Detector は、構造の逸脱、内部トレンドの変化、そして直近の市場対称性からの明確なブレイクという複数の要因の合致を待ちます。これらが重なったときにのみ、シグナルが表示され
Smoothed Heiken Ashi with AC/AO Zones – Professional Trading Clarity Transform your Heiken Ashi analysis with intelligent smoothing that eliminates noise while preserving actionable signals. What Makes This Different? This isn't just another Heiken Ashi indicator. We've engineered a sophisticated smoothing engine that works with the Accelerator (AC) and Awesome Oscillator (AO) zone logic to give you cleaner entries and exits without sacrificing responsiveness. Four Smoothing Methods at Your Comm
Least Square MA   Description: The Least Square Moving Average indicator allows you to assess the direction of the market movement and its possible reversals. The indicator is a line that is displayed in the price window. Input parameters: LSMA_Period - the period for calculating the moving average using the least squares method; Prediction - the number of candles used to construct the predicted moving average using the least squares method, provided that its rate (falling or growing remains); D
Macd Trend System   indicator is designed for trend and signal trading. This indicator generates trend signals.  It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators.  You can only trade with this indicator. The generated signals are displayed on the graphical screen.  Thanks to the alert features you can g
Gvs Undefeated Trend   indicator is designed for trend and signal trading. This indicator generates trend signals.  It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators.  You can only trade with this indicator. The generated signals are displayed on the graphical screen.  Thanks to the alert features you ca
Heiken Ashi Button Heiken-Ashi , often spelled Heikin-Ashi, is a Japanese word that means "Average Bar." The Heiken-Ashi approach can be used in conjunction with candlestick charts to spot market trends and forecast future prices. It's useful for making candlestick charts easier to read and analysing patterns. Traders can use Heiken-Ashi charts to determine when to stay in trades while the trend continues and close trades when the trend reverses. The majority of earnings are made when markets a
FREE
The indicator looks for buying and selling zones, where a deal can be opened with a minimal stop loss and a better Risk Reward Ratio. The indicator is based on qualitative search of the Double top/Double bottom pattern. This version works only on USDCAD! The full version of the indicator can be purchased here - https://www.mql5.com/en/market/product/29820 Indicator operation principle Looks for local tops/bottoms which can potentially become a Reversal zone It waits for an impulse movement that
FREE
Crypto_Forex MT4用インジケーター「 Major_Trend_Histogram 」、リペイント機能なし。 - Major_Trend_Histogramインジケーターは、非常に大きなトレンドを捉えるために設計されています。 - インジケーターは2色で表示可能:ピンクは弱気トレンド、緑は強気トレンド(色は変更可能)。 - トレンドの初期段階を検知します。標準的なMAよりもはるかに効率的です。 - Major_Trend_Histogramは、プライスアクション、VSA、その他のインジケーターなど、他の取引手法と組み合わせることができます。 - インジケーターにはモバイルとPCの両方でアラートが利用できます。 Click here to see high quality Trading Robots and Indicators! これは、このMQL5ウェブサイトでのみ提供されるオリジナル製品です。
PABT Pattern Indicator - it's classical system one of the signal patterns. Indicator logic - the Hi & Lo of the bar is fully within the range of the preceding bar, look to trade them as pullback in trend. In the way if indicator found PABT pattern it's drawing two lines and arrow what showing trend way.  - First line - it's entry point and drawing at: 1. On the high of signal bar or on middle of the signal bar (depending from indicator mode) for buy; 2. On the low of signal bar or on middle of t
Dark Oscillator   is an Indicator for intraday trading. This Indicator is based on   Counter Trend  strategy, trying to intercept changes in direction, in advance compared trend following indicators.  We can enter in good price with this Indicator, in order to follow the inversion of the trend on the current instrument. It is advised to use low spread ECN brokers. This Indicator does   Not repaint   and   N ot lag . Recommended timeframes are M5, M15 and H1. Recommended working pairs: All. I nst
Quantum Falcon Signal Free is a smart visual trading indicator for MetaTrader 4 designed for Forex and Gold traders. The indicator combines: • Trend analysis • RSI momentum confirmation • MACD momentum filtering • ATR volatility filtering • Higher timeframe confirmation • Smart exit signal detection Main Features: • Smart Buy and Sell signals • Exit Buy / Exit Sell alerts • Real-time dashboard on chart • Professional candle arrows • Multi-timeframe trend confirmation • ATR market volatility filt
FREE
Forex Gump
Andrey Kozak
2.4 (5)
Forex Gump is a fully finished semi-automatic trading system. In the form of arrows, signals are displayed on the screen for opening and closing deals. All you need is to follow the instructions of the indicator. When the indicator shows a blue arrow, you need to open a buy order. When the indicator shows a red arrow, you need to open a sell order. Close orders when the indicator draws a yellow cross. In order to get the most effective result, we recommend using the timeframes H1, H4, D1. There
Crypto_Forexインジケーター「 MFI FLAT Detector 」は、取引における効率的な補助ツールです!リペイント不要。 このMT4対応の優れたインジケーターで、取引手法をアップグレードしましょう。 - このインジケーターは、チャート上の価格がフラットな領域を表示します。「フラット感度」パラメータが搭載されており、フラットな領域を検知します。 - 「MFI FLAT Detector」はダイバージェンス検知に非常に有効で、プライスアクションとの組み合わせにも最適です。 - トレンドフォローシステムでフラットゾーンを検知し、そこでの取引を回避するために使用できます。 - リバーサルスキャルピング(フラットな領域からの反転を狙う取引)にも使用できます。 - 標準的なMFIオシレーターの代わりに「MFI FLAT Detector」を使用する機会は数多くあります。 - Money_Flow_Index (MFI) 自体は、価格と出来高データを用いて売られ過ぎと買われ過ぎの領域を特定するテクニカルオシレーターです。 - MFIが80を超える場合は買われ過ぎから売りエントリーし
Beta Signal   - индикатор предназначенный для поиска локальных экстремумов, определения текущей тенденции. В расчетах индикатора используется авторская методика. С помощью индикатора можно определять места возможного разворота цены желательно в направлении тенденции, но также с достаточной точностью и против нее. Также с помощью индикатора можно определять текущую тенденцию. Индикатор подходит для любых валютных пар, но для адекватного отображения показания необходимо, чтобы было достаточно исто
Next Trend Pro INDICATOR - the best trend indicator on the market, the indicator works on all timeframes and assets, the indicator is built on the basis of 12 years of experience in forex and many other markets. You know that many trend indicators on the internet are not perfect, late and difficult to trade with, but the Next Trend Pro indicator is different, the Next Trend Pro indicator shows a buy or sell signal, colored candles confirm the signal, and support levels and resistance levels give
MarketSessions Indicator The Essential Tool for Global Market Session Visualization The MarketSessions indicator is a powerful MT4 tool designed to help traders visualize major forex market sessions directly on their charts. By clearly displaying the active trading hours of Sydney, Tokyo, London, and New York markets, this indicator helps you identify optimal trading periods and understand market volatility patterns. Key Features: Clear visualization of all four major trading sessions (Sydney, T
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
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 インジケーターが提供するもの  オリジナルで気に入っていたすべての機能が、新機能と精度の向上によって強化されました。 主な機能: 独自の通貨強度計算式。 すべての時間枠でスムーズかつ正確な強度ライン。 トレンドの特定と正確なエントリーに最適です。 ダイナミックマーケットフィボナッチレベル (マーケットフィボナッチ)。 このインジケーターに固有
Enigmera
Ivan Stefanov
5 (8)
ENIGMERA: 市場の中心 重要:MQL5.comのデモはStrategy Testerで実行されており、Enigmeraの機能を完全には反映していない場合があります。詳細については、説明、スクリーンショット、ビデオをご確認ください。質問があれば、遠慮なくメッセージを送ってください! インジケーターのコードは完全に書き直されました。バージョン3.0は新機能を追加し、インジケーターの開始以来蓄積されたバグを修正しました。 紹介 このインジケーターとトレーディングシステムは、金融市場への注目すべきアプローチです。ENIGMERAはフラクタルサイクルを使用して、サポートとレジスタンスのレベルを正確に計算します。真の蓄積フェーズを示し、方向と目標を提供します。トレンドでも修正でも機能するシステムです。 動作方法 インジケーターのほとんどの機能は、チャートの左側にあるボタンで制御され、市場の状況に迅速に対応できるようになっています。 ボタン ON/OFF – インジケーター全体を表示または非表示にします。 Channel – サポートチャネルを有効にし、許容範囲の偏差を示します。 Dev
このインジケーターは実践的なトレードに最適な自動波動分析のインジケーターです! 場合... 注:   Tang Lun (Tang Zhong Shuo Zen) の命名規則の影響で、私は波のグレーディングに西洋の名前を使用することに慣れていません。基本的な波を ペン 、二次波のバンドを セグメント と名付けました。同時に、 セグメント にはトレンドの方向が指定されます (この命名方法は将来のノートで使用されます。最初に言っておきます)。ただし、アルゴリズムは曲がりくねった理論とはほとんど関係がないため、付けるべきではありません。これは、私の市場分析 によって要約された、絶えず変化する複雑な運用ルール を反映しています。 バンドは標準化され、人によって異なることがないよう定義されており、市場参入を厳密に分析する上で重要な役割を果たす人為的な干渉の描画方法が排除されています。 このインジケーターを使用することは、取引インターフェイスの美しさを改善することと同等であり、元の K ライン取引を放棄し、取引の新しいレベルに連れて行きます。また、宣伝の観点から顧客の認識も向上します。 イ
多くの矢印インジケーターは、シグナルだけを表示して、その後の判断はすべてトレーダー任せです。KT Alpha Hunter Arrows は、最初から完成されたトレードプランを提供します。 各シグナル矢印が表示されると、エントリーライン、ストップロス、4つのテイクプロフィット水準、そして現在の銘柄と時間足を今トレードする価値があるかを示すリアルタイムのエッジ判定が、チャート上にまとめて描画されます。付属の Trade Manager EA は、手動でエントリーした後の管理をサポートし、相場が荒れて感情が揺れやすい場面でも、トレードの規律を保ちやすくします。リペイントなし。確定足のみでシグナルを表示。Forex、ゴールド、指数、その他あなたが取引するあらゆる銘柄向けに設計されています。 主な機能 リペイントしない買い・売り矢印。シグナルは足が確定した後にのみ表示されます。 各シグナルにエントリーライン、構造的なストップロス、4つのテイクプロフィット水準を表示。 Edge Dashboard が、現在のチャート上で買いと売りのセットアップを個別に評価。 判定システム:No Edge、Ma
Scalper Inside PRO Scalper Inside PRO は、MetaTrader 4 向けの短期トレンドおよびスキャルピング用インジケーターです。独自アルゴリズムを用いて、市場の方向性と主要なターゲットレベルを素早く検出します。エントリー、イグジット、複数の利確ターゲットを自動計算し、詳細なパフォーマンス統計を表示することで、さまざまな銘柄やストラテジーがどのように機能してきたかを確認できます。これにより、現在のマーケットコンディションに最も適した取引銘柄を選択するのに役立ちます。さらに、Scalper Inside PRO には、お使いの矢印インジケーターを簡単に接続でき、その統計と過去のパフォーマンスを素早く評価できます。 本インジケーターは、あらゆる銘柄と時間足で動作し(短期トレードには M5 を推奨)、複数の内蔵ストラテジーを備えています。そのため、単体のスキャルピングツールとしても、トレーディングシステム内の強力な分析コンポーネントとしても活用できます。 主な機能 独自アルゴリズム(Next‑Generation Trend Detection Algor
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
Current event:  https://c.mql5.com/1/326/A2SR2025_NoMusic.gif A. A2SR とは何ですか ?   * 先行テクニカル指標です (塗り直しなし、ラグなし)。 -- ガイダンス : -- https://www.mql5.com/en/blogs/post/734748/page4#comment_16532516 -- そして https://www.mql5.com/en/users/yohana/blog A2SR には、サポート (需要) とレジスタンス (供給) のレベルを決定する特別な手法があります。 ネットで見かける通常の方法とは異なり、A2SR は実際の SR レベルを決定する独自のコンセプトを持っています。 元の手法はインターネットから取得されたものではなく、インターネット上で公開されたこともありません。 A2SR は、取引スタイルに応じて SR レベルを自動選択します。 時間枠を変更しても、SR レベルはその位置にとどまります。 実際のSRは、使用する時間枠から取得されるわけではないため. A2SR
トレンドトレーディング は、タイミングのプルバックとブレイクアウトにより、市場で起こっているトレンドから可能な限り利益を得るように設計された指標です。確立されたトレンドの中で価格が何をしているかを分析することにより、取引の機会を見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 自信を持って効率的に金融市場を取引する むち打ちにならずに確立されたトレンドから利益を得る 収益性の高いプルバック、ブレイクアウト、早期の逆転を認識する この指標は、独自の品質とパフォーマンスを分析します 複数時間枠のダッシュボードを実装します インジケーターは再描画されていません 電子メール/音声/視覚アラートを実装します 確立されたトレンドは多くの取引機会を提供しますが、ほとんどのトレンド指標はそれらを完全に無視しています。インジケーターの解釈はかなり簡単です: (1) トレンドの変化 (2) トレンドの方向への後退 (3) トレンドの方向へのブレイクアウト 赤いダッシュ は下降トレンド中の修正です 青いダッシュ は上昇トレンド中
Step into the world of Forex trading with confidence, clarity, and precision using   Gold Indicator   a next-generation tool engineered to take your trading performance to the next level. Whether you’re a seasoned professional or just beginning your journey in the currency markets, Gold Indicator equips you with powerful insights and help you trade smarter, not harder. Built on the proven synergy of three advanced indicators, Gold Indicator focuses exclusively on medium and long-term trends eli
スイングトレーディング は、トレンドの方向のスイングと可能な反転スイングを検出するように設計された最初のインジケーターです。トレーディングの文献で広く説明されているベースラインスイングトレーディングアプローチを使用します。インディケータは、いくつかの価格と時間のベクトルを調査して、全体的なトレンドの方向を追跡し、市場が売られ過ぎまたは買われ過ぎて修正の準備ができている状況を検出します。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] むち打ちを起こさずに市場スイングの利益 インジケーターは常にトレンドの方向を表示します 色付きの価格帯は機会のベースラインを表します 色付きのダッシュは、可能な反転スイングを表します この指標は、独自の品質とパフォーマンスを分析します 複数時間枠のダッシュボードを実装します カスタマイズ可能なトレンドおよびスイング期間 電子メール/サウンド/プッシュアラートを実装します インジケータは再描画またはバックペインティングではありません Swing Tradingとは Swing Tradingは
「 Dynamic Scalper System 」インジケーターは、トレンド波の中でスキャルピング取引を行う手法のために設計されています。 主要通貨ペアと金でテスト済みで、他の取引商品との互換性があります。 トレンドに沿った短期的なポジションオープンのシグナルを提供し、追加の価格変動サポートも提供します。 インジケーターの原理 大きな矢印はトレンドの方向を決定します。 トレンド波の中では、小さな矢印の形でスキャルピングシグナルを生成するアルゴリズムが機能します。 赤い矢印は強気方向、青い矢印は弱気方向です。 トレンドの方向には敏感な価格変動ラインが描かれ、小さな矢印のシグナルと連動します。 シグナルは次のように機能します。適切なタイミングでラインが現れるとエントリーシグナルが形成され、ラインが開いている間はポジションが保持され、完了すると取引が終了します。 推奨される動作時間枠はM1~H4です。 矢印は現在のローソク足に形成され、次のローソク足が開いている場合は、前のローソク足の矢印は再描画されません。 入力パラメータ Trend Wave Period - トレンド方向
M30/H1/H4スイング版もあります M5/M15では取りきれない大きな波を狙いたい方へ。 Gold Signal Swing Pro(M30/H1/H4対応)を販売中。 1トレードで$20〜$80+の値幅を狙う。 https://www.mql5.com/en/market/product/177643 KURAMA GOLD SIGNAL PRO(MT4版)— 7層フィルター・自動TP/SL・品質スコア搭載 XAUUSD完全トレードシステム リペイントなし。リドローなし。ラグなし。すべてのサインは確定後に変わりません。見たままが結果です。 特典:買い切りライセンスをご購入いただいた方に、AI Zone Radar($59相当)+PDFマニュアルを無料プレゼント。購入後にMQL5でメッセージをお送りください。 AI Zone Radar: https://www.mql5.com/en/market/product/175834 トレーダーから信頼されています:ゴールドトレーダーのコミュニ
MonsterDash Harmonic Indicator is a harmonic pattern dashboard. It recognizes all major patterns. MonsterDash is a dashboard that displays all detected patterns for all symbols and (almost) all timeframes in sortable and scrollable format. Users can add their own user defined patterns . MonsterDash can open and update charts with the pattern found. Settings MonsterDash's default settings are good enough most of the time. Feel free to fine tune them to your needs. The color settings are for thos
Introduction to Fractal Pattern Scanner Fractal Indicator refers to the technical indicator that makes use of the fractal geometry found in the financial market. Fractal Pattern Scanner is the advanced Fractal Indicator that brings the latest trading technology after the extensive research and development work in the fractal geometry in the financial market. The most important feature in Fractal Pattern Scanner is the ability to measure the turning point probability as well as the trend probabi
トレンドラインプロ   市場の真の方向転換点を理解するのに役立ちます。この指標は、真のトレンド反転と主要プレーヤーが再び参入するポイントを示します。 分かりますか     BOSライン   複雑な設定や不要なノイズなしに、より長い時間足でのトレンドの変化と重要なレベルを把握できます。シグナルは再描画されず、バーが閉じた後もチャート上に残ります。 VERSION MT 5     -     RFI LEVELS PRO インジケーター と組み合わせることで、その潜在能力を最大限に発揮します。 インジケーターが示す内容: 本当の変化   トレンド(BOSライン) 一度シグナルが現れたら、それは有効です!これは、リペイント機能を持つインジケーターとの重要な違いです。リペイント機能を持つインジケーターは、シグナルを発した後、それを変更し、資金の損失につながる可能性があります。これにより、より高い確率と精度で市場に参入できます。また、矢印が現れた後、目標値(利益確定)に達するか、反転シグナルが現れるまで、ローソク足の色を変更する機能もあります。 繰り返しエントリ       主要プレーヤーの
The Propfolio Master Suite is the ultimate all-in-one analytical workstation for professional traders. Combining the power of the Beat The Market Maker (BTMM) methodology, Smart Money Concepts (SND/Liquidity), and Advanced Volume Profile, this suite replaces multiple different indicators with one optimized engine. Monitor up to 14 pairs simultaneously from a single chart, instantly identify market cycles, and seamlessly map institutional footprints with the click of a button. The Command Center
このインジケーターは、反転ポイントと価格戻りゾーンを正確に表示します。     主要プレーヤー 。新たなトレンドが形成される場所を把握し、最大限の精度で意思決定を行い、すべての取引をコントロールします。 TREND LINES PRO インジケーターと組み合わせることで、その潜在能力を最大限に発揮します。 VERSION MT5 インジケーターが示す内容: 新しいトレンドの始まりに活性化する反転構造と反転レベル。 リスクと報酬の比率を最小限に抑えた利益 確定 と 損失停止の レベルの表示     RR 1:2   。 インテリジェントな削減ロジックによるストップロス。 指定されたインジケーターから 2 つのトレンド タイプの反転パターンを表示します。 指標: トレンドを追う   TREND LINES PRO   (世界的なトレンドの変化) TREND PRO   (クイックトレンド変更) シンプルで効果的   スキャナー   リアルタイムトレンド(新機能)。 マルチタイムフレームのインストゥルメント フィルタリング。 画面   利益     LOGIC AI信号の後。 当日プラス方
Trend Breakout Arrows Indicator The Trend Breakout Arrows Indicator is a momentum-based signal tool designed to identify potential bullish and bearish breakout opportunities. It displays clear arrow signals directly on the price chart, helping traders quickly recognize possible trend changes and continuation setups. Up Arrow (Buy Signal) A magenta up arrow appears below a candle when bullish momentum begins to strengthen. This signal indicates that buying pressure may be overtaking selling press
NAM Order Blocks
NAM TECH GROUP, CORP.
3.67 (3)
MT4マルチタイムフレームオーダーブロック検出インジケーター。 特徴 -チャートコントロールパネルで完全にカスタマイズ可能で、完全な相互作用を提供します。 -必要な場所でコントロールパネルを表示および非表示にします。 -複数の時間枠でOBを検出します。 -表示するOBの数量を選択します。 -さまざまなOBユーザーインターフェイス。 -OBのさまざまなフィルター。 -OB近接アラート。 -ADRの高線と低線。 -通知サービス(画面アラート|プッシュ通知)。 概要 注文ブロックは、金融機関や銀行からの注文収集を示す市場行動です。著名な金融機関と中央銀行が外国為替市場を牽引しています。したがって、トレーダーは市場で何をしているのかを知る必要があります。市場が注文ブロックを構築するとき、それは投資決定のほとんどが行われる範囲のように動きます。 注文の構築が完了すると、市場は上向きと下向きの両方に向かって急激に動きます。注文ブロック取引戦略の重要な用語は、機関投資家が行っていることを含むことです。それらは主要な価格ドライバーであるため、機関投資家の取引を含むあらゆる戦
RelicusRoad Pro: 定量的市場オペレーティングシステム 【期間限定】無制限アクセス 70% OFF - 2,000人超のトレーダーと共に なぜ多くのトレーダーは「完璧な」インジケーターを使っても失敗するのでしょうか? それは、文脈を無視して 単一の概念 だけでトレードしているからです。文脈のないシグナルは単なるギャンブルです。勝ち続けるには、 根拠の重なり(コンフルエンス) が必要です。 RelicusRoad Proは単なる矢印インジケーターではありません。完全な 定量的市場エコシステム です。独自のボラティリティモデリングを用いて、価格が推移する「適正価値の道(Fair Value Road)」をマッピングし、ノイズと真の構造的ブレイクを判別します。 推測はやめましょう。機関投資家レベルの「ロード・ロジック」でトレードを。 コアエンジン:「Road」アルゴリズム システムの中心となる Road Algo は、市場環境にリアルタイムで適応するダイナミックなボラティリティチャネルです。 安全ライン(平衡点) と、価格が数学的に反転しやすい 拡張レベル を投影します。 Si
これはほぼ間違いなく、MetaTraderプラットフォームで見つけることができる最も完全な調和価格形成自動認識インジケーターです。 19種類のパターンを検出し、フィボナッチプロジェクションをあなたと同じように真剣に受け止め、潜在的逆転ゾーン(PRZ)を表示し、適切なストップロスとテイクプロフィットレベルを見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 19の異なる調和価格形成を検出します プライマリ、派生および補完フィボナッチ投影(PRZ)をプロットします 過去の価格行動を評価し、過去のすべてのパターンを表示します この指標は、独自の品質とパフォーマンスを分析します 適切なストップロスとテイクプロフィットのレベルを表示します ブレイクアウトを使用して適切な取引を通知します すべてのパターン比をグラフにプロットします 電子メール/音声/視覚アラートを実装します スコット・M・カーニーの本に着想を得て、この指標は最も純粋で急を要するトレーダーのニーズを満たすように設計されています。ただし、トレードを容易にする
この製品は 2026 年の市場向けに更新され、最新の MT5 ビルドに最適化されています。 価格更新のお知らせ: Smart Price Action Concepts は現在 $200 で提供されています。 次の 30 件の購入 後、価格は $299 に上がります。 特別オファー: 購入後、私にプライベートメッセージを送ることで、 無料ボーナス + ギフト を受け取ることができます。 まず、このトレーディングツールはリペイントなし、再描画なし、遅延なしのインジケーターであり、プロフェッショナルな取引に最適であることを強調しておきます。 Online course , and manual Smart Price Action Concepts Indicator は、初心者から経験豊富なトレーダーまで使える非常に強力なツールです。20 種類以上の便利なインジケーターを 1 つにまとめ、Inner Circle Trader Analysis や Smart Money Concepts Trading Strategies などの高度な取引アイデアを組み合わせています。このインジケ
このインジケーターは、エリオット波動理論と組み合わせて作動し、2つの方法で使用されます: 自動モード: このモードでは、インジケーターがチャート上の全ての5つのモーティブ波を自動的に検出し、予測とポテンシャルな逆転ゾーンを提供します。また、アラートやプッシュメッセージを生成する能力も備えています。この自動機能により、エリオット波動パターンの識別と分析のプロセスが効率化されます。 手動モード: このオプションは、エリオット波動理論を手動で扱いたいトレーダー向けです。9つの段階を使用して波を描画することができます。各段階は、表示された後に描画されたラインを調整して個別に定義できます。この機能により、手動で波を描画するプロセスがより効率的になります。重要な点として、すべての描画データが将来の参照のためにプラットフォームのデータフォルダに保存されることに注意してください。 パラメータ: Name: インジケーターの名前。 Use_System_Visuals: インジケーターのテーマを有効または無効にして、取引プラットフォーム全体の外観に合わせます。 Explain_Comment: 波の番号
Advanced Market Footprint Profiles is a specialized market analysis tool, representing a customized volume distribution profile enhanced with Delta and Bid/Ask profiles. The indicator builds fixed horizontal profiles (Fixed Range), displaying the distribution of Volume, Delta, and Bid/Ask at each price level with high precision. Unlike standard horizontal volume profiles, which only show overall volume distribution, this indicator combines Volume, Delta, and Bid/Ask within the selected range a
MV Arrow– Professional Swing Signal Indicator comment for set files and user manual. MV Arrow v4.0 is a precision-based MT4 arrow indicator designed to identify high-probability swing BUY and SELL zones using a multi-filter confirmation system. It focuses on market extremes , filtering noise and low-quality signals to deliver clear, well-spaced trade opportunities . This indicator is ideal for traders who prefer clean charts, disciplined entries, and confirmation-based signals rather than co
ゴールドラッシュ・トレンド・アロー・シグナル ゴールドラッシュ・トレンド・アロー・シグナル 指標は、XAU/USDにおける高速・短期スキャルパー向けに最適化された、正確でリアルタイムのトレンド分析を提供します。 1分足専用に設計されたこのツールは、明確なエントリーポイントを示す方向矢印を表示し、スキャルパーが変動の激しい市場状況でも自信を持って取引できるよう支援します。 この指標は、PRIMARY(主要)とSECONDARY(補助)のアラート矢印で構成されています。PRIMARYシグナルは、トレンドの方向転換を示す白と黒の方向矢印であり、SECONDARYシグナルは、PRIMARY矢印が示す方向を確認し、潜在的なエントリーポイントを示す青と赤の矢印です。 注意:トレンド方向の変化後にPRIMARYアラート矢印が1つだけ表示される場合、複数のSECONDARY青/赤矢印が表示される点に注意が必要です。SECONDARYシグナルは、シグナル基準を満たす任意のローソク足後に表示されます。したがって、長期的なトレンド移動の場合、画面に多くのSECONDARY矢印が表示されます(添付の
GOLD Impulse with Alert
Bernhard Schweigert
4.67 (12)
このインディケータは、当社の2つの製品 Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics . のスーパーコンビネーションです。 このインジケーターは全ての時間枠で作動し、8つの主要通貨と1つのシンボルの強弱のインパルスをグラフで表示します。 このインジケータは、金、エキゾチックペア、商品、インデックス、先物など、あらゆるシンボルの通貨強度の加速度を表示することに特化されています。金、銀、原油、DAX、US30、MXN、TRY、CNHなどの通貨強度の加速度(インパルスまたは速度)を表示するために、任意のシンボルを9行目に追加できる、この種の最初のものです。 新しいアルゴリズムに基づいて構築され、潜在的な取引の特定と確認がさらに容易になりました。これは、通貨の強さや弱さが加速しているかどうかをグラフィカルに表示し、その加速の速度を測定するためです。加速すると物事は明らかに速く進みますが、これはFX市場でも同じです。つまり、反対方向に加速している通貨をペアリングすれば、潜在的に利益を生む取引を特定
LHおよびHLブレイクアウトを見つけるための純粋な価格アクションによって行われる高度な計算。 それはあなたに市場で素晴らしい逆転ポイントを与えるでしょう。LHとHL信号は同様にトレイングルブレイクアウトに使用することができます。 ブレイクアウトが発生すると、強い反転を示します。移動平均の優れたフィルターです。トレンドインジケーターと一緒に使用することを強くお勧めします。 サポートとレジスタンス、供給需要指標の追加確認として使用できます。 詳細については、次の外国為替スレッドをご覧ください。 インジケーターは再描画されていません。 Buffers :   SetIndexBuffer ( 0 ,UpBar);      SetIndexBuffer ( 1 ,UpBar2);           SetIndexBuffer ( 2 ,DnBar);      SetIndexBuffer ( 3 ,DnBar2);           SetIndexBuffer ( 4 ,UpBarTop);      SetIndexBuffer ( 5 ,UpBarLow);     
The "MR Volume Profile 4" indicator is a charting tool that displays trading volume at different price levels rather than time intervals. A key concept in volume profile is the point of control (POC)—the price level with the highest volume traded during the session or time range. While tools like VWAP or OBV provide volume trends, the "MR Volume Profile 4" indicator offers granular detail about where the most market activity occurs at specific price levels. This makes it a more precise tool for
作者のその他のプロダクト
Precision Breakout Pro MT4
James Patrick D Artanion Grieves
レンジブレイクアウトアラートインジケーター - ユーザーガイド この指標が示すもの レンジブレイクアウトアラートインジケーターは、特定の期間における価格レンジを識別し、価格がそのレンジを突破した際に取引シグナルを生成します。このインジケーターは、ブレイクアウトや平均回帰の機会を利用したいトレーダーのために開発されました。 仕組み 1. 範囲検出 時間ベースの間隔     : インジケーターが価格変動を追跡する特定の時間枠(例:10:00 - 12:00)を設定します。 範囲制限     : この期間中、最高値と最低値が範囲の限界となります 視覚的な表示     : 青い線は間隔の境界を示し、縦線は開始/終了時刻を示します 2. 信号生成 このインジケーターは、2 つの異なる取引戦略を提供します。 トレンドモード         ( InpMeanReversion = false ) ハイブレイク     :         ライムグリーンの上矢印         → 買いシグナル(価格がレンジを上抜ける) ローブレイク     :         赤い下矢印         → 売り
Precision Breakout Pro
James Patrick D Artanion Grieves
レンジブレイクアウトアラートインジケーター - ユーザーガイド この指標が示すもの レンジブレイクアウトアラートインジケーターは、特定の期間における価格レンジを識別し、価格がそのレンジを突破した際に取引シグナルを生成します。このインジケーターは、ブレイクアウトや平均回帰の機会を利用したいトレーダーのために開発されました。 仕組み 1. 範囲検出 時間ベースの間隔     : インジケーターが価格変動を追跡する特定の時間枠(例:10:00 - 12:00)を設定します。 範囲制限     : この期間中、最高値と最低値が範囲の限界となります 視覚的な表示     : 青い線は間隔の境界を示し、縦線は開始/終了時刻を示します 2. 信号生成 このインジケーターは、2 つの異なる取引戦略を提供します。 トレンドモード         ( InpMeanReversion = false ) ハイブレイク     :         ライムグリーンの上矢印         → 買いシグナル(価格がレンジを上抜ける) ローブレイク     :         赤い下矢印         → 売り
Sig MA MT5
James Patrick D Artanion Grieves
プロフェッショナルなスムージング、明確なアラート、複数の時間枠のサポートを備えた、色分けされたスマートな移動メディアで、日常のトレーダー向けに設計されています。 ## 簡単に言うと、何をするのか - チャート上に移動平均線を描きます。 - 線は方向に応じて色が変わります:     -青 = 上昇トレンド     - 赤 = 下降傾向     - 黄色 = フラット/ニュートラル - ラインの方向が変わったときにアラートを送信します (オプション)。 - 現在の期限内に 作業する か、より明確にするために期限を「借りる」こともできます。 トレーダーが愛する理由 - ノイズ除去: クラシックまたは高度なスムージング ツール (SMA、EMA、HMA、KAMA、T3 など) を選択します。 - 明確なシグナル: 色によって傾向がすぐにわかります。 -柔軟性 : より流動的な動作のために、生の価格または平均足の価格を使用します。 - 軽量: ライブ グラフィックで高速かつ応答性に優れるように設計されています。 ## クイックスタート 1.   `Custom MA.mq5` を MQL
フィルタ:
レビューなし
レビューに返信