• 概要
  • レビュー
  • コメント
  • 最新情報

Murray Math Levels several oktavs

This indicator calculates and displays Murrey Math Lines on the chart. 

The differences from the free version:

It allows you to plot up to 4 octaves, inclusive (this restriction has to do with the limit imposed on the number of indicator buffers in МТ4), using data from different time frames, which enables you to assess the correlation between trends and investment horizons of different lengths.

It produces the results on historical data. A publicly available free version with modifications introduced by different authors, draws the results on history as calculated on the current bar, which prevents it from being used for accurate analysis of the price movement in the past and complicates determination of the possible direction of the price at the current price range. There are versions that show values based on history but I don't know how accurate they are.

The calculated values can be obtained from indicator buffers using the iCustom() function:

  • indicator line with 0 index contains line 4/8 of the octave set by the Р0 variable value selected on a time frame set by the BaseTF_P0 variable with the selection criterion specified by the BaseMGTD_P0 variable.
    Obtaining the value of this level on the zero bar: double p0_4_8 = iCustom(NULL,0,"ivgMMLevls",..list of parameters..,0,0);
    On the previous bar (number N): double p0_4_8_prev = iCustom(NULL,0,"ivgMMLevls",..list of parameters..,0,N); 
  • indicator line with index 1 contains the grid step of the same octave.
    Obtaining the value of this level on the zero bar: double p0_step = iCustom("ivgMMLevls",..list of parameters..,1,0); 
    On the previous bar (number N):  double p0_step_prev = iCustom("ivgMMLevls",..list of parameters..,1,N);   

A similar approach is used to access data of the other octaves:

  • indicator line with index 2 - line 4/8, for octave Р1
  • indicator line with index 3 - grid step, for octave Р1
  • indicator line with index 4 - line 4/8, for octave Р2
  • indicator line with index 5 - grid step, for octave Р2
  • indicator line with index 6 - line 4/8, for octave Р3
  • indicator line with index 7 - grid step, for octave Р3

This is for those who want to use these levels in Expert Advisors.

An example of the script that obtains data for octave Р0 on the zero bar:

input string s0="Latest Bar Number to calculate >= 0 ";
input int StepBack = 0;
input string s01="Culc Oktavs Count - max 4";
input int _pCNT =  4;
input string s1="History Bars Count";
input int BarsCNT =  150;
input string s2 = "Parameters group for configuring";
input string s20 = "Murray Math Diapazone new search algorithm";
input string s21 = "!!! If you are unsure, do not change these settings !";
input int P0 =    8;
input int P1 =   16;
input int P2 =   32;
input int P3 =  128;
input int BaseTF_P0    = 60;
input int BaseTF_P1    = 60;
input int BaseTF_P2    = 60;
input int BaseTF_P3    = 60;
input int BaseMGTD_P0 =  1;
input int BaseMGTD_P1 =  1;
input int BaseMGTD_P2 =  1;
input int BaseMGTD_P3 =  1;
input string s22 = "**** End Of Parameters group for configuring *** ";
input string s3 = "Line Colors adjustment";    
input color  mml_clr_m_2_8 = White;       // [-2]/8
input color  mml_clr_m_1_8 = White;       // [-1]/8
input color  mml_clr_0_8   = Aqua;        //  [0]/8
input color  mml_clr_1_8   = Yellow;      //  [1]/8
input color  mml_clr_2_8   = Red;         //  [2]/8
input color  mml_clr_3_8   = Green;       //  [3]/8
input color  mml_clr_4_8   = Blue;        //  [4]/8
input color  mml_clr_5_8   = Green;       //  [5]/8
input color  mml_clr_6_8   = Red;         //  [6]/8
input color  mml_clr_7_8   = Yellow;      //  [7]/8
input color  mml_clr_8_8   = Aqua;        //  [8]/8
input color  mml_clr_p_1_8 = White;       // [+1]/8
input color  mml_clr_p_2_8 = White;       // [+2]/8
input string s4 = "Line thickness adjustment";  
input int    mml_wdth_m_2_8 = 2;        // [-2]/8
input int    mml_wdth_m_1_8 = 1;        // [-1]/8
input int    mml_wdth_0_8   = 2;        //  [0]/8
input int    mml_wdth_1_8   = 1;        //  [1]/8
input int    mml_wdth_2_8   = 1;        //  [2]/8
input int    mml_wdth_3_8   = 1;        //  [3]/8
input int    mml_wdth_4_8   = 2;        //  [4]/8
input int    mml_wdth_5_8   = 1;        //  [5]/8
input int    mml_wdth_6_8   = 1;        //  [6]/8
input int    mml_wdth_7_8   = 1;        //  [7]/8
input int    mml_wdth_8_8   = 2;        //  [8]/8
input int    mml_wdth_p_1_8 = 1;        // [+1]/8
input int    mml_wdth_p_2_8 = 2;        // [+2]/8
input string s5 = "Font adjustment";  
input int    dT = 7;
input int    fntSize  =  7;
input string s6 = "Latest Bar Marker adjustment";  
input color  MarkColor   = Blue;
input int    MarkNumber  = 217;

int start()
{
    double p0_4_8 = iCustom(NULL,0,"ivgMMLevls",
    s0,StepBack,s01,_pCNT,s1,BarsCNT,
    s2,s20,s21,P0,P1,P2,P3,BaseTF_P0,BaseTF_P1,BaseTF_P2,BaseTF_P3,
    BaseMGTD_P0,BaseMGTD_P1,BaseMGTD_P2,BaseMGTD_P3,s22,
    s3,
    mml_clr_m_2_8,mml_clr_m_1_8,mml_clr_0_8,mml_clr_1_8,mml_clr_2_8,mml_clr_3_8,
    mml_clr_4_8,
    mml_clr_5_8,mml_clr_6_8,mml_clr_7_8,mml_clr_8_8,mml_clr_p_1_8,mml_clr_p_2_8,
    s4,
    mml_wdth_m_2_8,mml_wdth_m_1_8,mml_wdth_0_8,mml_wdth_1_8,mml_wdth_2_8,mml_wdth_3_8,
    mml_wdth_4_8,
    mml_wdth_5_8,mml_wdth_6_8,mml_wdth_7_8,mml_wdth_8_8,mml_wdth_p_1_8,mml_wdth_p_2_8,
    s5,dT,fntSize,s6,MarkColor,MarkNumber,
    0,0); 
    double p0_step = iCustom(NULL,0,"ivgMMLevls",
    s0,StepBack,s01,_pCNT,s1,BarsCNT,
    s2,s20,s21,P0,P1,P2,P3,BaseTF_P0,BaseTF_P1,BaseTF_P2,BaseTF_P3,
    BaseMGTD_P0,BaseMGTD_P1,BaseMGTD_P2,BaseMGTD_P3,s22,
    s3,
    mml_clr_m_2_8,mml_clr_m_1_8,mml_clr_0_8,mml_clr_1_8,mml_clr_2_8,mml_clr_3_8,
    mml_clr_4_8,
    mml_clr_5_8,mml_clr_6_8,mml_clr_7_8,mml_clr_8_8,mml_clr_p_1_8,mml_clr_p_2_8,
    s4,
    mml_wdth_m_2_8,mml_wdth_m_1_8,mml_wdth_0_8,mml_wdth_1_8,mml_wdth_2_8,mml_wdth_3_8,
    mml_wdth_4_8,
    mml_wdth_5_8,mml_wdth_6_8,mml_wdth_7_8,mml_wdth_8_8,mml_wdth_p_1_8,mml_wdth_p_2_8,
    s5,dT,fntSize,s6,MarkColor,MarkNumber,
    1,0); 
    Print("p0_4_8 = ",DoubleToStr(p0_4_8)," | p0_step = ",DoubleToStr(p0_step));
    return(0);
}

To simplify the operation of the indicator, the number of bars of history is limited - the BarsCNT parameter.

 To analyze the behavior of the indicator over the history in the manual mode, there is a shift parameter StepBack, which allows you to draw the specified number of indicator values not only from the current bar (with 0 number).

Attention! This version of the indicator features an improved selection of ranges for plotting octaves.

By default, the indicator is set with minimal differences from the basic calculation algorithm for intraday trading with lines drawn over the hourly range, which allows you to properly use it for all intrahourly ranges. If it is necessary to use the indicator on senior time frames, the current chart time frame will be selected automatically. Alternatively, you can manually set the desired time frame, being higher than the current chart time frame.

Please modify the default parameters only if you know exactly what you are doing. The default parameters should be optimal for most trading strategies.

おすすめのプロダクト
Binary Options Support Resistance Indicator This indicator is designed for binary options trading and effectively shows retracements from support and resistance levels. Signals appear on the current candle. A red arrow pointing downwards indicates a potential selling opportunity, while a blue arrow pointing upwards suggests buying opportunities. All that needs adjustment is the color of the signal arrows. It is recommended to use it on the M1-M5 timeframes as signals are frequent on these timef
VR Cub
Vladimir Pastushak
VR Cub は、質の高いエントリーポイントを獲得するためのインジケーターです。このインジケーターは、数学的計算を容易にし、ポジションへのエントリーポイントの検索を簡素化するために開発されました。このインジケーターが作成されたトレーディング戦略は、長年にわたってその有効性が証明されてきました。取引戦略のシンプルさはその大きな利点であり、初心者のトレーダーでもうまく取引することができます。 VR Cub はポジション開始ポイントとテイクプロフィットとストップロスのターゲットレベルを計算し、効率と使いやすさを大幅に向上させます。取引の簡単なルールを理解するには、以下の戦略を使用した取引のスクリーンショットを見てください。 設定、設定ファイル、デモ版、説明書、問題解決方法は、以下から入手できます。 [ブログ] レビューを読んだり書いたりすることができます。 [リンク] のバージョン [MetaTrader 5] エントリーポイントの計算ルール ポジションをオープンする エントリーポイントを計算するには、VR Cub ツールを最後の高値から最後の安値までストレッチする必要があります。
This is a trend indicator without redrawing Developed instead of the binary options strategy (by the color of the Martingale candlestick) Also works well in forex trading When to open trades (binary options) A signal will appear in the place with a candle signaling the current candle It is recommended to open a deal for one candle of the current timeframe M1 and M5 When a blue dot appears, open a deal up When a red dot appears, open a trade down. How to open trades on Forex. When a signal is rec
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 fo
Insider Scalper Binary This tool is designed to trade binary options. for short temporary spends. to make a deal is worth the moment of receiving the signal and only 1 candle if it is m1 then only for a minute and so in accordance with the timeframe. for better results, you need to select well-volatile charts.... recommended currency pairs eur | usd, usd | jpy .... the indicator is already configured, you just have to add it to the chart and trade .... The indicator signals the next can
Support and Resistance is a very important reference for trading.  This indicator provides customized support and resistance levels, automatic draw line and play music functions.  In addition to the custom RS, the default RS includes Pivot Point, Fibonacci, integer Price, MA, Bollinger Bands. Pivot Point is a resistance and support system. It has been widely used at froex,stocks, futures, treasury bonds and indexes. It is an effective support resistance analysis system. Fibonacci also known as t
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
Indicator for binary options arrow is easy to use and does not require configuration works on all currency pairs, cryptocurrencies buy signal blue up arrow sell signal red down arrow tips do not trade during news and 15-30 minutes before their release, as the market is too volatile and there is a lot of noise it is worth entering trades one or two candles from the current period (recommended for 1 candle) timeframe up to m 15 recommended money management fixed lot or fixed percentage of the depo
まず第一に、この取引インジケーターは再描画されず、再描画されず、遅延しないことを強調する価値があります。これにより、手動取引とロボット取引の両方に理想的なものになります。 アトミックアナリストは、価格の強さとモメンタムを利用して市場でより良いエッジを見つけるためのPA価格アクションインジケーターです。ノイズや誤ったシグナルを除去し、取引ポテンシャルを高めるための高度なフィルターを備えています。複雑なインジケーターの複数のレイヤーを使用して、アトミックアナリストはチャートをスキャンし、複雑な数学的計算をシンプルなシグナルと色に変換します。これにより、どのような初心者トレーダーでも理解して使用し、一貫した取引の決定を行うことができます。 「アトミックアナリスト」は、新規および経験豊富なトレーダー向けにカスタマイズされた包括的な取引ソリューションです。プレミアムインジケーターとトップノッチの機能を1つの取引戦略に組み合わせ、すべてのタイプのトレーダーにとって汎用性のある選択肢にします。 デイリートレーディングとスキャルピング戦略:高速で正確なデイトレーディングおよび短期トレード
The indicator is designed for binary options and short-term transactions on Forex To enter a trade when a signal appears blue up arrow buy red down arrow sell signal For Forex enter on a signal exit on the opposite signal or take profit For binary options Enter on 1 candle, if the deal goes negative, set a catch on the next candle Works on all timeframes If you apply a filter like Rsi, you will get a good reliable strategy.. The algorithm is at the stage of improvement and will be further develo
Owl smart levels
Sergey Ermolov
4.63 (54)
MT5版  |   FAQ Owl Smart Levels Indicator   は、 Bill Williams   の高度なフラクタル、市場の正しい波構造を構築する Valable ZigZag、エントリの正確なレベルをマークする Fibonacci レベルなどの一般的な市場分析ツールを含む 1 つのインジケーター内の完全な取引システムです。 利益を得るために市場と場所に。 戦略の詳細な説明 インジケータを操作するための指示 顧問-取引助手 プライベートユーザーチャット ->購入後に私に書いて、私はプライベートチャットにあなたを追加し、あなたはそこにすべてのボーナスをダウンロードすることができます 力はシンプルさにあります! Owl Smart Levels   取引システムは非常に使いやすいので、専門家にも、市場を勉強し始めて自分で取引戦略を選択し始めたばかりの人にも適しています。 戦略と指標に秘密の数式や計算方法が隠されているわけではなく、すべての戦略指標は公開されています。 Owl Smart Levels を使用すると、取引を開始するためのシグナルをすばやく確認し、
ナイト ゴースト - バイナリ オプションの矢印インジケーター。 これからのあなたの頼もしいアシスタントです! 11 - チャートの再描画なし - すべての通貨ペアで大活躍! -インジケータの精度は最大 90% (特に夜間) ・長時間の設定不要(バイナリーオプションに最適な設定) - 信号が遅れない - 現在のローソク足でのシグナルの出現 ・M1期にピッタリ(No More!) ・目に優しいキャンドルカラー(赤・青) -インストールされたアラート それを扱う: - 青い矢印は信号アップを示します -赤い下向き矢印 M1 以上のインジケーターをチャートに配置しないでください. シグナルの精度が低下します! インジケーターのスクリーンショットとビデオを見る
Trend Bilio - an arrow indicator without redrawing shows potential market entry points in the form of arrows of the corresponding color: upward red arrows suggest opening a buy, green down arrows - selling. The entrance is supposed to be at the next bar after the pointer. The arrow indicator Trend Bilio visually "unloads" the price chart and saves time for analysis: no signal - no deal, if an opposite signal appears, then the current deal should be closed. It is Trend Bilio that is considered
Pro Magic Signal   indicator is designed for 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.  The indicator certainly does not repaint. The point at which the signal is given does not change.  Thanks to the alert features you can get the signals
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
Credible Cross System   indicator is designed for 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. The indicator works based on instant price movements. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator certainly does not repaint. The point at which the signal is given does not
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
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation. S
これは、キャンドルの終値を予測する指標です。 このインジケータは、主にD1チャートでの使用を目的としていますが. この指標は、従来の外国為替取引とバイナリオプション取引の両方に適しています。 インジケーターは、スタンドアロンのトレーディングシステムとして使用することも、既存のトレーディングシステムへの追加として機能させることもできます。 このインジケーターは、現在のキャンドルを分析し、キャンドル自体の内部の特定の強度係数と、前のキャンドルのパラメーターを計算します。 したがって、この指標は、市場の動きのさらなる方向性と現在のキャンドルの終値を予測します。 この方法のおかげで、この指標は、短期の日中取引だけでなく、中期および長期の取引にも適しています。 インジケーターを使用すると、市場の状況の分析中にインジケーターが生成する潜在的な信号の数を設定できます。 インジケーターの設定には、このための特別なパラメーターがあります。 また、インジケーターは、チャート上のメッセージの形式で、電子メールで、およびPUSH通知の形式で、新しい信号について通知することができます。 購入後は必ず私に書いて
The indicator detects and displays 3 Drives harmonic pattern (see the screenshot). The pattern is plotted by the extreme values of the ZigZag indicator (included in the resources, no need to install). After detecting the pattern, the indicator notifies of that by a pop-up window, a mobile notification and an email. The indicator highlights the process of the pattern formation and not just the complete pattern. In the former case, it is displayed in the contour triangles. After the pattern is com
This   Real Magic Trend   indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate signals from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator is never repainted. The point at which the signal is given does not change.      Features and Recommendations Time Frame
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
This is a new strategy for SUPPLY DEMAND areas It is based on a calculation using the tick volume to detect the big price action in market for both bear /bull actions this smart volume action candles are used to determine the supply and demand areas prices in between main supply and demand lines indicate sideway market  up arrows will be shown when prices moves above the main supply and the secondary supply lines Down arrows will be shown when prices moves below the main demand and the secondary
Super Gator
Agustinus Biotamalo Lumbantoruan
This indi shows the following 1. Supertrend 2. Alligator (Not a regular alligator) 3. ZigZag 4. Moving Average 5. Trend Continuation/Mini correction Signal (plotted in X) (See screenshots in green background color 6. Early Signal Detection (See screenshots in green background color) You may treat Alligator as the lagging indicator The leading indicator is the supertrend. The zig zag is based on the leading indicator where it gets plotted when the leading indicator got broken to the opposite.
Automated Trendlines
Georgios Kalomoiropoulos
5 (16)
トレンドラインは、外国為替取引におけるテクニカル分析の最も重要なツールです。残念ながら、ほとんどのトレーダーはそれらを正しく描画していません。自動トレンドラインインジケーターは、市場のトレンドの動きを視覚化するのに役立つ本格的なトレーダー向けのプロフェッショナルツールです。 トレンドラインには、強気トレンドラインと弱気トレンドラインの2種類があります。 上昇トレンドでは、外国為替トレンドラインは価格変動の最低スイングポイントを介して描画されます。 少なくとも2つの「最低安値」を接続すると、トレンドラインが作成されます。 下降トレンドでは、トレンドラインは価格変動の最も高いスイングポイントを介して描画されます。 少なくとも2つの「最高値」を接続すると、トレンドラインが作成されます。 トレンドラインが壊れたとき? 弱気のろうそくが強気のトレンドラインの下で閉じ、ろうそくの高さがトレンドラインの上にあるとき、強気のトレンドラインは壊れます。 強気のろうそくが弱気のトレンドラインの上で閉じ、ろうそくの安値がトレンドラインの下にあるとき、弱気のトレ
A scalping indicator based on mathematical patterns, which on average gives signals with relatively small SL, and also occasionally helps to catch big moves in the markets (more information in the video) This indicator has three main types of notifications: The first type warns of a possible/upcoming signal on the next bar The second type indicates the presence of a ready signal to enter the market/open a position The third type is for SL and TP levels - you will be notified every time price r
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
Signal Tower   indicator is designed for 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. The indicator certainly does not repaint. The point at which the signal is given does not change. The indicator has a pips counter. You can see how
The Th3Eng PipFinite indicator is based on a very excellent analysis of the right trend direction with perfect custom algorithms. It show the true direction and the best point to start trading. With StopLoss point and Three Take Profit points. Also it show the right pivot of the price and small points to order to replace the dynamic support and resistance channel, Which surrounds the price. And Finally it draws a very helpful Box on the left side on the chart includes (take profits and Stop loss
The new update makes this indicator a complete tool for studying, analyzing and operating probabilistic patterns. It includes: On-chart Multi-asset percentage monitor. Configurable martingales. Twenty-one pre-configured patterns , including Mhi patterns and C3. An advanced pattern editor to store up to 5 custom patterns. Backtest mode to test results with loss reports. Trend filter. Hit operational filter. Martingale Cycles option. Various types of strategies and alerts. Confluence between patte
このプロダクトを購入した人は以下も購入しています
TPSpro TRENDPRO  - is a trend indicator that automatically analyzes the market and provides information about the trend and each of its changes, as well as giving signals for entering trades without redrawing! The indicator uses each candle, analyzing them separately. referring to different impulses - up or down impulse. Exact entry points into transactions for currencies, crypto, metals, stocks, indices!  -  Version MT5               DETAILED DESCRIPTION        /       TRADING SETUPS           
ご紹介   クォンタム トレンド スナイパー インジケーターは 、トレンド反転を特定して取引する方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。     クォンタムトレンドスナイパーインジケーター   は、非常に高い精度でトレンドの反転を識別する革新的な方法で、あなたのトレーディングの旅を新たな高みに押し上げるように設計されています。 ***Quantum Trend Sniper Indicatorを購入すると、Quantum Breakout Indicatorを無料で入手できます!*** クォンタム ブレイクアウト インジケーターは、トレンドの反転を特定するとアラートを発し、矢印を示し、3 つのテイクプロフィットレベルを提案します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック MT5のバージョン:       ここをクリック 推奨事項: 期間: すべての時間枠。最良の結果を得るには、
現在26%オフ 初心者やエキスパートトレーダーに最適なソリューション! このインジケーターは、独自の機能と新しい計算式を取り入れた、ユニークで高品質、かつ手頃な価格のトレーディングツールです。たった1枚のチャートで28の為替ペアの通貨強度を読み取ることができます。新しいトレンドやスキャルピングチャンスの引き金となるポイントを正確に特定することができるので、あなたのトレードがどのように改善されるか想像してみてください。 ユーザーマニュアルはこちら  https://www.mql5.com/en/blogs/post/697384 これが最初の1本、オリジナルだ! 価値のないクローンを買わないでください。 特別な サブウィンドウの矢印で強い通貨の勢いを表示 GAPがあなたのトレードを導く! 基準通貨や気配値が売られすぎ・買われすぎのゾーン(外相フィボナッチレベル)にあるとき、個別チャートのメインウィンドウに警告表示。 通貨がレンジの外側から反落した場合、プルバック/リバーサルのアラート。 クロスパターンの特別なアラート 複数の時間枠を選択可能で、トレンドを素早く
A key element in trading is zones or levels from which decisions to buy or sell a trading instrument are made. Despite attempts by major players to conceal their presence in the market, they inevitably leave traces. Our task was to learn how to identify these traces and interpret them correctly. Reversal First Impulse levels (RFI)   -  Version MT5                INSTRUCTIONS                 RUS                 ENG                                       R ecommended to use with an indicator   -  
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
現在33%オフ 初心者にもエキスパートトレーダーにも最適なソリューション このインジケーターは独自の機能と新しい公式を多数内蔵しており、ユニークで高品質かつ手頃な取引ツールです。このアップデートでは、2つの時間枠ゾーンを表示できるようになります。より長いTFだけでなく、チャートTFとより長いTF(ネストゾーンを表示)の両方を表示できます。すべてのSupply Demandトレーダーの皆さんのお気に召すはずです。:) 重要情報の公開 Advanced Supply Demandの可能性を最大化するには、 https://www.mql5.com/ja/blogs/post/720245 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適
TrendMaestro
Stefano Frisetti
5 (2)
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link: TRENDMAESTRO recognizes a new TREND in the bud, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these data and therefore the moment in which prices have strong probability of f
現在20%OFF! 初心者やエキスパートトレーダーのためのベストソリューション! このダッシュボードソフトウェアは、28の通貨ペアで動作しています。それは私達の主要な指標(高度な通貨の強さ28と高度な通貨インパルス)の2に基づいています。それは全体の外国為替市場の大きい概観を与えます。それは、すべての(9)時間枠で28の外国為替ペアのための高度な通貨の強さの値、通貨の動きの速度と信号を示しています。チャート上で1つのインディケータを使用して市場全体を観察し、トレンドやスキャルピングの機会をピンポイントで見つけることができたら、あなたのトレードがどのように改善されるか想像してみてください。 このインディケータには、強い通貨と弱い通貨の識別、潜在的な取引の識別と確認がより簡単になるような機能が搭載されています。このインディケータは、通貨の強さや弱さが増加しているか減少しているか、また、すべての時間枠でどのように機能しているかをグラフィカルに表示します。 新機能として、現在の市場環境の変化に適応するダイナミックなマーケットフィボナッチレベルが追加され、すでに当社のAdvan
驚異的なFXインジケーター「Miraculous」をご紹介します。完璧な結果を得るための1時間足を含むすべてのタイムフレームで効果的に機能する、最強の強力な特殊MT4フォレックスインジケーターです。 すべてのタイムフレームで優れた結果を提供する最高のFXインジケーターを探し続けるのに疲れましたか?これ以上探す必要はありません!「Miraculous」フォレックスインジケーターをご紹介します。このインジケーターは、トレーディングの経験を変革し、収益を新たなレベルに引き上げるために設計されました。 先進のテクノロジーと長年にわたる緻密な開発に基づいて構築された「Miraculous」フォレックスインジケーターは、FX市場における力と正確さの頂点となります。この素晴らしいツールは、すべてのレベルのトレーダーのニーズを満たすように設計されており、一貫した収益性を追求する上で比類のない優位性を提供します。 「Miraculous」フォレックスインジケーターの他との違いは、その非常に適応性にあります。デイトレーダー、スウィングトレーダーであろうと、長期ポジションを好む方であろうと、このインジケータ
mql5と Telegramの モーニング・ブリーフィングで、詳細とスクリーンショットを含む毎日のマーケット・アップデートをご覧 ください! FX Power MT4 NGは 、長年の人気を誇る通貨強度計FX Powerの次世代モデルです。 この次世代ストレングスメーターは何を提供するのでしょうか?初代FXパワーの魅力すべて プラス GOLD/XAUの強さ分析 より正確な計算結果 個別に設定可能な分析期間 カスタマイズ可能な計算上限値により、さらに優れたパフォーマンスを実現 もっと見たい人のための特別なマルチインスタンス設定 すべてのチャートでお好みの色を無限に設定可能 数え切れないほどの通知オプションにより、重要なことを見逃すことはありません。 Windows 11とmacOSのスタイルで角を丸くした新しいデザイン 魔法のように動くインジケーターパネル FXパワーの主な機能 すべての主要通貨の強さの完全な履歴 すべての時間枠における通貨の強さの履歴 すべてのブローカーとチャートで同一の計算結果 100%信頼できるリアルタイム計算 -> リペイントなし ドロップダウン・リストから
ご紹介     Quantum Breakout PRO は 、ブレイクアウト ゾーンの取引方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発された Quantum Breakout PROは 、革新的でダイナミックなブレイクアウトゾーン戦略により、あなたの取引の旅を新たな高みに押し上げるように設計されています。 クォンタム ブレイクアウト インジケーターは、5 つの利益ターゲット ゾーンを備えたブレイクアウト ゾーン上のシグナル矢印と、ブレイクアウト ボックスに基づいたストップロスの提案を提供します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック MT5バージョン:   ここをクリック 重要!購入後、インストールマニュアルを受け取るためにプライベートメッセージを送ってください。 推奨事項: 時間枠: M15 通貨ペア: GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD アカウントの種類: ECN、Raw、また
FX Volume
Daniel Stein
4.6 (35)
mql5と Telegramの モーニング・ブリーフィングで、詳細とスクリーンショットを含む毎日のマーケット・アップデートをご覧 ください! FX Volumeは、ブローカーの視点から市場のセンチメントをリアルに洞察する、最初で唯一の出来高インジケーターです。 ブローカーのような機関投資家が外国為替市場でどのようなポジションをとっているか、COTレポートよりもはるかに速く、素晴らしい洞察を提供します。 この情報をチャート上で直接見ることは、あなたの取引にとって真のゲームチェンジャーであり、画期的なソリューションです。 以下のようなユニークなマーケットデータ洞察から利益を得てください。 比率は 、通貨のロングポジションとショートポジションの比率をパーセントで表示します。 比率の変化は 、選択した期間内のロング比率とその変化率を表示します。 Volumes Totalは 、通貨の取引量(ロングとショート)の合計をロット単位で表示します。 Volumes Long :全通貨のロングポジションの取引量を表示します。 Volumes(ショート )は、全通貨のショートポジションの取引量を表示
このインジケータは、手動および自動的な方法でチャートに描かれたハーモニックパターンを検出します。ユーザーマニュアルは、このリンクから参照できます: あなたのレビューを追加し、入手するために私たちに連絡してください。 この製品をmt4で試すための無料版があります。 GartleyおよびNenstarパターンを検出するために使用できます。 https://www.mql5.com/en/market/product/30181 完全なMT4バージョンを購入するには、次の場所から購入できます。 https://www.mql5.com/en/market/product/15212 注 インジケータにはコントロールパネルがあり、すべての(チャート&時間枠)設定が保存されます。チャート上でスペースをより多く確保するために、最小化することができ、他の分析ツールで作業する場合は、すべてのインジケータデータを非表示にするために閉じるボタンを押すことができます。 このインジケータを使用して設定を変更し、移動平均やボリンジャーバンドなどのインジケータを追加すると、編集のテンプレートが自動的に保存され、必
TakePropips Donchian Trend Pro
Eric John Pajarillaga Aldana
4.82 (17)
TakePropips Donchian Trend Pro   (MT4) は、ドンチャン チャネルを使用してトレンドの方向を自動的に検出し、エントリーとエグジットの取引シグナルを提供する強力で効果的なツールです! この多機能インジケーターには、トレンド スキャナー、取引シグナル、統計パネル、スクリーナー、取引セッション、およびアラート履歴ダッシュボードが含まれます。取引シグナルを提供し、チャートを分析する時間を節約するように設計されています! ユーザー マニュアルとインストール ガイドは、ブログ投稿 (   https://www.mql5.com/en/blogs/post/751368   ) からダウンロードできます。 今日は 50% オフ! 98ドルから49ドルに値下げ! このインジケーターは、ストラテジー テスターでテストできます (ビジュアル モードを有効にします)。ライブ チャートでテストしたい場合は、7 日間の試用版を入手するようにメッセージを送ることもできます。 詳細については、説明の下にあるビデオ チュートリアルも利用できます。 ご不明な点やサポートが必
How to use Pair Trading Station Pair Trading Station is recommended for H1 time frame and you can use it for any currency pairs. To generate buy and sell signal, follow few steps below to apply Pair Trading Station to your MetaTrader terminal. When you load Pair Trading Station on your chart, Pair Trading station will assess available historical data in your MetaTrader platforms for each currency pair. On your chart, the amount of historical data available will be displayed for each currency pai
今、147ドル(いくつかの更新後に499ドルに増加します) - 無制限のアカウント(PCSまたはMac) RelicusRoad ユーザー マニュアル + トレーニング ビデオ + プライベート Discord グループへのアクセス + VIP ステータス 市場の新しい見方 RelicusRoad は、外国為替、先物、暗号通貨、株式、および指数の世界で最も強力な取引インジケーターであり、トレーダーに収益を維持するために必要なすべての情報とツールを提供します。初心者から上級者まで、すべてのトレーダーが成功するためのテクニカル分析と取引計画を提供します。これは、将来の市場を予測するのに十分な情報を提供する重要な取引指標です。意味をなさないチャート上のいくつかの異なる指標ではなく、完全な解決策を信じています.これは、信号、矢印 + 価格アクション情報を表示するオールインワンのインジケーターで、他に類を見ない非常に正確です。 強力な AI に基づいて、RelicusRoad は不足している情報とツールを提供して、あなたを教育し、トレーディングのプロ、成功したトレーダーにします。
プレシジョン・インデックス・オシレーター(Pi-Osc)は、Precision Trading SystemsのRoger Medcalfによるものです。 バージョン2は、チャートにスーパーファストでロードされるように注意深く再コードされ、その他の技術的な改良も組み込まれて、エクスペリエンスを向上させています。 Pi-Oscは、市場が強制的に行かなければならない、すべての人のストップを取り除くためのポイントである、極限のエクソースト・ポイントを見つけるために設計された正確な取引タイミング信号を提供するために作成されました。 この製品は、極限のポイントがどこにあるかを知るという古代の問題を解決し、トレーダーの生活をはるかにシンプルにします。 これは、業界標準のオシレーターとは異なる強力な要素を持つ高度なコンセンサス・インジケーターです。 使用されている一部の機能には、需要指数、マネーフロー、RSI、スティリング、パターン認識、出来高分析、標準偏差の極値などがあり、異なる長さでこれらのバリエーションが多く含まれています。 初めて見ると、訓練されていない目には、他の
Cycle Sniper
Elmira Memish
4.41 (34)
NEW YEAR SALE PRICE FOR LIMITED TIME!!! 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 pu
ON Trade Waves Patterns Harmonic Elliot Wolfeをご紹介します。これは手動および自動の方法を使用して市場のさまざまなパターンを検出するために設計された高度なインジケーターです。以下はその動作方法です: ハーモニックパターン: このインジケーターは、チャートに表示されるハーモニックパターンを識別できます。これらのパターンは、Scott Carneyの「Harmonic Trading vol 1および2」で説明されているように、ハーモニックトレーディング理論を実践するトレーダーにとって重要です。手動で描画するか、自動検出に頼るかにかかわらず、ON Trade Waves Patternsがお手伝いします。 コントロールパネル: このインジケーターはユーザーフレンドリーなコントロールパネルを備えています。チャートと時間枠の設定を保存し、異なる構成間をスムーズに切り替えることができます。チャートスペースを最大限に活用するために最小化することもできます。他の分析ツールで作業することを好む場合、閉じるボタンをクリックするだけで、すべてのインジケーターデ
Step into the realm of Forex trading with confidence and precision using XQ, a cutting-edge Forex indicator designed to elevate your trading game to unprecedented heights. Whether you're a seasoned trader or just stepping into the world of currency exchange,   XQ Forex Indicator   empowers you with the insights and signals needed to make informed trading decisions. The signal conditions are a combination of three indicators, and XQ Forex Indicator only display  medium and long-term trends . The
現在20%OFF! 初心者やエキスパートトレーダーに最適なソリューションです。 このインディケータは、エキゾチックペア・コモディティ・インデックス・先物など、あらゆるシンボルの通貨の強さを表示することに特化したインディケータです。金、銀、原油、DAX、US30、MXN、TRY、CNHなどの通貨の強さを表示するために、9行目にどのシンボルでも追加することができます。独自の機能を多数搭載し、新しい計算式を採用したため、ユニークで高品質、かつ手頃な価格のトレーディングツールとなっています。新しいトレンドやスキャルピングチャンスのトリガーポイントを正確に把握することができるため、あなたのトレードがどのように改善されるか想像してみてください。 ユーザーマニュアル:ここをクリック   https://www.mql5.com/en/blogs/post/708876 すべての時間枠に対応します。あなたはすぐにトレンドを見ることができるようになります! 新しいアルゴリズムに基づいて設計されているため、潜在的な取引の特定と確認がより簡単になります。これは、8つの主要通貨と1つのシンボ
Th3Eng PipFinite PRO Indicator This product is distinct from the Th3Eng PipFinite Original, utilizing a different logic and algorithms. The Th3Eng PipFinite Pro indicator offers analysis of trend directions using custom algorithms. It provides indications of trend direction, entry points, a stop loss point, and three take profit points. The indicator also displays pivot points, dynamic support and resistance channels, and a side-box with detailed current signal information. How to Trade with
This Indicator does not repaint itself at all, it's identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these data and therefore the moment in which prices have strong probability of following a new TREND. CandleBarColorate never misses a beat, he always identifies a new TREND in the bud without error. This indicator facilitates the reading of charts on METATRADER; on a single wi
Ultimate Sniper Dashboard
Hispraise Chinedum Abraham
4.84 (25)
299ドルで割引中! 今後値上げの可能性あり! 下の説明を読んでください! 究極のスナイパーダッシュボードのための最高のエントリーシステム。究極のダイナミックレベル。(私の製品をチェックしてください) 究極のスナイパーダッシュボードはMT4多通貨テスト制限のため、ライブマーケットでのみ作動します。 究極のスナイパーダッシュボードをご紹介します。HA-Sniper、MA-Sniper、その他多くの特別なモードが含まれる最高の製品です。究極のスナイパーダッシュボードは絶対的な獣です! 初心者やエキスパートトレーダーにとって最高のソリューションです。もう二度と動きを見逃さない! シンプルさとピップを愛するトレーダーのために、特別な製品をご用意しました。シンプルでありながら、ダッシュボードは複数のカスタムアルゴリズムに基づき28の通貨ペアを監視し、すべての作業を行います。たった一つのチャートで、プロのように市場を読み解くことができます。もし、為替ペアが動き出したときに、その方向性を正確に特定することができれば、あなたの取引はどれほど改善されることでしょう。   当社のシ
もちろんです。以下は、提供いただいたテキストの日本語への翻訳です: MT4用の天文学指標をご紹介します:究極の天体トレーディングコンパニオン トレーディング体験を天空の高みに高める準備はできていますか?私たちの革命的なMT4用の天文学指標をご紹介します。この革新的なツールは、複雑なアルゴリズムの力を借りて、類まれなる天文学的洞察と精密な計算を提供します。 あなたの指先で宇宙の情報を: 宝のような天文学的データが明らかになる包括的なパネルをご覧ください。惑星の地理的/太陽中心座標、太陽と地球の距離、星の大きさ、伸び、星座、黄道座標および赤道座標、さらには水平座標まで、それぞれが綿密に計算され美しく表示されています。指標によって生成される垂直線は時間値に対応し、トレーディングの旅に宇宙の視点を提供します。 惑星のラインと関係: グラフを飾る惑星のラインの魔法を体験し、スケールと角度をカスタマイズできます。直感的なコントロールパネルを介して各惑星のラインの表示を簡単に切り替えることができます。指定された時刻範囲内での合会、六分会、四分会、三分会、対会、逆行の指標で天体の関係の芸術を発見してく
このインディケータは、当社の2つの製品 Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics . のスーパーコンビネーションです。 このインジケーターは全ての時間枠で作動し、8つの主要通貨と1つのシンボルの強弱のインパルスをグラフで表示します。 このインジケータは、金、エキゾチックペア、商品、インデックス、先物など、あらゆるシンボルの通貨強度の加速度を表示することに特化されています。金、銀、原油、DAX、US30、MXN、TRY、CNHなどの通貨強度の加速度(インパルスまたは速度)を表示するために、任意のシンボルを9行目に追加できる、この種の最初のものです。 新しいアルゴリズムに基づいて構築され、潜在的な取引の特定と確認がさらに容易になりました。これは、通貨の強さや弱さが加速しているかどうかをグラフィカルに表示し、その加速の速度を測定するためです。加速すると物事は明らかに速く進みますが、これはFX市場でも同じです。つまり、反対方向に加速している通貨をペアリングすれば、潜在的に利益を生む取
現在20%OFF! このダッシュボードは、複数のシンボルと最大9つのタイムフレームで動作するソフトウェアの非常に強力な部分です。 このソフトは、弊社のメインインジケーター(ベストレビュー:Advanced Supply Demand)をベースにしています。    Advanced Supply Demand ダッシュボードは、素晴らしい概要を提供します。それは示しています。  ゾーン強度評価を含むフィルタリングされた需給値。 ゾーン内/ゾーンへのPips距離。 ネストされたゾーンがハイライトされます。 選択されたシンボルの4種類のアラートを全ての(9)時間枠で提供します。 それはあなたの個人的なニーズに合わせて高度に設定可能です。 あなたの利益! すべてのトレーダーにとって最も重要な質問です。 市場に参入するのに最適なレベルはどこか? 成功のチャンスとリスク/リターンを得るために、強力な供給/需要ゾーン内またはその近くで取引を開始します。 損切りの最適な位置はどこですか? 最も安全なのは、強力な供給/需要ゾーンの下/上にストップを置くことで
Price Action Entry Alerts
Stephen Sanjeeve Sahayam
5 (3)
このインジケーターは、売買圧力についてすべてのバーをスクリーニングし、最大量の 4 種類のローソク足パターンを特定します。次に、これらのローソク足はいくつかの線形フィルターを使用してフィルター処理され、買いまたは売りのシグナルが表示されます。シグナルは、より高い時間枠の方向と組み合わせて、取引量が多い時間帯に取引される場合に最も効果的に機能します。すべてのフィルターはカスタマイズ可能で、独立して動作します。ボタンをクリックするだけで単一方向の信号を表示できます。 このインジケーターには、意思決定プロセスに役立つ最も重要な価格アクションとスマート マネーの概念も組み込まれています。 シグナルとトレードに関する教育をすべて 1 つのツールにまとめました。 特徴: 信号は再描画されません。 飲み込むキャンドル、拒否キャンドル、拡張範囲キャンドル、ピンバーを識別します。 有効なシグナルごとに複数のエントリー、ストップロス、複数のテイクプロフィットレベルを表示します。 大容量セッションでフィルタリングします。 サポート/レジスタンスレベルとローソク足の構造でフィルターします。 MACD ヒ
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 tho
TPA True Price Action indicator reveals the true price action of the market makers through 100% non-repainting signals (except early signals mode) strictly at the close of a candle! TPA shows entries and re-entries, every time the bulls are definitely stronger than the bears and vice versa. Not to confuse with red/green candles. The shift of power gets confirmed at the earliest stage and is ONE exit strategy of several. There are available now two free parts of the TPA User Guide for our custo
PZ Day Trading
PZ TRADING SLU
3.67 (3)
このインディケータは、価格アクション分析とドンチャンチャネルのみを使用して、ジグザグ方式で価格の反転を検出します。再描画やバックペインティングを一切行わずに、短期取引向けに特別に設計されています。それは彼らの操作のタイミングを増やすことを目指している賢明なトレーダーにとって素晴らしいツールです。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 驚くほど簡単に取引できます すべての時間枠で価値を提供します 自己分析統計を実装します 電子メール/音声/視覚アラートを実装します 可変長のブレイクアウトと混雑ゾーンに基づいて、インディケータは価格アクションのみを使用して取引を選択し、市場が非常に高速に行っていることに反応します。 過去のシグナルの潜在的な利益が表示されます この指標は、独自の品質とパフォーマンスを分析します 負けブレイクアウトは強調表示され、説明されます インジケータは、非バックペインティングおよび非再ペイントです この指標は、日中のトレーダーが単一の価格反転を見逃さないようにするのに役立ちます。ただし、す
作者のその他のプロダクト
The indicator draws trend lines based on Thomas Demark algorithm. It draws lines from different timeframes on one chart. The timeframes can be higher than or equal to the timeframe of the chart, on which the indicator is used. The indicator considers breakthrough qualifiers (if the conditions are met, an additional symbol appears in the place of the breakthrough) and draws approximate targets (target line above/below the current prices) according to Demark algorithm. Recommended timeframes for t
This indicator calculates and displays Murrey Math Lines on the chart. This MT5 version is similar to the МТ4 version: It allows you to plot up to 4 octaves, inclusive, using data from different time frames, which enables you to assess the correlation between trends and investment horizons of different lengths. In contrast to the МТ4 version, this one automatically selects an algorithm to search for the base for range calculation. You can get the values of the levels by using the iCustom() funct
Классификатор силы тренда. Показания на истории не меняет. Изменяется классификация только незакрытого бара. По идее подобен полной системе ASCTrend, сигнальный модуль которой, точнее его аппроксимация в несколько "урезанном" виде, есть в свободном доступе, а также в терминале как сигнальный индикатор SilverTrend . Точной копией системы ASCTrend не является. Работает на всех инструментах и всех временных диапазонах. Индикатор использует несколько некоррелируемых между собой алгоритмов для класси
フィルタ:
レビューなし
レビューに返信
バージョン 1.1 2022.02.03
Перекомпилирован под терминал 1353 от 16.12.2021