Composite MA

Composite MA Indicator - Comprehensive Guide

Description:
The Composite MA indicator is a sophisticated multi-timeframe trend analysis tool that calculates the average value of multiple moving averages across a user-defined period range. It provides comprehensive market trend visualization through both a color-coded composite moving average line on the chart and an Excel-style panel displaying trend direction across 21 different timeframes. The indicator uses canvas technology for smooth GUI rendering and offers real-time multi-timeframe trend analysis.

Usefulness:
This indicator is exceptionally valuable for traders seeking comprehensive market context across multiple timeframes. It helps identify trend direction, strength, and consistency across various trading horizons from minutes to monthly charts. The composite approach smooths out noise from individual MAs, providing more reliable trend signals. The visual panel allows quick assessment of market sentiment alignment, enabling better entry/exit timing and confirmation of trend reversals.

Logical Concept:
The core logic involves calculating multiple moving averages (from PeriodFrom to PeriodTo) and computing their average value to create a composite MA. This composite line changes color based on trend direction (blue for uptrend, red for downtrend). For multi-timeframe analysis, the indicator calculates separate composite MAs for each enabled timeframe and compares current vs previous values to determine trend direction. The unique arrow system shows both composite MA direction and price position relative to the composite MA.

Trend Detection Methodology:

  • Single Timeframe Trend: Compare current composite MA value with previous value. Rising values indicate uptrend (blue), falling values indicate downtrend (red)

  • Multi-Timeframe Alignment: Analyze trend consistency across timeframes. Strong trends show uniform direction across multiple timeframes

  • Trend Strength Assessment: Count how many timeframes align in direction. More aligned timeframes indicate stronger trend momentum

  • Reversal Detection: Watch for changes in arrow colors and directions across multiple timeframes simultaneously

Using the Indicator for Trend and Index Movements:

  1. Primary Trend Identification: Use the main chart composite MA line for current timeframe trend direction

  2. Multi-Timeframe Confirmation: Check the panel for alignment - optimal entries occur when multiple timeframes show same direction

  3. Trend Strength Measurement: Count "Up" or "Down" statuses across timeframes - more consistent signals indicate stronger trends

  4. Divergence Detection: Look for disagreement between timeframes (e.g., H1 up but M15 down) suggesting potential reversals

  5. Support/Resistance Levels: Use composite MA values from higher timeframes as dynamic support/resistance

  6. ▲ and ▼ arrows indicate position of index price related to Composite MA price for corresponding timeframe

Basic MQL5 EA Integration Code:

//+------------------------------------------------------------------+
//|                      Composite MA EA Sample                      |
//+------------------------------------------------------------------+
#property copyright "2025"
#property version   "1.00"
#property description "EA using Composite MA Indicator"

//--- Input parameters
input group "=== Composite MA Settings ==="
input int                 MA_PeriodFrom = 1;           // MA Starting Period
input int                 MA_PeriodTo = 100;           // MA Ending Period  
input int                 MA_Shift = 0;                // MA Shift
input ENUM_MA_METHOD      MA_Method = MODE_SMA;        // MA Method
input ENUM_APPLIED_PRICE  MA_Price = PRICE_CLOSE;      // MA Applied Price
input ENUM_TIMEFRAMES     MA_Timeframe = PERIOD_CURRENT; // MA Timeframe

input group "=== Trading Settings ==="
input double              LotSize = 0.1;               // Lot Size
input int                 MagicNumber = 12345;         // Magic Number
input int                 Slippage = 3;                // Slippage

//--- Global variables
int composite_ma_handle;  // Handle for the Composite MA indicator

//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
{
   //--- Create Composite MA indicator handle
   composite_ma_handle = iCustom(_Symbol, _Period, "Composite MA.ex5", 
                                 true,      // Trendline_ON
                                 MA_PeriodFrom,
                                 MA_PeriodTo,
                                 MA_Shift,
                                 MA_Method,
                                 MA_Price,
                                 MA_Timeframe,
                                 200,       // DisplayBars
                                 false,     // Panel_ON - turn off panel in EA
                                 false, false, false, false, false, false, false, false, false, false, // All M timeframe panels off
                                 false, false, false, false, false, false, false, false, // All H timeframe panels off  
                                 false, false, false, // D1, W1, MN1 panels off
                                 clrDodgerBlue, clrRed, clrGray, clrBrown // Colors
                                );
   
   if(composite_ma_handle == INVALID_HANDLE)
   {
      Print("Error creating Composite MA indicator handle: ", GetLastError());
      return INIT_FAILED;
   }
   
   Print("Composite MA indicator loaded successfully");
   return INIT_SUCCEEDED;
}

//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
{
   //--- Check if we have enough bars
   if(Bars(_Symbol, _Period) < 100) return;
   
   //--- Get Composite MA values
   double ma_current = GetCompositeMAValue(0);   // Current bar
   double ma_previous = GetCompositeMAValue(1);  // Previous bar
   
   if(ma_current == 0 || ma_previous == 0) return;
   
   //--- Get current price
   double current_price = SymbolInfoDouble(_Symbol, SYMBOL_ASK);
   
   //--- Trading logic
   bool buy_signal = ma_current > ma_previous && current_price > ma_current;
   bool sell_signal = ma_current < ma_previous && current_price < ma_current;
   
   //--- Check for existing positions
   bool has_buy = PositionExists(POSITION_TYPE_BUY);
   bool has_sell = PositionExists(POSITION_TYPE_SELL);
   
   //--- Execute trading signals
   if(buy_signal && !has_buy)
   {
      if(has_sell) ClosePosition(POSITION_TYPE_SELL);
      OpenPosition(POSITION_TYPE_BUY);
   }
   else if(sell_signal && !has_sell)
   {
      if(has_buy) ClosePosition(POSITION_TYPE_BUY);
      OpenPosition(POSITION_TYPE_SELL);
   }
}

//+------------------------------------------------------------------+
//| Get Composite MA value from indicator buffer                    |
//+------------------------------------------------------------------+
double GetCompositeMAValue(int shift)
{
   double ma_value[1];
   ArraySetAsSeries(ma_value, true);
   
   if(CopyBuffer(composite_ma_handle, 0, shift, 1, ma_value) < 1)
   {
      Print("Error copying Composite MA buffer: ", GetLastError());
      return 0;
   }
   
   return ma_value[0];
}

//+------------------------------------------------------------------+
//| Check if position exists                                        |
//+------------------------------------------------------------------+
bool PositionExists(ENUM_POSITION_TYPE type)
{
   for(int i = 0; i < PositionsTotal(); i++)
   {
      if(PositionGetSymbol(i) == _Symbol && PositionGetInteger(POSITION_MAGIC) == MagicNumber)
      {
         if(PositionGetInteger(POSITION_TYPE) == type)
            return true;
      }
   }
   return false;
}

//+------------------------------------------------------------------+
//| Open position                                                   |
//+------------------------------------------------------------------+
void OpenPosition(ENUM_POSITION_TYPE type)
{
   MqlTradeRequest request = {0};
   MqlTradeResult result = {0};
   
   request.action = TRADE_ACTION_DEAL;
   request.symbol = _Symbol;
   request.volume = LotSize;
   request.magic = MagicNumber;
   request.slippage = Slippage;
   
   if(type == POSITION_TYPE_BUY)
   {
      request.type = ORDER_TYPE_BUY;
      request.price = SymbolInfoDouble(_Symbol, SYMBOL_ASK);
   }
   else
   {
      request.type = ORDER_TYPE_SELL;
      request.price = SymbolInfoDouble(_Symbol, SYMBOL_BID);
   }
   
   if(!OrderSend(request, result))
   {
      Print("Error opening position: ", GetLastError());
   }
}

//+------------------------------------------------------------------+
//| Close position                                                  |
//+------------------------------------------------------------------+
void ClosePosition(ENUM_POSITION_TYPE type)
{
   for(int i = 0; i < PositionsTotal(); i++)
   {
      if(PositionGetSymbol(i) == _Symbol && PositionGetInteger(POSITION_MAGIC) == MagicNumber)
      {
         if(PositionGetInteger(POSITION_TYPE) == type)
         {
            MqlTradeRequest request = {0};
            MqlTradeResult result = {0};
            
            request.action = TRADE_ACTION_DEAL;
            request.symbol = _Symbol;
            request.volume = PositionGetDouble(POSITION_VOLUME);
            request.magic = MagicNumber;
            
            if(type == POSITION_TYPE_BUY)
            {
               request.type = ORDER_TYPE_SELL;
               request.price = SymbolInfoDouble(_Symbol, SYMBOL_BID);
            }
            else
            {
               request.type = ORDER_TYPE_BUY;
               request.price = SymbolInfoDouble(_Symbol, SYMBOL_ASK);
            }
            
            if(!OrderSend(request, result))
            {
               Print("Error closing position: ", GetLastError());
            }
            break;
         }
      }
   }
}

//+------------------------------------------------------------------+
//| Expert deinitialization function                                |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
   if(composite_ma_handle != INVALID_HANDLE)
   {
      IndicatorRelease(composite_ma_handle);
      Print("Composite MA indicator handle released");
   }
}
//+------------------------------------------------------------------+

Important Notes for EA Developers:

  1. Only visible timeframes have valid data - check the input parameters to see which timeframes are enabled

  2. Status values interpretation:

    • 1.0  = Up trend

    • -1.0  = Down trend

    • 0.0  = Flat

    • -2.0  = Not available/not calculated

  3. Price buffers contain the actual composite MA value for that specific timeframe

  4. The indicator only calculates for the last  DisplayBars  bars, so copying historical data beyond that range may return zeros.

Key Buffer Mapping for EA Developers:

  • Buffer 0: CompositeMABuffer - Main composite MA values

  • Buffer 1: ColorBuffer - Color index (0=Blue/Up, 1=Red/Down)

  • Buffers 2-22: Timeframe status buffers (M1 to MN1) - Values: 1=Up, -1=Down, 0=Flat, -2=N/A

  • Buffers 23-43: Timeframe price buffers - Composite MA values for each timeframe

This indicator provides robust multi-timeframe trend analysis that EA developers can leverage for sophisticated trading decision systems.

おすすめのプロダクト
RBreaker Gold Indicatorsは、金先物の短期日内取引戦略であり、トレンドフォローと日内反転の2つの取引手法を組み合わせたものです。トレンド相場での利益を捉えるだけでなく、相場が反転した際には迅速に利確し、その流れに沿ってポジションを反転させることができます。 この戦略は、アメリカの雑誌『Futures Truth』において、15年連続で最も収益性の高い取引戦略トップ10に選ばれた実績を持ち、非常に長いライフサイクルを誇り、現在も国内外で広く使用・研究されています。 本インディケーターは、2026年の金先物の値動きに対応し、14日間のATR指標に基づいて、ブレイクアウト係数A、観察係数B、リバーサル係数Rをより合理的な値で定義しています。非常に優れたインディケーターであり、安定的な年間収益を実現しています。ぜひおすすめします〜
Price Magnet — Price Density and Attraction Levels Indicator Price Magnet is a professional analytical tool designed to identify key support and resistance levels based on statistical Price Density. The indicator analyzes a specified historical period and detects price levels where the market spent the most time. These zones act as “magnets,” attracting price action or forming a structural base for potential reversals. Unlike traditional Volume Profile tools, Price Magnet focuses on price-time d
「調整可能なフラクタル」はフラクタル インジケーターの高度なバージョンで、非常に便利なトレーディング ツールです。 - ご存知のとおり、標準フラクタル MT5  インジケーターには設定がまったくありません。これはトレーダーにとって非常に不便です。 - 調整可能なフラクタルは、この問題を解決しました。必要な設定がすべて揃っています。 - インジケーターの調整可能な期間 (推奨値 - 7 以上)。 - 価格の高値/安値からの距離を調整可能。 - フラクタル矢印のデザインを調整可能。 - インジケーターにはモバイルおよび PC アラートが組み込まれています。 高品質のトレーディングロボットとインジケーターをご覧になるにはここをクリックしてください! これは、この MQL5 Web サイトでのみ提供されるオリジナル製品です。
Follow The Line MT5
Oliver Gideon Amofa Appiah
4.6 (35)
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. (you can change the colors). 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 powerful and reliable signals. Get them here: https://www.m
FREE
Donchian Channel DC is the indicator of Donchian Channels, that plots maximum and minimum values of a specific period, besides mean value line. It´s possible to configure simple period for analysis and the indicator will plot all three values. You can trade with this indicator as trend or reversal, according to each strategy. Do not let to test others indicators as soon as others expert advisors.
CosmiCLab SMC FIBO CosmiCLab SMC FIBO is a professional trading indicator designed for traders who use Smart Money Concepts (SMC), market structure analysis and Fibonacci retracement levels. The indicator automatically detects market swings and builds Fibonacci levels based on the latest impulse movement. It also identifies market structure changes such as BOS (Break of Structure) and CHOCH (Change of Character), helping traders understand the current market direction. CosmiCLab SMC FIBO also pr
HAS RSI Signal — SL/TP自動計算機能付き プロフェッショナル・トレンドインジケーター HAS RSI Signal は、信頼性の高いクラシックな手法と最新のノイズ除去アルゴリズムを融合させた強力なトレーディングツールです。 平均足スムーズド(Heiken Ashi Smoothed) と RSI を組み合わせることで、トレンドの転換点や買われすぎ・売られすぎ圏からの脱出タイミングを正確に捉え、明確なエントリーシグナルを提示します。 主な特徴: 二重のフィルタリング: 平均足スムーズドで市場の「ノイズ」を除去し、RSIで勢い(モメンタム)の強さを確認します。 損切り・利確ラインの自動計算: 単にシグナルを出すだけでなく、ボラティリティ( ATR )に基づいた最適なストップロス(SL) と テイクプロフィット(TP)を自動で算出します。 視覚的な分かりやすさ: シグナルはチャート上にカラーキャンドルとして表示されるため、一目でトレンドを把握でき、取引画面をスッキリと保てます。 充実の通知機能: アラート、音声、スマートフォンへのプッシュ通知機能を搭載。チャンスを逃すこと
BlueBoat – Prime Cycle is a technical indicator for MetaTrader 5 that visualizes market cycles based on the Fimathe cycle model (Marcelo Ferreira) . It identifies and displays historic and live cycle structures such as CA, C1, C2, C3, etc., helping traders understand the rhythm and timing of price movement across multiple sessions. This tool is ideal for manual analysis or as a supporting signal in discretionary strategies. Key Features Historical Cycle Analysis – Backtest and visualize as many
STRICTLY FOR BOOM INDEX ONLY!!!!! Here I bring the Maximum Trend Arrows OT1.0 MT5 indicator. This indicator is made up of a combination of different trend indicators for entries and exits, for entries an orange arrow will paint on the chart below the current market and a red flag for closing of trades and it produces buy arrows only. When the orange arrow appears, it will appear along with it's sound to notify you. The 1H timeframe is recommended, don't use it anywhere else than on the 1H timefr
Footprint は、オーダーフロー(Order Flow)と出来高分析のためのインジケーターです。 クラスターレベルでの市場構造の特定、アクティビティの高い主要ゾーンの発見、そして設定ウィンドウを毎回開くことなくチャート上で直接フィルター操作を行うのに役立ちます。 Footprintインジケーターの機能 Bid x Ask、Deltaのクラスターチャート; チャート上のコントロールパネル; フィルター調整用のスライダー; Absorption; Initiative; Stacked Imbalances; Big Trades; dPOC / Dynamic Point of Control; Delta; サイドマーケットプロファイル; 累積デルタ(Cumulative Delta)。 主な利点 高密度のティックフローに対する高速な計算とデータ表示; チャート内管理 — 設定を開くことなく、主要モードとフィルターを直接切り替え可能; 重要な価格レベルとクラスターを強調するためのフィルタリング; シグナルの視覚的ハイライト:吸収、主導権、インバランス、大口取引; 日、週、または現
Caicai L&S Yield Histogram Important Notice: This indicator is an integral tool of the automated EA Caicai Long and Short Pair Trading . This indicator visually displays the percentage deviation (Yield %) of a pair's current spread relative to its own historical mean. It is an excellent tool for quickly visualizing the gross financial potential of a market distortion in Long & Short operations. Main Features: Percentage Visualization: Understand the size of the distortion in palpable percentage
概要 このインジケーターは、クラシックな ドンチャンチャネル を強化したバージョンで、実践的なトレード機能を追加しています。 標準の3本線(上限、下限、中央線)に加え、 ブレイクアウト を検出し、チャート上に矢印で視覚的に表示します。また、チャートを見やすくするために、 現在のトレンド方向と逆側のラインのみを表示 します。 インジケーターの機能: 視覚的シグナル :ブレイクアウト時にカラフルな矢印を表示 自動通知 :ポップアップ、プッシュ通知、Eメール RSIフィルター :市場の相対的な強弱に基づいてシグナルを検証 カスタマイズ可能 :色、ラインの太さ、矢印コード、RSI閾値など 動作原理 ドンチャンチャネルは次のように計算します: 上限線 :直近N本のクローズ済みローソク足の最高値 下限線 :直近N本のクローズ済みローソク足の最安値 中央線 :最高値と最安値の平均値 上方ブレイクアウト は終値が上限線を超えたときに発生し、 下方ブレイクアウト は終値が下限線を下回ったときに発生します。 インジケーターは以下を行います: 3本のドンチャンラインを描画 方向転換後の最初のブレイクアウト
FREE
What Is Trend Master Pro? Trend Master Pro   is a professional-grade trend trading indicator built for MetaTrader 5. It was designed with one goal in mind — to keep you on the right side of the market at all times by combining three powerful technical tools into a single, clean, easy-to-read display directly on your price chart. Instead of cluttering your screen with multiple separate indicators, Trend Master Pro fuses an   EMA Ribbon trend filter , a   ZigZag swing point engine , and a   breako
This indicator can be considered as a trading system. It offers a different view to see the currency pair: full timeless indicator, can be used for manual trading or for automatized trading with some expert advisor. When the price reaches a threshold a new block is created according to the set mode. The indicator beside the Renko bars, shows also 3 moving averages. Features renko mode median renko custom median renko 3 moving averages wicks datetime indicator for each block custom notification
Crypto_Forex MT5用インジケーター「ハンマー&シューティングスターパターン」。リペイント不要、遅延なし。 - インジケーター「ハンマー&シューティングスターパターン」は、プライスアクショントレードに非常に強力なインジケーターです。 - このインジケーターは、チャート上で強気のハンマーパターンと弱気のシューティングスターパターンを検出します。 - 強気のハンマーパターン:チャート上に青い矢印シグナルを表示します(画像参照)。 - 弱気のシューティングスターパターン:チャート上に赤い矢印シグナルを表示します(画像参照)。 - PC, Mobile alerts. - インジケーター「ハンマー&シューティングスターパターン」は、サポートレベル/レジスタンスレベルと組み合わせるのに最適です。 高品質のトレーディングロボットとインジケーターをご覧になるにはここをクリックしてください! これは、このMQL5ウェブサイトでのみ提供されるオリジナル製品です。
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
This indicator is a zero-lag indicator and displays  strength of trend change . True Trend  Oscillator Pro works best in combination with True Trend Moving Average Pro that displays exact trend as is. Oscillator value is exact price change in given direction of the trend. True Trend Moving Average Pro: https://www.mql5.com/en/market/product/103586 If you set PERIOD input parameter to 1 this indicator becomes a sharpshooter for binary options. Developers can use True Trend Oscillator in Exper
FREE
Potential Reversal Price (PRP) Indicator - Ultimate Sniper Entries for XAUUSD Discounted   Price   !!     Secure your lifetime access   now   before it switches to   subscription-only ! Welcome to the Potential Reversal Price (PRP) Indicator , your ultimate trading tool designed to catch high-probability market reversals with extreme precision. Built for serious traders who demand accuracy, the PRP Indicator combines advanced market structure analysis with momentum exhaustion to pinpoint the exa
# DRAWDOWN INDICATOR V4.0 - The Essential Tool to Master Your Trading ## Transform Your Trading with a Complete Real-Time Performance Overview In the demanding world of Forex and CFD trading, **knowing your real-time performance** isn't a luxury—it's an **absolute necessity**. The **Drawdown Indicator V4.0** is much more than a simple indicator: it's your **professional dashboard** that gives you a clear, precise, and instant view of your trading account status. --- ## Why This Indicator
Gioteen Volatility Index (GVI) - your ultimate solution to overcoming market unpredictability and maximizing trading opportunities. This revolutionary indicator helps you in lowering your losing trades due to choppy market movements. The GVI is designed to measure market volatility, providing you with valuable insights to identify the most favorable trading prospects. Its intuitive interface consists of a dynamic red line representing the volatility index, accompanied by blue line that indicate
MercariaPattern1-2-3 відстежує рух ціни, знаходить трьоххвильові структури 1-2-3 та підсвічує момент, коли сценарій підтверджується пробоєм ключового рівня. MercariaPattern1-2-3 tracks price movement, detects three-leg 1-2-3 structures and highlights the moment when the scenario is confirmed by a key level breakout. Індикатор збирає локальні свінги в компактну фігуру 0–1–2–3 , чекає підтвердженого пробою та будує стрілку входу з готовими рівнями SL/TP. The indicator combines local swings into a
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. The indicator OrderBook Cumulative Indicator accumulates market book data online and visualizes them on the chart. In addition, the indicator can show the market
The Half ma arrow indicator for the MetaTrader 5 trading terminal is a simple but effective tool that gives a signal about a change in the current trend. The Half ma indicator looks like a solid dynamic line that changes color at the points where the trend changes. At these points, the indicator draws arrows of the corresponding color and direction.The Half ma arrow indicator for the MT5 terminal is not an independent source of input signals. It will be most effective to use it as a trend filte
The Penta-O is a 6-point retracement harmonacci pattern which usually precedes big market movements. Penta-O patterns can expand and repaint quite a bit. To make things easier this indicator implements a twist: it waits for a donchian breakout in the right direction before signaling the trade. The end result is an otherwise repainting indicator with a very reliable trading signal. The donchian breakout period is entered as an input. [ Installation Guide | Update Guide | Troubleshooting | FAQ | A
FREE
これはほぼ間違いなく、MetaTraderプラットフォームで見つけることができる最も完全な調和価格形成自動認識インジケーターです。 19種類のパターンを検出し、フィボナッチプロジェクションをあなたと同じように真剣に受け止め、潜在的逆転ゾーン(PRZ)を表示し、適切なストップロスとテイクプロフィットレベルを見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 19の異なる調和価格形成を検出します プライマリ、派生および補完フィボナッチ投影(PRZ)をプロットします 過去の価格行動を評価し、過去のすべてのパターンを表示します この指標は、独自の品質とパフォーマンスを分析します 適切なストップロスとテイクプロフィットのレベルを表示します ブレイクアウトを使用して適切な取引を通知します すべてのパターン比をグラフにプロットします 電子メール/音声/視覚アラートを実装します スコット・M・カーニーの本に着想を得て、この指標は最も純粋で急を要するトレーダーのニーズを満たすように設計されています。ただし、トレードを容易にする
プレミアムレベルは、正しい予測の精度が80%を超える独自の指標です。 この指標は、最高のトレーディングスペシャリストによって2か月以上テストされています。 あなたが他のどこにも見つけられない作者の指標! スクリーンショットから、このツールの正確さを自分で確認できます。 1は、1キャンドルの有効期限を持つバイナリーオプションの取引に最適です。 2はすべての通貨ペア、株式、商品、暗号通貨で機能します 手順: 赤い矢印が表示されたらすぐにダウントレードを開き、青い矢印が表示されたら閉じます。青い矢印の後に開くこともできます。 試してテストしてください!推奨設定はデフォルトです! 日足チャートで最高の精度を示します! インディケータは、2600 Pipsの収益性に対して、約10Pipsという非常に小さなマージンを使用します。
Auto Optimized RSI   は、正確な売買シグナルを提供するために設計された、使いやすいスマートな矢印インジケーターです。過去のデータを使ったトレードシミュレーションに基づき、各通貨ペアや時間足に最適なRSIの買い/売りレベルを自動で見つけ出します。 このインジケーターは、独立したトレードシステムとしても、既存の戦略の一部としても使用できます。特に短期トレーダーにとって便利なツールです。 従来のRSI(70/30など)の固定レベルとは異なり、 Auto Optimized RSI   はリアルな価格の動きとバックテスト結果に基づき、ダイナミックにレベルを調整します。勝率、ドローダウン、平均利益/損失といった重要な統計をモニターし、現在の市場に適応して、本当に機能するシグナルを提供します。 RSIが最適化されたレベルをクロスすると、チャート上に買い・売りの矢印が表示され、成功率の高いエントリーポイントを見つけるのに役立ちます。 ご購入後にご連絡いただければ、追加のツールや特別なトレードのヒントを無料でお渡しいたします! 皆様のトレードが成功しますように!
SMC Venom Model BPR インジケーターは、スマート マネー (SMC) コンセプトで取引するトレーダー向けのプロフェッショナル ツールです。価格チャート上の 2 つの主要なパターンを自動的に識別します。 FVG   (フェアバリューギャップ) は、3 本のローソク足の組み合わせで、最初のローソク足と 3 番目のローソク足の間にギャップがあります。ボリュームサポートのないレベル間のゾーンを形成し、価格修正につながることがよくあります。 BPR   (バランス価格範囲) は、2 つの FVG パターンの組み合わせで、「ブリッジ」を形成します。これは、価格がボリュームアクティビティの少ない動きで動くときに、ブレイクアウトしてレベルに戻るゾーンで、ローソク足の間にギャップを作成します。 これらのパターンは、大規模な市場プレーヤーと一般参加者の相互作用が発生するチャート上のボリュームと価格動向の分析に基づいて、トレーダーが主要なサポート/レジスタンス レベル、ブレイクアウト ゾーン、エントリ ポイントを識別するのに役立ちます。 インジケーターは、長方形と矢印の形でパターンを視覚
FlatBreakout MT5 (Free Version) Flat Range Detector and Breakout Panel for MT5 — GBPUSD Only FlatBreakout MT5   is the free version of the professional FlatBreakoutPro MT5 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 MT5 and test breakout signals on a live market without limitations. Who Is This Product For? For traders who prefer to trade breakout of
FREE
High Low Open Close
Alexandre Borela
4.98 (44)
このプロジェクトが好きなら、5つ星レビューを残してください。 このインジケータは、指定されたためのオープン、ハイ、ロー、クローズ価格を描画します 特定のタイムゾーンの期間と調整が可能です。 これらは、多くの機関や専門家によって見られた重要なレベルです トレーダーは、彼らがより多くのかもしれない場所を知るために有用であり、 アクティブ。 利用可能な期間は次のとおりです。 前の日。 前週。 前の月。 前の四半期。 前年。 または: 現在の日。 現在の週。 現在の月。 現在の四半期。 現年。
FREE
このプロダクトを購入した人は以下も購入しています
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
Quantum TrendPulse を ご紹介します。これは、   SuperTrend   、   RSI   、および Stochastic のパワーを 1 つの包括的なインジケーターに組み合わせて、取引の可能性を最大限に引き出す究極の取引ツールです。精度と効率を求めるトレーダー向けに設計されたこのインジケーターは、市場のトレンド、勢いの変化、最適なエントリー ポイントとエグジット ポイントを自信を持って特定するのに役立ちます。 主な特徴: SuperTrend 統合: 現在の市場動向に簡単に追従し、収益性の波に乗ることができます。 RSI精度: 買われすぎと売られすぎのレベルを検出し、市場の反転のタイミングに最適で、SuperTrendのフィルターとして使用されます。 確率的精度: 確率的振動を活用して、変動の激しい市場で隠れたチャンスを見つけます。SuperTrend のフィルターとして使用されます。 マルチタイムフレーム分析:   M5 から H1 または H4 まで、さまざまなタイムフレームで市場を常に把握します。 カスタマイズ可能なアラート: カスタム取引条件が満たされ
このインジケーターを購入された方には、以下の特典を 無料 で提供しています: 各トレードを自動で管理し、ストップロスとテイクプロフィットを設定し、戦略ルールに基づいてポジションを決済する補助ツール 「Bomber Utility」 様々な銘柄に合わせたインジケーターの設定ファイル(セットファイル) 「最小リスク」、「バランスリスク」、「待機戦略」 の3つのモードで使用できる Bomber Utility 用の設定ファイル このトレーディング戦略をすぐに導入・設定・開始できる ステップバイステップのビデオマニュアル ご注意: 上記の特典を受け取るには、MQL5のプライベートメッセージシステムを通じて販売者にご連絡ください。 オリジナルのカスタムインジケーター 「Divergence Bomber(ダイバージェンス・ボンバー)」 をご紹介します。これは、MACDのダイバージェンス(乖離)戦略に基づいた 「オールインワン」型のトレーディングシステム です。 このテクニカルインジケーターの主な目的は、価格とMACDインジケーターの間に発生するダイバージェンスを検出 し、将来の価格の動きを示す
PrimeScalping is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates — all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or e
開発者からのお知らせ: 149ドル で購入できるライセンスは残り 10つ です。売り切れ後、価格は 169ドル に変更されます。 M1 Quantum は、M1専用のプロフェッショナルトレーディングシステムであり、ストップロス、テイクプロフィット、スマートな資金管理を内蔵した、迅速かつ正確な取引シグナルを提供します。 M1 Quantum は、 連続勝利 に重点を置いて口座を素早く成長させるために設計されたプロフェッショナルな資金管理を備えています。 M1 Quantum インジケーター の主な特徴 M1時間足 およびすべての 主要通貨ペア 向けに設計 すべての取引にストップロスとテイクプロフィットを設定 資金管理 を実装し、トレーダーが簡単に取引できるようサポート 高い勝率と高い 連続勝利 リペイントなし、遅延なし あらゆるトレーダーにとって理解しやすい M1 Quantum を使用するには、 M1 Quantum Assistant が必要です。この強力なツールは、M1 Quantum をご購入いただいたすべてのお客様に 無料 で提供されています。 M1 Quantum Assi
ご紹介     Quantum Breakout PRO は 、ブレイクアウト ゾーンの取引方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。     クォンタム ブレイクアウト プロ   は、革新的でダイナミックなブレイクアウト ゾーン戦略により、あなたのトレーディングの旅を新たな高みに押し上げるように設計されています。 クォンタム ブレイクアウト インジケーターは、5 つの利益ターゲット ゾーンを備えたブレイクアウト ゾーン上のシグナル矢印と、ブレイクアウト ボックスに基づいたストップロスの提案を提供します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック 重要!購入後、インストールマニュアルを受け取るためにプライベートメッセージを送ってください。 推奨事項: 時間枠: M15 通貨ペア: GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD アカウントの種類: ECN、Raw、またはスプレッドが非常に低い R
この製品は 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 などの高度な取引アイデアを組み合わせています。このインジケ
ARIPoint
Temirlan Kdyrkhan
1 (1)
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2:MT5向けシンセティック・フラクタル構造分析と確認済みエントリー 概要 Azimuth Pro は Merkava Labs によるマルチレベルスイング構造インジケーターです。4つのネストされたスイングレイヤー、スイングアンカーVWAP、ABCパターン検出、3タイムフレーム構造フィルタリング、そして確定バーでの確認済みエントリー — 1つのチャートで、ミクロスイングからマクロサイクルまでを網羅するワークフロー。 これはブラインドシグナル製品ではありません。ロケーション、コンテキスト、タイミングを重視するトレーダーのための構造ファーストワークフローです。 V2発売記念オファー — Azimuth Pro V2をUSD 399で(次の100本)。最終価格:USD 499。 1. V2での変更点 シンセティック・マルチタイムフレームエンジン 上位タイムフレーム分析をMeridian Proと同じ独自のシンセティックアーキテクチャで一から再構築。よりクリーンなHTFコンテキスト、安定したライブ動作、従来のMTF同期問題なし。シンセティックエンジンは 固定比率タ
GEM Signal Pro GEM Signal Pro は、MetaTrader 5 向けのトレンドフォロー型インジケーターです。より明確なシグナル、より整理されたトレードセットアップ、そして実用的なリスク管理をチャート上で確認したいトレーダーのために設計されています。 単純な矢印だけを表示するのではなく、GEM Signal Pro はトレード全体の考え方を、より見やすく分かりやすい形で表示します。条件が確認されると、インジケーターはエントリー価格、ストップロス、利確目標をチャート上に表示し、トレードセットアップをより効率的に確認できるようにします。 動作の仕組み このインジケーターは、まず内部ロジックに基づいて有効なシードシグナルを検出します。 確認条件が満たされると、GEM Signal Pro はチャート上に完全なセットアップを表示します。これにより、トレーダーはトレード構造をより明確に把握し、手作業による分析を減らすことができます。 チャート上のトレードレベル 確認済みシグナルに対して、GEM Signal Pro は以下を表示できます。 エントリー価格 ストップロス テ
KURAMA GOLD SIGNAL PRO(MT5版)— 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 ゴールドトレーダーのコミュニティで実際に使用され、精度と使いやすさで高く評価されています。 あな
Quant Direction は、3次元の市場分析ツールです。完全に客観的なアルゴリズムベースの市場分析を提供し、様々なパラメータにわたる正確なパーセンテージ偏差を同時に算出します。高度なAI搭載モデリングツールで開発され、厳密なテストを経て開発されたこのアルゴリズムは、かつてない精度で市場を分析するように設計されています。プラットフォーム上では、あらゆる通貨ペアや金融商品を分析できます。 短期取引、デイトレード、スイングトレードなど、どのような取引スタイルに も、Quant Directionは最適な選択肢です。 オペレーターの本当の利点 Quant Directionの真の利点は、感情、眼精疲労、過剰分析を完全に排除できる点にあります。方向性を探るために何十ものチャートを手作業で精査したり、自分の好みを常に疑ったりする必要がなくなります。このシステムは、8つの時間間隔(5ヶ月から月単位まで)をミリ秒単位で処理します。あらゆる瞬間に市場を支配している主体を正確に明らかにし、常に成功確率が最も高い方向で取引できるようにします。 市場分析の3つの側面 このアルゴリズムは市場を3つの
優れたテクニカルインジケーター「Grabber」をご紹介します。これは、すぐに使える「オールインワン」トレーディング戦略として機能します。 ひとつのコードに、市場のテクニカル分析ツール、取引シグナル(矢印)、アラート機能、プッシュ通知が強力に統合されています。 このインジケーターを購入された方には、以下の特典を無料で提供します: Grabberユーティリティ:オープンポジションを自動で管理するツール ステップバイステップのビデオマニュアル:インジケーターのインストール、設定、取引方法を解説 カスタムセットファイル:インジケーターをすばやく自動設定し、最大限の成果を出すための設定ファイル 他の戦略はもう忘れてください!Grabberだけが、あなたを新たなトレードの高みへと導いてくれるのです。 Grabber戦略の主な特徴: 推奨タイムフレーム:M5〜H4 対応通貨ペア・資産:どれでも使用可能ですが、私が実際に検証した以下を推奨します(GBPUSD、GBPCAD、GBPCHF、AUDCAD、AUDUSD、AUDSGD、AUDCHF、NZDUSD、NZDCAD、EURCAD、EURUSD、E
SmartScalping is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates — all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or e
RelicusRoad Pro: 定量的市場オペレーティングシステム 【期間限定】無制限アクセス 70% OFF - 2,000人超のトレーダーと共に なぜ多くのトレーダーは「完璧な」インジケーターを使っても失敗するのでしょうか? それは、文脈を無視して 単一の概念 だけでトレードしているからです。文脈のないシグナルは単なるギャンブルです。勝ち続けるには、 根拠の重なり(コンフルエンス) が必要です。 RelicusRoad Proは単なる矢印インジケーターではありません。完全な 定量的市場エコシステム です。独自のボラティリティモデリングを用いて、価格が推移する「適正価値の道(Fair Value Road)」をマッピングし、ノイズと真の構造的ブレイクを判別します。 推測はやめましょう。機関投資家レベルの「ロード・ロジック」でトレードを。 コアエンジン:「Road」アルゴリズム システムの中心となる Road Algo は、市場環境にリアルタイムで適応するダイナミックなボラティリティチャネルです。 安全ライン(平衡点) と、価格が数学的に反転しやすい 拡張レベル を投影します。 Si
This indicator automatically detects  internal & swing market structure, Breaker block, Strong Imbalance, Liquidity Void, Volume imbalance. Features Full internal & swing market structure labeling in real-time Breaker block Strong Imbalance Liquidity Void volume imbalance After purchasing the indicator, the full source code is provided, and via indicator buffers it can be easily integrated into your Expert Advisors (EAs) for automated trading strategies.
Gladiator Indicator: Conquer the Markets Step into the trading arena with the Gladiator Indicator, a robust and highly effective trading tool designed exclusively for MQL5. Built for traders who want clear, actionable insights, Gladiator cuts through market noise to deliver precise Buy and Sell signals right on your charts. Whether you are a beginner looking for guidance or an experienced trader seeking a reliable confirmation tool, Gladiator provides the edge you need to battle the markets wi
BTMM State Engine Pro is a MetaTrader 5 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
MasterTrend Indicator for MT5 A powerful trend-following and signal-evaluation tool MasterTrend   is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking wit
Berma Bands
Muhammad Elbermawi
5 (9)
Berma Bands (BBs) インジケーターは、市場のトレンドを特定して活用したいトレーダーにとって貴重なツールです。価格と BBs の関係を分析することで、トレーダーは市場がトレンド段階にあるか、レンジ段階にあるかを判断できます。 詳細については、[ Berma Home Blog ] をご覧ください。 バーマ バンドは、上部バーマ バンド、中部バーマ バンド、下部バーマ バンドの 3 つの異なる線で構成されています。これらの線は価格の周りにプロットされ、全体的な傾向に対する価格の動きを視覚的に表します。これらのバンド間の距離から、ボラティリティや潜在的な傾向の反転についての洞察を得ることができます。 バーマ バンドの線がそれぞれ離れると、市場が横ばいまたはレンジ相場の期間に入っていることを示すことがよくあります。これは、明確な方向性の偏りがないことを示しています。トレーダーは、これらの期間中にトレンドを特定するのが難しいと感じる可能性があり、より明確なトレンドが出現するまで待つ場合があります。 バーマ バンドの線が 1 本の線に収束すると、強いトレンド環境の兆候となること
マーケットメーカーのためのツール。 Meravith は次の機能を提供します: すべての時間足を分析し、現在有効なトレンドを表示します。 強気と弱気の出来高が等しくなる流動性ゾーン(出来高均衡)を強調表示します。 異なる時間足のすべての流動性レベルをチャート上に直接表示します。 テキスト形式の市場分析を生成し、参考情報として表示します。 現在のトレンドに基づいて目標値、サポートレベル、ストップロスを計算します。 取引のリスクリワード比を算出します。 口座残高に基づいてポジションサイズを計算し、潜在的な利益を推定します。 また、市場に大きな変化があった場合には警告を表示します。 インジケーターの主要ライン: 強気/弱気の出来高エグゾーストライン ― 目標値として機能します。 市場のトレンドを示すライン。市場が強気か弱気かによって色が変わり、トレンドのサポートとして機能します。主にその色が市場センチメントを示します。 出来高均衡ライン(Eq)。Eq(Volume Equilibrium)ラインはシステムの中核です。これは買い手と売り手の出来高のバランスポイントを表します。市場の流動性を示し
初心者やエキスパートトレーダーに最適なソリューション! このインジケーターは、独自の機能と新しい計算式を取り入れた、ユニークで高品質、かつ手頃な価格のトレーディングツールです。たった1枚のチャートで28の為替ペアの通貨強度を読み取ることができます。新しいトレンドやスキャルピングチャンスの引き金となるポイントを正確に特定することができるので、あなたのトレードがどのように改善されるか想像してみてください。 ユーザーマニュアルはこちら  https://www.mql5.com/en/blogs/post/697384 これが最初の1本、オリジナルだ! 価値のないクローンを買わないでください。 特別な サブウィンドウの矢印で強い通貨の勢いを表示 GAPがあなたのトレードを導く! 基準通貨や気配値が売られすぎ・買われすぎのゾーン(外相フィボナッチレベル)にあるとき、個別チャートのメインウィンドウに警告表示。 通貨がレンジの外側から反落した場合、プルバック/リバーサルのアラート。 クロスパターンの特別なアラート 複数の時間枠を選択可能で、トレンドを素早く確認できます。通貨強度のライン
Valtor Edge Pro – Precision Gold Signal Indicator with 3-Level Take-Profit & Live Stats Dashboard Valtor Edge Pro is a non-repaint MetaTrader 5 indicator built exclusively for XAUUSD (Gold) . It marks high-probability buy/sell signals directly on your chart — each one with a defined stop-loss and a complete three-level take-profit map (TP1 / TP2 / TP3) . Designed for disciplined traders, it pairs a clean trend-following signal engine with a professional sidebar dashboard, so you always see you
Presenting one-of-a-kind Gann Indicator for XAUUSD IQ Gold Gann Levels is a non-repainting, precision tool designed exclusively for XAUUSD intraday trading. It uses W.D. Gann’s square root method to plot real-time support and resistance levels, helping traders spot high-probability entries with confidence and clarity. William Delbert Gann (W.D. Gann) was an exceptional market analyst whose trading technique was based on a complex blend of mathematics, geometry, astrology, and ancient calculation
Meridian Pro
Ottaviano De Cicco
5 (2)
Meridian Pro 2.00:MT5向けプロ仕様マルチタイムフレーム・トレンドマトリクス Meridian Pro 2.00 は、MetaTrader 5 向けのプロ仕様の適応型トレンドマトリクスです。オリジナルの Meridian トレンドエンジン、クリーンなチャート ribbon、確定足ベースのシグナル矢印、8時間足 dashboard、Fuel momentum、weighted consensus、synthetic HTF processing、そしてチャート上に直接表示される上位足コンテキストラインを統合します。 目的はシンプルです。現在のトレンド、マルチタイムフレーム構造、強度、momentum、EA-ready 状態を、複数チャートに無関係なインジケータを重ねるのではなく、1つの整理された workflow で読むことです。 Meridian Pro の違い 1つの適応型エンジン - 同じ volatility-aware Meridian ロジックを M1 から W1 まで適用します。 Synthetic HTF architecture - 上位足行は下位足デ
Bill Williams Advanced is designed for automatic chart analysis using Bill Williams' "Profitunity" system. The indicator analyzes four timeframes at once. Manual (Be sure to read before purchasing) Advantages 1. Analyzes the chart using Bill Williams' "Profitunity" system. Signals are displayed in a table in the corner of the screen and on the price chart. 2. Finds all known AO and AC signals, as well as zone signals. Equipped with a trend filter based on the Alligator. 3. Finds "Divergence Bar
初心者やエキスパートトレーダーに最適なソリューション! このインジケータは、独自の機能と秘密の数式を組み込んだ、ユニークで高品質かつ手頃な価格のトレーディングツールです。たった1枚のチャートで28の通貨ペアのアラートを表示します。新しいトレンドやスキャルピングチャンスの引き金となるポイントを正確に把握することができるので、あなたのトレードがどのように改善されるか想像してみてください! 新しい基本的なアルゴリズムに基づいて構築されているため、潜在的な取引の特定と確認がより簡単になります。これは、通貨の強さや弱さが加速しているかどうかをグラフィカルに表示し、その加速のスピードを測定するためです。加速すると物事は明らかに速く進みますが、これはFX市場でも同じです。つまり、反対方向に加速している通貨をペアにすれば、利益を生む可能性のある取引を特定することができるのです。 通貨の勢いを示す縦の線と矢印は、あなたの取引の指針となるでしょう。 ダイナミックマーケットフィボナッチ23レベルはアラートトリガーとして使用され、市場の動きに適応します。もしインパルスが黄色のトリガーラインに当たった場
現在33%オフ 初心者にもエキスパートトレーダーにも最適なソリューション このインジケーターは独自の機能と新しい公式を多数内蔵しており、ユニークで高品質かつ手頃な取引ツールです。このアップデートでは、2つの時間枠ゾーンを表示できるようになります。より長いTFだけでなく、チャートTFとより長いTF(ネストゾーンを表示)の両方を表示できます。すべてのSupply Demandトレーダーの皆さんのお気に召すはずです。:) 重要情報の公開 Advanced Supply Demandの可能性を最大化するには、 https://www.mql5.com/ja/blogs/post/720245 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適な
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all possible timeframes. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all possible timeframes 3. Search for patterns of all possible sizes. From the smallest to the largest 4. All fou
ARICoin is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cust
作者のその他のプロダクト
Simplify your trading experience with Trend Signals Professional indicator. Easy trend recognition. Precise market enter and exit signals. Bollinger Bands trend confirmation support. ATR-based trend confirmation support. (By default this option is OFF to keep interface clean. You can turn it ON in indicator settings.) Easy to spot flat market conditions with  ATR-based trend confirmation  lines. Highly customizable settings. Fast and responsive. Note: Do not confuse ATR-based trend confirmation
FREE
Harmonica Basic
Pavel Golovko
4.67 (3)
Harmonica Basic is a free expert advisor that opens a mesh of positions. It does not close any positions, and its up to you to manually close profitable positions at your desire. There are no options to configure. Distance between positions is automatically set based on market conditions. The higher the timeframe - the wider the distance between positions.
FREE
One of the best trend indicators available to the public. Trend is your friend. Works on any pair, index, commodities, and cryptocurrency Correct trend lines Multiple confirmation lines Bollinger Bands trend confirmation Trend reversal prediction Trailing stop loss lines Scalping mini trends Signals Alerts and Notifications Highly flexible Easy settings Let me know in the reviews section what you think about it and if there are any features missing. Tips: Your confirmation line will predict tre
FREE
A professional fully customizable pull back strategy expert advisor with optional Martingale features. Opens and closes orders above and below moving average based on your settings. Successfully tested on all major Forex pairs, Commodities, Volatility Indexes, Synthetic Indexes. This Expert Advisor can work with pretty much any index available on MT5 platform. Works good on any time frame, but I'd suggest to run it on H1. I've tried to keep Expert Advisor settings as simple as possible to mini
FREE
This indicator is a zero-lag indicator and displays  strength of trend change . True Trend  Oscillator Pro works best in combination with True Trend Moving Average Pro that displays exact trend as is. Oscillator value is exact price change in given direction of the trend. True Trend Moving Average Pro: https://www.mql5.com/en/market/product/103586 If you set PERIOD input parameter to 1 this indicator becomes a sharpshooter for binary options. Developers can use True Trend Oscillator in Exper
FREE
This indicator is a zero-lag indicator and displays exact trend as is. True Trend Moving Average Pro works best in combination with  True Trend Oscillator Pro that displays strength of trend change. True Trend Oscillator Pro: https://www.mql5.com/en/market/product/103589 If you set PERIOD input parameter to 1 this indicator becomes a sharpshooter for binary options. Default input parameters: TT_Period = 10; TT_Meth = MODE_SMA; TT_Price = PRICE_MEDIAN; Before you buy this product, please do t
FREE
During volatile market conditions brokers tend to increase spread. int OnCalculate ( const int rates_total,                  const int prev_calculated,                  const datetime &time[],                  const double &open[],                  const double &high[],                  const double &low[],                  const double &close[],                  const long &tick_volume[],                  const long &volume[],                  const int &spread[])   {    int spread_array[];   
FREE
Check out the new pull back strategy Expert Advisor that I'm working on right now. Get it while it's still free! https://www.mql5.com/en/market/product/97610 Before you buy this expert adviser I strongly recommend to download FREE DEMO and test it in your Strategy tester few times. When you are satisfied with the results, you can come back to this page to buy full version for your real account. This expert adviser was designed specifically for Volatility 75 index ( VIX75 ), also shows outst
フィルタ:
レビューなし
レビューに返信