• 概要
  • レビュー
  • コメント

Abiroid PinBar Arrow

This is a Pinbar Arrows which will check for reversal pin bars. 

Pin bars are not good for trend continuation. They are best when an ongoing trend ends and they signal a reversal. But it is better to validate the reversal.

Once you purchase, please send me a comment.

Since mql5 only allows a single ex4 per product, I'll send the scanner separately.

Scanner ex4 needs to be placed in same folder as the Arrows. In Market folder. 


Features:

  • Choose Pin bar checks: PinBar Body Options, PinBar Nose and Tail Options, Left Eye Options
  • Engulfing Bar After Pin Bar
  • Overbought/Oversold with CCI or Stochastic or RSI
  • Distance of Pin bar body from nearest Quarter Point (Option to use Majors, halfpoints, quarters)
  • Volatility Check

 

Detailed Post with Extra Downloads:

https://www.mql5.com/en/blogs/post/758569


How to Use:

Note that Quarters Lines indicator is a separate indicator available in extras section above. The arrows indicator uses it internally and won’t display major lines on chart.

Very strong stop hunt pin bars, if you keep a very low candle body/length ratio: 0.015

Pin bars only if price is Overbought/Oversold, using CCI or Stochastic or RSI. Set your own custom period and OB/OS levels and other parameters.


What Symbols Mean:

By default, Diamond is for a pinbar. And a circle is for engulfing candle after a pinbar. Bracket numbers show how many bars back the pin bar have happened.

Scanner and pin bar Arrows have similar settings. So a set file can be used interchangeably. Scanner does not have settings from arrows for debug messages and arrow spacing. Everything else is the same. So, same set file will work for both.

Settings:

shiftBars: This setting allows you to specify the number of bars to shift the indicator. A value of 0 means the indicator is applied to the current (most recent) bar.
MaxPastBars: This setting determines the maximum number of past bars the indicator will consider. A value of 0 means all past bars will be included.

    Settings are related to the Pin Bar Nose:

    MaxNoseBodySize: It determines the maximum ratio of the Pin Bar body size to the total candle length.
    NoseBodyPosition: This setting specifies the position of the Pin Bar body within the candlestick. A value of 0.4 indicates the body should be located near the middle (40%) of the candlestick.
    NoseSameDirection: When set to true, it means the Pin Bar body’s direction must be the same as the Pin Bar type (bullish or bearish).
    MinimumNoseLength: It determines the minimum length (in points) for the Pin Bar body.


      Settings pertain to the Left Eye Bar and additional checks:

      NoseProtruding: It sets the minimum amount the Pin Bar nose should protrude beyond the high of the Left Eye Bar.
      LeftEyeOppositeDirection: When true, the Left Eye Bar should have an opposite direction to the Pin Bar.
      LeftEyeMinBodySize: This defines the minimum ratio of the Left Eye Bar’s body size to the total candle length.
      LeftEyeDepth: It sets the minimum depth of the Left Eye Bar.

         

        Check if Pin bar nose is highest/lowest compared to all previous bars:

        checkPinHL: When true, it checks if the Pin Bar has a long tail that’s higher or lower than the previous bars.

           

          Check if any engulfing bars, few bars after the pin bar:

          checkEngulf: This setting determines whether the indicator should wait for an Engulfing Bar after the Pin Bar.
          HighVolumeEngulf: When set to true, it checks for a high-volume Engulfing Bar.

            An engulfing bar will fully engulf (cover) it’s previous bar. If it’s a Bullish pin bar, the engulfing bar will be bullish. And for bearish pin bar, it needs to also be bearish engulfing bar.

            It is marked by a circular symbol by default, but you can change the symbols.


            If you need the very next bar after pin bar to be engulfing, then keep: “Wait Max Number of Bars” to 1.

            By default it is 5, meaning after a pinbar, engulfing bar needs to happen within 5 bars, or else it won’t be detected and will not be marked by that symbol.

             

            Overbought/Oversold Checks using Stochastic or RSI or CCI

            UseOBOS: This setting enables the use of overbought/oversold checks.

            Stochastic Params: KPeriod,DPeriod,Slowing,MA_Method,PriceField,Stoch_Mode

            RSI or CCI Params: Period, OB/OS


            Volatility:

            UseVolatility: When true, it incorporates high volatility checks.

            It uses the Chaikin Volatility (CHV). Low volatility produces a lot of pin bars. So not a good time to trade:


            Major Points (like 1.00000 or half points: 1.50000 or quarter points like 1.25000 and 1.75000)

            checkFullPoints, checkHalfPoints, checkQuarterPoints: If enabled, this checks for price proximity to major points.


            Set your own Major Points. Because lower timeframes like M5 need major points like 1.00100, 1.00200 etc as majors. And higher timeframes like H1 need 1.00000, 1.10000, 1.20000 etc as majors.

            Also, set minimum distance of pin bar from a major line, based on different timeframes. Use cross hairs tool to find in between distances.

             

            Chart Symbols, Debug and Alerts:

            ArrowDistance: It specifies the distance of arrows on the chart.
            ArrowSize: This sets the size of the arrows.
            BullishColor: It defines the color of bullish signals.
            BearishColor: Color of bearish signals.
            PinBar Symbol: Code for pinbar symbols.
            Engulfing Symbol: Code for engulfing bar symbols.

              Debug:

              ShowDebugText: When set to true, this enables the display of debug messages on bars.
              ShowDebugMin: Enabling this setting will display minimum debug messages. And not show PinBar detailed messages. Only set to false if you need to see why a pin bar was not detected.
              DebugOnBar: This setting allows you to specify which bar to generate detailed journal logs for. A value of -1 means it’s turned off.

              This is a better way to debug why a pin bar was skipped. It shows all checks run for a particular bar. Suppose bar number is: 4172


              Then the experts tab logs will show details:

              It finds the bar as a pin bar. But rejects it as a Bearish bar because it’s nose is not protruding. And rejects it as Bullish bar because it is not a green bull bar.

              This is useful because the debug messages on chart show only the last check and reason for skipping.


              You can control individual debug messages by turning on/off:

              "Show Debug PinBars" or "Show Debug Volatility" or "Show Debug Major Points" or "Show Debug OBOS": When set to true, it displays debug messages showing why a signal was skipped.

               

              Debug Message Meanings:

              PinBar Related Debugs 

              Common:

              NO-BODY-RATIO: PinBar: Nose body to candle length ratio MORE than (Max Body/Candle length ratio)

              NO-LEFT-BODYLEN: Left eye: body to candle length ratio less than (LeftEye: Body/CandleLength ratio)

              NO-NOSE-INSIDE-LEFT-BAR: Nose body NOT inside Left Eye bar’s High and Low

              NO-LEFT-BODY: Nose body to Left Eye body ratio is MORE than (Max NoseBarBody/LeftEyeBody ratio)

              NO-LEFT-LEN: Nose length to Left Eye length ratio is LESS than (Min NoseBarLength/LeftEyeLength ratio)

              NO-NOSE-INSIDE-LEFT-BODY: Nose body is NOT inside Left Eye body

               

              Bearish:

              NO-BOTTOM: SELL: Nose body position is NOT in bottom part of the bar: 0.3

              NO-LEFT-BULL: SELL: Left Eye is NOT bullish

              NO-BEAR: SELL: Nose is NOT bearish

              NO-LEFT-LOW: SELL: Left Eye low is NOT low enough

              NO-HIGH: SELL: PinBar Nose NOT Highest compared to past bars

              NO-PROT-BEAR: SELL: Nose NOT protruding HIGHER than ratio (Min PinBarNose Protruding Beyond LeftEye High)

               

              Bullish:

              NO-TOP: BUY: Nose body position is NOT in top part of the bar: 0.3

              NO-LEFT-BEAR: BUY: Left Eye is NOT bearish

              NO-BULL: BUY: Nose is NOT bullish

              NO-LEFT-HIGH: BUY: Left Eye high is NOT high enough

              NO-LOW: BUY: PinBar Nose NOT Lowest compared to past bars

              NO-PROT-BULL: BUY: Nose NOT protruding LOWER than ratio (Min PinBarNose Protruding Beyond LeftEye Low)

               

              Other Debugs:

              NO-MAJOR: NOT Near any Major Points

              NO-VOLA: NO High Volatility

              NO-OB: No Overbought in case of a Bearish pinbar signal

              NO-OS: No Oversold in case of a Bullish pinbar signal

               

              Conclusion:

              Pinbars are useful reversal signals. Best used during a good volatility market. To find when a trend might end. Not good to be used as a standalone.

              Needs validation from other indicators like:

              • Major levels or Pivots
              • Overbought/Oversold levels
              • Other candle patterns like engulfing bars
              • High volume bar in opposite direction

              Don’t use all validating indicator simultaneously as signals will be very limited.


              おすすめのプロダクト
              Classic indicator. The Fractals indicator analyzes the price patterns that form on the candlestick chart and display the reversal points of the market trend. The indicator consists of candles, the middle of which is either the highest (up fractal) or the lowest (down fractal). Highs and lows, indicated by the indicator on the chart, are recommended to be taken as points that form support and resistance lines. Unlike the original indicator, where fractals are formed by five candles (high/low in t
              Convergence is when the higher highs and higher lows of an uptrend are also confirmed by our indicator making lower lows which helps us confirm that momentum is increasing and so the trend is likely to continue. Vice versa for a downtrend. Divergence is when we get higher highs on an uptrend but which are not supported by our indicator which makes lower highs and therefore signals the underlying momentum is failing and so a reversal might occur. Vice versa for downtrend. I have combined these me
              The Trend Map indicator is designed to detect trends in price movement and allows you to quickly determine not only the direction of the trend, but also to understand the levels of interaction between buyers and sellers. It has no settings and therefore can be perceived as it signals. It contains only three lines, each of which is designed to unambiguously perceive the present moment. Line # 2 characterizes the global direction of the price movement. If we see that the other two lines are above
              RSI TrendLine Divergency Message is an indicator for the MetaTrader 4 trading platform. Unlike the original indicator, this three in one version has a system of alerts that inform on market situation changes. It consists of the following signals: when the Main line crosses the levels of extreme zones and 50% level; when the Main line crosses the Trend line in the indicator window; divergence on the last bar. Parameters of levels of extremum, 50-level and divergence are adjustable. Parameters L
              Description Very precise patterns to detect: entry signals as well as breakout, support and resistance reversal patterns. It points out zones in which, with a high probability, institutional orders with the potential to change the price’s direction and keep moving towards it, have been placed.  KEY LINKS:   Indicator Manual  –  How to Install   –  Frequent Questions  -  All Products  How is this indicator useful? It will allow you to trade on the order’s direction, once its direction has been id
              The Before indicator predicts the most likely short-term price movement based on complex mathematical calculations. Most of the standard indicators commonly used in trading strategies are based on fairly simple calculations. This does not mean that there were no outstanding mathematicians in the world at the time of their creation. It is just that computers did not yet exist in those days, or their power was not enough for the sequential implementation of complex mathematical operations. Nowa
              About  Holy Renko is a trend identifier capable of identify small and long market movements. This indicator should be use in Renko Charts. VIDEO (information and tips) [HERE] How to install Renko Charts [HERE] Features Developed for Renko Charts Easy to analyze Fast signals Not repaint (when candle close)  Statistics panel Filters false signals Alerts, emails and push notifications  Advantages of Renko Chart Easy to install Easy to analyze Filter out the noise of wicks  Easy ide
              Vortex MT4
              KEENBASE SOFTWARE SOLUTIONS
              The Vortex Indicator was first presented by Douglas Siepman and Etienne Botes in January 2010 edition of Technical Analysis of Stocks & Commodities. Despite its based on a complex implosion phenomenon, the vortex is quite simple to interpret. A bullish signal is generated when +VI line cross above the -VI line and vice versa. The indicator is mostly used as a confirmation for trend trading strategies. The Vortex was inspired by the work of Viktor Schauberger, who studied the flow of water in tur
              This indicator is based on the Bollinger Bands on one or more timeframes and on any Currency Cross Pair. The indicator generates an alert message when it detects a buy or sell signal. It also draws a vertical bar on the price chart: green for buy or red for sell, white if flat. Alert messages and Vertical bars for BUY or SELL, are generated when the Bollinger Bands is consistent for all chosen timeframes else a FLAT signal is generated. In addition, the Multi TimeFrames Bollinger Bands Signals i
              VR Cub
              Vladimir Pastushak
              VR Cub は、質の高いエントリーポイントを獲得するためのインジケーターです。このインジケーターは、数学的計算を容易にし、ポジションへのエントリーポイントの検索を簡素化するために開発されました。このインジケーターが作成されたトレーディング戦略は、長年にわたってその有効性が証明されてきました。取引戦略のシンプルさはその大きな利点であり、初心者のトレーダーでもうまく取引することができます。 VR Cub はポジション開始ポイントとテイクプロフィットとストップロスのターゲットレベルを計算し、効率と使いやすさを大幅に向上させます。取引の簡単なルールを理解するには、以下の戦略を使用した取引のスクリーンショットを見てください。 設定、設定ファイル、デモ版、説明書、問題解決方法は、以下から入手できます。 [ブログ] レビューを読んだり書いたりすることができます。 [リンク] のバージョン [MetaTrader 5] エントリーポイントの計算ルール ポジションをオープンする エントリーポイントを計算するには、VR Cub ツールを最後の高値から最後の安値までストレッチする必要があります。
              Power Renko is an indicator which plots Renko bricks underneath the chart using a histogram. You can select the brick size and the timeframe of the Renko bricks as well as whether or not to use the close price or the high/low price of the candles. Renko bricks are based on price alone, not time, therefor the Renko bricks will not be aligned with the chart's time. They are extremely useful for trend trading and many different strategies can be formed from them. Buffers are provided allowing you t
              Check My Product Contact me to discover all my services  Supply and demand zones are one of the most basic things a beginner forex trader learns. These zones are so important, price reacts off of them even after years since they first developed. And with the supply and demand zones indicator, a forex trader might not need to worry about drawing all these historical zones one after the other. The supply and demand zone indicator accurately draws the supply and demand zones of a currency pair
              The indicator shows the potential trend direction by cyclical-wave dependence. Thus, all the rays of the intersection will be optimal rays, in the direction of which the price is expected to move, taking into account the indicator period. Rays can be used as a direction for potential market movement. But we must not forget that the approach must be comprehensive, the indicator signals require additional information to enter the market.
              無限からの通貨の強さを測定するためのこの革新的な指標は、長い間取引されているダフ屋やトレーダーにとって不可欠な助手です。 通貨の強さ/弱さを分析するためのシステムは、世界の主要なトレーダーによって市場で長い間知られており、使用されてきました。 任意の裁定取引は、この分析なしでは完全ではありません。 私たちの指標は、互いに関連して基本通貨の強さを簡単に決定します。 これは、インスタント分析を可能にし、最強のエントリポイントを検索し、すべてまたは現在の通貨ペアの折れ線グラフが表示されます。 インジケータは直感的で、すぐに見つけて任意のペアに切り替えることができ、地下室とメインチャートの両方に配置できるモバイルパネルがあります。 通貨の強さの変化の通知のタイマーモードは、トレーダーに電話で通知を受け取る機会を与えます。  通貨パワーメーターインフィニティ指標を使用するためのいくつかの戦略: 1. 通貨の強さの線形表示のチャートを使用して、交差点を新興トレンドの信号として検索します 2. トレンド反転信号が表示された後、強い通貨の方向に頭皮 3. 通貨の強さの発散分析を使用して、
              Introduction to Smart Renko The main characteristics of Renko Charting concern price movement. To give you some idea on its working principle, Renko chart is constructed by placing a brick over or below when the price make the movement beyond a predefined range, called brick height. Therefore, naturally one can see clear price movement with less noise than other charting type. Renko charting can provide much clearer trend direction and it helps to identify important support and resistance level
              What are Fibonacci Numbers and Lines? Fibonacci numbers are used to create technical indicators using a mathematical sequence developed by the Italian mathematician, commonly referred to as "Fibonacci," in the 13th century. The sequence of numbers, starting with zero and one, is created by adding the previous two numbers. For example, the early part of the sequence is 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89,144, 233, 377, and so on. The Fibonacci sequence is significant because of the so-call
              Owl smart levels
              Sergey Ermolov
              4.13 (23)
              MT5版  |   FAQ Owl Smart Levels Indicator   は、 Bill Williams   の高度なフラクタル、市場の正しい波構造を構築する Valable ZigZag、エントリの正確なレベルをマークする Fibonacci レベルなどの一般的な市場分析ツールを含む 1 つのインジケーター内の完全な取引システムです。 利益を得るために市場と場所に。 戦略の詳細な説明 インジケータを操作するための指示 顧問-取引助手 プライベートユーザーチャット ->購入後に私に書いて、私はプライベートチャットにあなたを追加し、あなたはそこにすべてのボーナスをダウンロードすることができます 力はシンプルさにあります! Owl Smart Levels   取引システムは非常に使いやすいので、専門家にも、市場を勉強し始めて自分で取引戦略を選択し始めたばかりの人にも適しています。 戦略と指標に秘密の数式や計算方法が隠されているわけではなく、すべての戦略指標は公開されています。 Owl Smart Levels を使用すると、取引を開始するためのシグナルをすばやく確認し、
              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
              This indicator is the undisputed leader among the indicators. And for this statement there is a good reason. The indicator builds a very high quality channel in which it generates signals to enter! What is the ideal strategy for the trader, since the trader always hesitates when choosing a strategy for the job. That is, this indicator will allow you to solve the dilemma of choosing a job by trend or to the channel, since it combines these two basic concepts. Working with the indicator is very
              Concept Mean reversion is a concept in trading based on prices eventually returning to their mean or average level after a period of divergence or departure from the historical mean. Traders deploying mean reversion techniques typically wait for assets to diverge significantly from their mean values and then place trades on the assumption the price will return to the mean at some point in the future- this is also known as re-coupling or convergence. There are several mean reversion based trading
              The trend is your friend! This is what this indicator is all about. Follow this famous saying and be safe. Characteristics: Buy/Sell signals fixed on the close of a bar. Works on all symbols and all timeframes. Clear visual market trend laser line, Buy/Sell signal arrows, market strength meter, TP1 & TP2 boxes. Visual signals when to enter, when to exit the market. No repainting. Compatible with Flexible EA for trading automation. (Ask for a free set file optimized to perform 2010-2018) Para
              The indicator displays renko bars on a chart, uses them to plot the fast and slow moving average and Stochastic, as well as it provides buy/sell signals: a buy signal is generated when the fast moving is above the slow one, and the signal line of Stochastic crosses the lower level from bottom up; a sell signal is generated when the fast moving is below the slow one, and the signal line of Stochastic crosses the upper level from top to bottom; Renko is a non-trivial price display method. Instead
              The indicator detects and displays Shark 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 comple
              MT4用FXインジケーター「MACD with Trend ZigZag」 MACD インジケーター自体は、トレンド取引で最も人気のあるツールの 1 つです。 「MACD with Trend ZigZag」は、プライスアクションエントリーや他のインジケーターと組み合わせて使用するのに最適です このインジケーターを使用して、最も正確なエントリーシグナルを選択します。 - MACD が 0 (緑色) より上で、ジグザグ ラインが上向きの場合 - 買値アクション パターンのみを検索します - MACD が 0 (ピンク色) 未満で、ジグザグ ラインが下向きの場合 - 売り価格アクション パターンのみを検索します インジケーターにはモバイルおよび PC アラートが組み込まれています // さらに優れたエキスパートアドバイザーとインジケーターはここから入手できます: https://www.mql5.com/en/users/def1380/seller 当MQL5サイトのみでご提供しているオリジナル商品です。
              Mastodon - displays potential market entry points. According to the wave theory, Mastodon displays the course of a large wave, while the oscillator can specify the entry point, that is, catch the price movement inside it, i.e. small “subwaves”. By correctly understanding the wave nature of price movements and using the Mastodon indicator in conjunction with an oscillator, you can create your own trading system, for example, entering the market after a large wave has formed and then exiting wh
              これは、変動するフラクタル期間のブレイクアウトをトレードするための非常にシンプルでありながら効果的な指標です。フラクタルは、奇数のバーの価格形成であり、中央のバーが形成の最高または最低価格ポイントです。これらの価格は短期のサポートとレジスタンスのレベルとして機能し、このインジケーターは価格チャネルを描き、ブレイクアウトを表示するために使用します。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 取引が簡単 フラクタルブレイクアウトは長いトレンドを開始することができます フラクタルチャンネルは素晴らしいトレーリングストップメソッドです 再描画および非再描画ではありません あらゆる種類のアラートを実装します カスタマイズ可能な色とサイズ 期間を長くすると、ブレークアウトの信頼性が高まりますが、出現頻度は低くなります。この指標は、より高いタイムフレーム分析で確認する必要があります。一般に、短い時間枠ではフラクタル期間を増やし、長い時間枠ではフラクタル期間を短くします。 入力パラメータ 期間:フラクタルを計算するバーの量。奇数で
              This index can be traced back to historical transactions, and can clearly see the trading location, trading type, profit and loss situation, as well as statistical information. Showlabel is used to display statistics. Summy_from is the start time of order statistics. This parameter is based on the opening time of the order. Backtracking can help us to correct the wrong trading habits, which is very important for beginners to learn manual transactions. This index is suitable for each time
              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
              発見が困難で頻度が少ないため、分岐は最も信頼できる取引シナリオの1つです。このインジケーターは、お気に入りのオシレーターを使用して、通常の隠れた分岐点を自動的に見つけてスキャンします。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 取引が簡単 通常の隠れた発散を見つけます 多くのよく知られている発振器をサポート ブレイクアウトに基づいて取引シグナルを実装します 適切なストップロスおよび利益レベルを表示します 設定可能なオシレーターパラメーター カスタマイズ可能な色とサイズ バー単位でサイズ別に分岐をフィルタリング パフォーマンス統計を実装します 電子メール/音声/視覚アラートを実装します 幅広い市場の見通しを提供するために、異なるオシレーターを使用して、干渉なしで同じチャートにインジケーターを何度もロードできます。このインジケーターは、次のオシレーターをサポートしています。 RSI CCI MACD オスマ 確率的 勢い 素晴らしい発振器 加速器発振器 ウィリアムズパーセントレンジ 相対活力指数 特に外国為替市
              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
              このプロダクトを購入した人は以下も購入しています
              Gann Made Easy は、ミスター・ギャンの理論を使用した取引の最良の原則に基づいた、プロフェッショナルで使いやすい外国為替取引システムです。 W・D・ガン。このインジケーターは、ストップロスとテイクプロフィットレベルを含む正確な買いと売りのシグナルを提供します。 PUSH通知を利用して外出先でも取引可能です。 購入後はご連絡ください!私の取引のヒントと素晴らしいボーナスインジケーターを無料で共有します! おそらく、ギャンの取引手法についてはすでに何度も聞いたことがあるでしょう。通常、ギャンの理論は初心者のトレーダーだけでなく、すでにある程度の取引経験がある人にとっても非常に複雑なものです。なぜなら、ギャンの取引手法は理論的にはそれほど簡単に適用できるものではないからです。私はその知識を磨き、最良の原則を私の外国為替インジケーターに組み込むために数年を費やしました。 このインジケーターは非常に簡単に適用できます。必要なのは、それをチャートに添付し、簡単な取引推奨事項に従うだけです。このインジケーターは常に市場分析の仕事を行い、取引の機会を探します。適切なエントリーポイントを検出
              まず第一に、この取引インジケーターは再描画されず、再描画されず、遅延しないことを強調する価値があります。これにより、手動取引とロボット取引の両方に理想的なものになります。 ユーザーマニュアル:設定、入力、戦略。 アトミックアナリストは、価格の強さとモメンタムを利用して市場でより良いエッジを見つけるためのPA価格アクションインジケーターです。ノイズや誤ったシグナルを除去し、取引ポテンシャルを高めるための高度なフィルターを備えています。複雑なインジケーターの複数のレイヤーを使用して、アトミックアナリストはチャートをスキャンし、複雑な数学的計算をシンプルなシグナルと色に変換します。これにより、どのような初心者トレーダーでも理解して使用し、一貫した取引の決定を行うことができます。 「アトミックアナリスト」は、新規および経験豊富なトレーダー向けにカスタマイズされた包括的な取引ソリューションです。プレミアムインジケーターとトップノッチの機能を1つの取引戦略に組み合わせ、すべてのタイプのトレーダーにとって汎用性のある選択肢にします。 デイリートレーディングとスキャルピング戦略:高
              Trend Punch
              Mohamed Hassan
              5 (13)
              This indicator is unstoppable when combined with our other indicator called  Support & Resistance . After purchase, send us a message and you will get it   for  FREE as a BONUS! Introducing Trend Punch , the revolutionary forex trend indicator that will transform the way you trade! Trend Punch is uniquely designed to provide precise buy and sell arrows during strong market trends, making your trading decisions clearer and more confident. Whether you're trading major currency pairs or exotic sym
              最初のパルスレベルを反転 (RFI)     指示する     ロシア     -        utilizar con   el indicador の ESP 推奨事項 -   TPSpro トレンド プロフェッショナル版 -   MT5のバージョン 最も重要なことは、将来においても最も重要なことです。 機能のプリンシパル: ゾーンのほとんどは、ベンダーとコンプラドールによってアクティブ化されます。 状況を直感的に把握できるよう、初期の衝動を修正します。 LOGIC AI: MUESTRA zonas (círculos) parabuscar puntos de entrada cuando se activa una plantilla 視覚的に優れた視覚効果があり、最も重要な機能がすべて揃っていることに注意してください。 優れたニベレス/ゾーンの視覚化 (modo MTF) 世界で最も人気のある場所/ゾーンです。これを使用するのに最適な方法です (   TPSproTREND PRO   )。 アルゴリズム プロフェッショナル セパラド パソ ア パソ パラ オペラ それは
              An exclusive indicator that utilizes an innovative algorithm to swiftly and accurately determine the market trend. The indicator automatically calculates opening, closing, and profit levels, providing detailed trading statistics. With these features, you can choose the most appropriate trading instrument for the current market conditions. Additionally, you can easily integrate your own arrow indicators into Scalper Inside Pro to quickly evaluate their statistics and profitability. Scalper Inside
              mql5と Telegramの モーニング・ブリーフィングで、詳細とスクリーンショットを含む毎日のマーケット・アップデートをご覧 ください! FX Power MT4 NGは 、長年の人気を誇る通貨強度計FX Powerの次世代モデルです。 この次世代ストレングスメーターは何を提供するのでしょうか?初代FXパワーの魅力すべて プラス GOLD/XAUの強さ分析 より正確な計算結果 個別に設定可能な分析期間 カスタマイズ可能な計算上限値により、さらに優れたパフォーマンスを実現 もっと見たい人のための特別なマルチインスタンス設定 すべてのチャートでお好みの色を無限に設定可能 数え切れないほどの通知オプションにより、重要なことを見逃すことはありません。 Windows 11とmacOSのスタイルで角を丸くした新しいデザイン 魔法のように動くインジケーターパネル FXパワーの主な機能 すべての主要通貨の強さの完全な履歴 すべての時間枠における通貨の強さの履歴 すべてのブローカーとチャートで同一の計算結果 100%信頼できるリアルタイム計算 -> リペイントなし ドロップダウン・リストから
              TPSpro TREND PRO は 、市場を自動的に分析し、トレンドとその各変化に関する情報を提供し、再描画せずに取引に参加するためのシグナルを提供するトレンド指標です。 インディケータは各ローソク足を使用し、個別に分析します。さまざまなインパルス(アップまたはダウンインパルス)を指します。通貨、仮想通貨、金属、株、指数の取引への正確なエントリーポイント! バージョンMT5                   インジケーターの完全な説明   インジケーター -   RFI LEVELS と併用することをお勧めします。 主な機能: レンダリングなしで正確な入力信号! シグナルが表示された場合、それは関連性を維持します。これは、シグナルを提供してからそれを変更する可能性があり、入金時の資金の損失につながる可能性があるリドローインジケーターとの重要な違いです。より高い確率と精度で市場に参入できるようになりました。矢印が表示された後、ターゲットに達する (利益確定) か反転シグナルが表示されるまで、ローソク足を色付けする機能もあります。 STOP LOSS / TAKE PROFIT
              Please contact me after purchase to immediately get your PDF strategy + documentation for Trend Pulse !  Official release price of $89  (3 /50 copies left). Next price is $199 . Introducing Trend Pulse , a unique and robust indicator capable of detecting bullish, bearish, and even ranging trends! Trend Pulse uses a special algorithm to filter out market noise with real precision. If the current symbol is moving sideways, Trend Pulse will send you a ranging signal, letting you know that it'
              まず第一に、この取引ツールはノンリペイント、ノンリドロー、ノンラグの指標であり、プロの取引に理想的ですことを強調する価値があります。 オンラインコース、ユーザーマニュアル、デモ。 スマートプライスアクションコンセプトインジケーターは、新米から経験豊富なトレーダーまで、非常 に強力なツールです。Inner Circle Trader AnalysisやSmart Money Concepts Trading Strategiesなど、20以上の有用な指標を1つに組み合わせています。このインジケーターはスマートマネーコンセプトに焦点を当て、大手機関の取引方法を提供し、彼らの動きを予測するのに役立ちます。 特に、流動性分析に優れており、機関がどのように取引しているかを理解しやすくしています。市場のトレンドを予測し、価格の動きを慎重に分析するのに優れています。機関の戦略とトレードを合わせることで、市場の動向についてより正確な予測ができます。このインジケーターは多目的であり、市場構造を分析し、重要な注文ブロックを特定し、さまざまなパターンを認識するのに優れています。 このインジケー
              現在26%オフ 初心者やエキスパートトレーダーに最適なソリューション! このインジケーターは、独自の機能と新しい計算式を取り入れた、ユニークで高品質、かつ手頃な価格のトレーディングツールです。たった1枚のチャートで28の為替ペアの通貨強度を読み取ることができます。新しいトレンドやスキャルピングチャンスの引き金となるポイントを正確に特定することができるので、あなたのトレードがどのように改善されるか想像してみてください。 ユーザーマニュアルはこちら  https://www.mql5.com/en/blogs/post/697384 これが最初の1本、オリジナルだ! 価値のないクローンを買わないでください。 特別な サブウィンドウの矢印で強い通貨の勢いを表示 GAPがあなたのトレードを導く! 基準通貨や気配値が売られすぎ・買われすぎのゾーン(外相フィボナッチレベル)にあるとき、個別チャートのメインウィンドウに警告表示。 通貨がレンジの外側から反落した場合、プルバック/リバーサルのアラート。 クロスパターンの特別なアラート 複数の時間枠を選択可能で、トレンドを素早く
              ご紹介   クォンタム トレンド スナイパー インジケーターは 、トレンド反転を特定して取引する方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。     クォンタムトレンドスナイパーインジケーター   は、非常に高い精度でトレンドの反転を識別する革新的な方法で、あなたのトレーディングの旅を新たな高みに押し上げるように設計されています。 ***Quantum Trend Sniper Indicatorを購入すると、Quantum Breakout Indicatorを無料で入手できます!*** クォンタム ブレイクアウト インジケーターは、トレンドの反転を特定するとアラートを発し、矢印を示し、3 つのテイクプロフィットレベルを提案します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック MT5のバージョン:       ここをクリック 推奨事項: 期間: すべての時間枠。最良の結果を得るには、
              通貨強さウィザードは、取引を成功させるためのオールインワン ソリューションを提供する非常に強力な指標です。このインジケーターは、複数の時間枠のすべての通貨のデータを使用して、このまたはその外国為替ペアのパワーを計算します。このデータは、使いやすい通貨インデックスと通貨パワーラインの形式で表され、特定の通貨のパワーを確認するために使用できます。 必要なのは、取引したいチャートにインジケーターを接続することだけです。インジケーターは、取引する通貨の実際の強さを示します。このインジケーターは、トレンドに合わせて取引するときに有利に利用できる売買高の圧力の極値も示します。このインジケーターには、フィボナッチに基づく可能なターゲットも表示されます。 このインジケーターは、PUSH 通知を含むあらゆるタイプのアラートを提供します。 購入後ご連絡下さい。私の取引のヒントをあなたと共有し、素晴らしいボーナスインジケーターを無料で提供します! 幸せで有益な取引をお祈りします。
              現在20%OFF! 初心者やエキスパートトレーダーのためのベストソリューション! このダッシュボードソフトウェアは、28の通貨ペアで動作しています。それは私達の主要な指標(高度な通貨の強さ28と高度な通貨インパルス)の2に基づいています。それは全体の外国為替市場の大きい概観を与えます。それは、すべての(9)時間枠で28の外国為替ペアのための高度な通貨の強さの値、通貨の動きの速度と信号を示しています。チャート上で1つのインディケータを使用して市場全体を観察し、トレンドやスキャルピングの機会をピンポイントで見つけることができたら、あなたのトレードがどのように改善されるか想像してみてください。 このインディケータには、強い通貨と弱い通貨の識別、潜在的な取引の識別と確認がより簡単になるような機能が搭載されています。このインディケータは、通貨の強さや弱さが増加しているか減少しているか、また、すべての時間枠でどのように機能しているかをグラフィカルに表示します。 新機能として、現在の市場環境の変化に適応するダイナミックなマーケットフィボナッチレベルが追加され、すでに当社のAdvan
              Bomb Bank シグナル: MetaTrader 4 の信頼度インジケーター Bomb Bank Signal は、金融市場で最も関連性の高いトレンドを特定するように設計された MetaTrader 4 の強力なインジケーターです。動きを正確に予測するツールをお探しなら、Bomb Bank が最適です。 仕組み: このインジケーターは、出来高分析、ローソク足終値、対称トレンドという 3 つの異なる方法を組み合わせて、売買の機会を検出してシグナルを送ります。 Bomb Bank は、買いの機会を特定するときは「爆弾」のようなものであり、売りシグナルを検出するときは「ドクロ」のようなものです。 ボムバンクはなぜ違うのですか? 完全な信頼性: Bomb Bank Signal は信号を削除しません。一度シグナルが発せられると、シグナルは残り続けるので、チャンスを逃すことはありません。 極めて高い精度: Bomb Bank は誤った信号を送信しません。リアルタイムで最新情報を更新し、市場の進化に合わせて調整しながら、以前のシグナルの透明性を維持します。 ライブアップデ
              現在31%オフ! 初心者やエキスパートトレーダーに最適なソリューション! このインジケータは、独自の機能と秘密の数式を組み込んだ、ユニークで高品質かつ手頃な価格のトレーディングツールです。たった1枚のチャートで28の通貨ペアのアラートを表示します。新しいトレンドやスキャルピングチャンスの引き金となるポイントを正確に把握することができるので、あなたのトレードがどのように改善されるか想像してみてください! 新しい基本的なアルゴリズムに基づいて構築されているため、潜在的な取引の特定と確認がより簡単になります。これは、通貨の強さや弱さが加速しているかどうかをグラフィカルに表示し、その加速のスピードを測定するためです。加速すると物事は明らかに速く進みますが、これはFX市場でも同じです。つまり、反対方向に加速している通貨をペアにすれば、利益を生む可能性のある取引を特定することができるのです。 通貨の勢いを示す縦の線と矢印は、あなたの取引の指針となるでしょう。 ダイナミックマーケットフィボナッチ23レベルはアラートトリガーとして使用され、市場の動きに適応します。もしインパルスが黄色
              Advanced Supply Demand
              Bernhard Schweigert
              4.9 (271)
              現在33%オフ 初心者にもエキスパートトレーダーにも最適なソリューション このインジケーターは独自の機能と新しい公式を多数内蔵しており、ユニークで高品質かつ手頃な取引ツールです。このアップデートでは、2つの時間枠ゾーンを表示できるようになります。より長いTFだけでなく、チャートTFとより長いTF(ネストゾーンを表示)の両方を表示できます。すべてのSupply Demandトレーダーの皆さんのお気に召すはずです。:) 重要情報の公開 Advanced Supply Demandの可能性を最大化するには、 https://www.mql5.com/ja/blogs/post/720245 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適
              今、147ドル(いくつかの更新後に499ドルに増加します) - 無制限のアカウント(PCSまたはMac) RelicusRoad ユーザー マニュアル + トレーニング ビデオ + プライベート Discord グループへのアクセス + VIP ステータス 市場の新しい見方 RelicusRoad は、外国為替、先物、暗号通貨、株式、および指数の世界で最も強力な取引インジケーターであり、トレーダーに収益を維持するために必要なすべての情報とツールを提供します。初心者から上級者まで、すべてのトレーダーが成功するためのテクニカル分析と取引計画を提供します。これは、将来の市場を予測するのに十分な情報を提供する重要な取引指標です。意味をなさないチャート上のいくつかの異なる指標ではなく、完全な解決策を信じています.これは、信号、矢印 + 価格アクション情報を表示するオールインワンのインジケーターで、他に類を見ない非常に正確です。 強力な AI に基づいて、RelicusRoad は不足している情報とツールを提供して、あなたを教育し、トレーディングのプロ、成功したトレーダーにします。
              Scalper Vault は、スキャルピングを成功させるために必要なすべてを提供するプロフェッショナルなスキャルピング システムです。このインジケーターは、外国為替およびバイナリー オプションのトレーダーが使用できる完全な取引システムです。推奨される時間枠は M5 です。 システムは、トレンドの方向に正確な矢印シグナルを提供します。また、トップとボトムのシグナルとギャン マーケット レベルも提供します。 インジケーターは、プッシュ通知を含むすべてのタイプのアラートを提供します。 インジケータの購入後にご連絡ください。私の個人的な取引の推奨事項と素晴らしいボーナス指標を無料で共有します! 幸せで有益な取引をお祈りします!
              カスタムMT4インジケーターで外国為替取引を成功させるための秘密を発見してください! 外国為替市場で成功を達成し、リスクを最小限に抑えながら一貫して利益を得る方法を疑問に思ったことはありますか? これがあなたが探している答えです! 取引へのアプローチに革命をもたらす独自のMT4インジケーターを導入できるようにします。 ユニークな汎用性 私たちのインジケータは、RenkoとRangeBarのろうそくのフォーメーションを好むユーザー向けに特別に設計されています。 これらのチャートタイプは多くの経験豊富なトレーダーに好まれていることを理解しています。そのため、私たちのインジケーターはそれらとシームレスに統合され、比類のない市場分析を提供します。 クリアトレンドシグナル 複雑な分析を忘れてください! 私たちのインジケーターは、鮮やかな色と明確なドット構造を利用して、市場の動向を明確に示しています。 赤と青の点は、価格の動きの方向性について疑いの余地がなく、取引の迅速な意思決定を可能にします。 HH/HL HL/LL戦略とのアライメント HH/HLおよびHL/LL構
              Trend Screener
              STE S.S.COMPANY
              4.79 (81)
              トレンドインジケーター、1つのツールに組み込まれたすべての重要なトレンド機能を備えたトレンドトレーディングとフィルタリングのための画期的なユニークなソリューション! これは、すべてのシンボル/商品(外国為替、商品、暗号通貨、インデックス、株式)で使用できる100%再描画されていないマルチタイムフレームおよびマルチ通貨インジケーターです。 トレンドスクリーナーは、チャート内のドットで矢印トレンドシグナルを提供するインジケーターに続く効率的なインジケーターです。 トレンド分析インジケーターで使用できる機能: 1.トレンドスキャナー。 2.最大利益分析を備えたトレンドライン。 3.トレンド通貨強度メーター。 4.アラート付きのトレンド反転ドット。 5.アラート付きの強いトレンドドット。 6.トレンド矢印 毎日の分析例、毎日のシグナルパフォーマンス...など、トレンドスクリーナーインジケーターを使用して、ここで見つけることができます: ここをクリックしてください 期間限定オファー:トレンドスクリーナーインジケーターは、50ドルと生涯でのみご利用いただけます。 (元の価格125 $) MQ
              Order Block Hunter
              Noha Mohamed Fathy Younes Badr
              5 (1)
              Order block hunter indicator is the best indicator for  hunt the order blocks that area where there has been a large concentration of limit orders waiting to be executed Order blocks are identified on a chart by observing previous price action and looking for areas where the price experienced significant movement or sudden changes in direction .This indicator does that for you by using very complicated codes and helps you to take the best areas To buy and sell because it make marks at the best a
              Best Currency Strength Indicator
              Tumelo Patrick Rakotsoane
              4.54 (41)
              Advanced Currency Strength Indicator The Advanced Divergence Currency Strength Indicator. Not only it breaks down all 28 forex currency pairs and calculates the strength of individual currencies across all timeframes , but, You'll be analyzing the WHOLE forex market in 1 window (In just 1 minute) . This indicator is very powerful because it reveals the true movements of the market.  It is highly recommended to  analyze charts knowing the performance of individual currencies or the countries ec
              製品を購入する前に、以下の情報をお読みください。 Apollo Pips PLUS SP はユニークな製品です。これは、私の新しい「アポロ ピップス」インジケーターと、私のすべての取引インジケーターにアクセスできる「スーパー パック」ボーナスを手に入れたい人のためのものです。 Apollo Pips PLUS SP 製品を購入すると、実際には私の Apollo Pips インジケーターのまったく新しいバージョンを購入することになります。このバージョンのインジケーターには改良されたアルゴリズムと使いやすいパラメーターがあり、あらゆる市場およびあらゆる取引スタイルでインジケーターを使用する機会が得られます。 この製品の購入者は、私のスーパーボーナスとして、他のすべてのインジケーターにも無料でアクセスできます!私のすべての取引ツールにアクセスしたい場合は、この製品が最適です!:) しかし、これがすべてではありません!:) この製品のすべての購入者は、私の新しいインジケーターを無料で入手する資格もあります!:)新しい取引インジケーターを利用できるようになりました。私の特権のある「スーパー パッ
              FX Volume
              Daniel Stein
              4.48 (27)
              mql5と Telegramの モーニング・ブリーフィングで、詳細とスクリーンショットを含む毎日のマーケット・アップデートをご覧 ください! FX Volumeは、ブローカーの視点から市場のセンチメントをリアルに洞察する、最初で唯一の出来高インジケーターです。 ブローカーのような機関投資家が外国為替市場でどのようなポジションをとっているか、COTレポートよりもはるかに速く、素晴らしい洞察を提供します。 この情報をチャート上で直接見ることは、あなたの取引にとって真のゲームチェンジャーであり、画期的なソリューションです。 以下のようなユニークなマーケットデータ洞察から利益を得てください。 比率は 、通貨のロングポジションとショートポジションの比率をパーセントで表示します。 比率の変化は 、選択した期間内のロング比率とその変化率を表示します。 Volumes Totalは 、通貨の取引量(ロングとショート)の合計をロット単位で表示します。 Volumes Long :全通貨のロングポジションの取引量を表示します。 Volumes(ショート )は、全通貨のショートポジションの取引量を表示
              現在20%OFF! 初心者やエキスパートトレーダーに最適なソリューションです。 このインディケータは、エキゾチックペア・コモディティ・インデックス・先物など、あらゆるシンボルの通貨の強さを表示することに特化したインディケータです。金、銀、原油、DAX、US30、MXN、TRY、CNHなどの通貨の強さを表示するために、9行目にどのシンボルでも追加することができます。独自の機能を多数搭載し、新しい計算式を採用したため、ユニークで高品質、かつ手頃な価格のトレーディングツールとなっています。新しいトレンドやスキャルピングチャンスのトリガーポイントを正確に把握することができるため、あなたのトレードがどのように改善されるか想像してみてください。 ユーザーマニュアル:ここをクリック   https://www.mql5.com/en/blogs/post/708876 すべての時間枠に対応します。あなたはすぐにトレンドを見ることができるようになります! 新しいアルゴリズムに基づいて設計されているため、潜在的な取引の特定と確認がより簡単になります。これは、8つの主要通貨と1つのシンボ
              M1 Arrow
              Oleg Rodin
              4.67 (12)
              市場の2つの基本原則に基づく日中戦略。 このアルゴリズムは、追加のフィルターを使用したボリュームと価格の波の分析に基づいています。インディケータのインテリジェントアルゴリズムは、2つの市場要因が1つに結合した場合にのみシグナルを出します。インディケータは、より高い時間枠のデータを使用して、M1チャート上の特定の範囲の波を計算します。そして波を確認するために、インジケーターはボリュームによる分析を使用します。 このインディケータはレディトレーディングシステムです。トレーダーが必要とするのは、信号に従うことだけです。また、インジケーターはあなた自身の取引システムの基礎になることができます。取引はミニッツチャートでのみ行われます。 インジケーターがMTFの原則を使用しているという事実にもかかわらず、インジケーターのアルゴリズムは可能な限り安定しています。 購入後、必ず私に書いてください!私の取引設定と推奨事項をあなたと共有します!
              `All in One Chart Patterns` チャートパターンはトレーダーの間で議論の的となっています。信頼できるシグナルだと考える人もいれば、そうでないと考える人もいます。当社の「Chart Patterns All-in-One」インジケーターは、これらのパターンを表示し、自分自身で理論を検証できるようにします。これらのパターンの収益性は、インジケーターの有効性を反映するものではなく、むしろパターン自体の評価です。「Chart Patterns All-in-One」インジケーターは、これらのパターンを視覚化するための優れたツールであり、取引戦略における有効性について自分自身で結論を下すことができます。 このインジケーターは、複数のチャートパターンを1つの統合ツールに組み合わせて、MetaTrader 4 (MT4) で使用します。チャートから直接各パターンをオンまたはオフに切り替える機能を提供し、カスタマイズ可能で効率的な分析を可能にします。以下は、インジケーターとその中に含まれるパターンの詳細な説明です。 #### 含まれるパターン: 1. **パターン
              PRO Renko Systemは、特別にRENKOチャートを取引するために設計された高精度の取引システムです。 これは、様々な取引商品に適用することができる普遍的なシステムです。 システムは効果的に正確な逆転信号へのアクセスを与えるいわゆる市場の騒音を中和する。 表示器は非常に使いやすく、信号の生成に責任がある1つの変数だけがあります。 あなたは簡単にお好みの任意の取引ツールとレンコバーのサイズにツールを適応させることができます。 私はいつもあなたが私のソフトウェアで収益性の高い取引を支援するために余分なサポートを提供する準備ができています! 私はあなたに幸せで収益性の高い取引をしたいです! ご購入後にご連絡ください! 私はあなたに私のレンコチャートジェネレータを送信します。 私はまた、私の個人的な推奨事項やシステムの他のモジュールを無料で共有します!
              Break and Retest
              Mohamed Hassan
              3.83 (12)
              This Indicator only places quality trades when the market is really in your favor with a clear break and retest. Patience is key with this price action strategy! If you want more alert signals per day, you increase the number next to the parameter called: Support & Resistance Sensitivity.  After many months of hard work and dedication, we are extremely proud to present you our  Break and Retest price action indicator created from scratch. One of the most complex indicators that we made with ove
              PZ Day Trading
              PZ TRADING SLU
              3.67 (3)
              このインディケータは、価格アクション分析とドンチャンチャネルのみを使用して、ジグザグ方式で価格の反転を検出します。再描画やバックペインティングを一切行わずに、短期取引向けに特別に設計されています。それは彼らの操作のタイミングを増やすことを目指している賢明なトレーダーにとって素晴らしいツールです。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 驚くほど簡単に取引できます すべての時間枠で価値を提供します 自己分析統計を実装します 電子メール/音声/視覚アラートを実装します 可変長のブレイクアウトと混雑ゾーンに基づいて、インディケータは価格アクションのみを使用して取引を選択し、市場が非常に高速に行っていることに反応します。 過去のシグナルの潜在的な利益が表示されます この指標は、独自の品質とパフォーマンスを分析します 負けブレイクアウトは強調表示され、説明されます インジケータは、非バックペインティングおよび非再ペイントです この指標は、日中のトレーダーが単一の価格反転を見逃さないようにするのに役立ちます。ただし、す
              作者のその他のプロダクト
              TDI Multi Timeframe Scanner: This Dashboard indicator uses the TDI (Trader's Dynamic Index) Indicator to find best trades. Read detailed How to Use Guide: https://www.mql5.com/en/blogs/post/758252 Extra indicators also available in above post. Checks for: - SharkFin Pattern Free indicator for SharkFin: https://www.mql5.com/en/market/product/42405/ - TDI Trend: Strong/Weak Trend Up/Down - TDI Signal: Strong/Medium/Weak Signal for Buy/Sell - Consolidation - Overbought/Oversold - Volatilit
              3 Level ZZ Semafor Scanner: This is a Dashboard indicator which uses 3LZZ Indicator in the background to find semafors. It will give priority to the semafors3 because they specify a strong signal. So, even if there is a sem1 or 2 on current bar, and if Sem3 was within "Check Previous Bars for Sem 3". Then it will show Sem3 instead. Read about this in detailed post: https://www.mql5.com/en/blogs/post/758250 And get all extra Indicators/Template from above link. Please note: Number of setti
              This strategy is best used for Scalping and Binary Options. Strategy: There are 3 EMAs: Faster, Medium and Slower. When Price is Trending, wait for Price to bounce an EMA and scalp at each bounce. Features: - Check if 3 MAs are Stacked - Check Price Bounce Off MAs (Faster, Medium, Slower) - Min Distance Between Faster and Medium MA Filter - Max Distance Between Entry Price and Faster MA Filter - High Volume Check - Heiken Trend Check - Volatility Check - Higher/Lower Timeframes MA Stacked check
              Read detailed description and Get Free Demo and extra indicators: https://www.mql5.com/en/blogs/post/758610 Features: Halftrend Arrow Scan: Scan Max Past Bars for Halftrend arrows. Show how many bars back the arrow occurred in a bracket Past Bars Back Alerts: Num of bars back for which scanner will send alerts Halftrend HTF Align: Scan Higher timeframes for Trend Direction of Halftrend Indicator and if trends align show a slanting Green/Red Arrow for Up/Down trend Semafor 3 Check: Few bars
              About: A Fibonacci indicator is best used with other indicators like Pivots, Support/Resistance etc. Price tends to use Fibo levels as Support or Resistance lines. So, this indicator is very useful to know when price might reverse or if a level is crossed, price might continue the trend. Also, to find the best Take Profit and StopLoss lines. Don't use Fibo Indicator alone for trading as it might not always be accurate. Use it to make your strategies better as a supporting indicator. Settings:
              FREE
              How To Use Check out this post for detailed description on  All Indicator extras and template: https://www.mql5.com/en/blogs/post/758259 The Best Heiken Ashi System is a simple trading system for trading based only two indicators for generate signals: Heiken ashi smoothed and Vqzz indicator multi-timeframe. The system was created for scalping and day trading but can also be configured for higher time frames. As mentioned, the trading system is simple, you get into position when the two ind
              FREE
              This is a Sharkfin Arrows Indicator. Get TDI extra indicators here: https://www.mql5.com/en/blogs/post/758252 This indicator will show only Arrows. It does not have TDI symbols on chart. Please get the extras from links above for TDI indicators. TDI Scanner Dash (paid): https://www.mql5.com/en/market/product/41826 About: This Indicator finds the Shark Fin Pattern. It will show an arrow in the current bar if RSI sharkfin is finished forming in previous bar. What is Shark Fin TDI Patt
              FREE
              Features: 1- Get OB/OS Levels from Golden MA Levels 2- Wait for Buy/Sell Start Level Cross 3- Optional: Should price cross Mid Level in earlier bars 4- Optional: Crossing bar High/Medium Volume 5- Optional: MA Stacked to check up/down trend for current TF 6- Optional: NRTR higher timeframes aligned Check Detailed blog post explained: https://www.mql5.com/en/blogs/post/758457 Levels with Buffers available here: Golden MA Levels Indicator: https://www.mql5.com/en/market/product/119515
              FREE
              This indicator is based on Guppy's GMMA Strategy. And shows arrows when GMMA lines cross up or down. To have this indicator and get alerts for Multiple Timeframes and multiple Pairs you can check out the demo of this GMMA Trend Scanner indicator: https://www.mql5.com/en/market/product/38747 About GMMA In Brief: GMMA attempts to identify trends by combining two groups of moving averages with differing time periods: The long-term EMAs (30, 35, 40, 45, 50, and 60) the behaviors of investors that
              FREE
              Dashboard uses Ichimoku Strategy to find best trades. Get extra Indicators/Template: And read more about detailed Product Description and usage here: https://www.mql5.com/en/blogs/post/747457 Please note: I won’t be able to add new settings. It already has 72 settings  :) Some people are using it with their EAs. And iCustom function can only take Max 64 settings. So, I cannot let it grow any further. I’ll definitely be maintaining the code and solving issues. Don’t worry. Please check all
              How the Indicator Works: This is a Multi-timeframe MA multimeter indicator which studies if price is above or below a particular EMA range and shows Red/Green/Yellow signals. Red: Price Below EMA range Green: Price above range Yellow: Price within range Indicator Properties: EMA Settings: - Default Period is 200. You can change all MA Settings like Period, MA Method (SMA, EMA, etc) or MA Applied Price (Close, Open, etc). - EMA Range list is a comma separated value list for different timefr
              FREE
              Scanner Dashboard for Best Heiken Ashi VQZZ Arrows Indicator here: https://www.mql5.com/en/market/product/45900 Check out this post for detailed description on How To Use All Indicator extras and template: https://www.mql5.com/en/blogs/post/758259 Please note that if you are using too many pairs/timeframes, then VQZZ calculations might slow down the dashboard. So be careful not to use too many VQZZ Higher timeframes if you are using too many pairs. Also, VQZZ is based on higher timeframes. e
              This strategy is best used for Trend based trading. While market is trending, price still makes smaller ranges. Darvas boxes show breakouts from these small ranges, while still following the original market trend. Detailed Description: https://www.mql5.com/en/blogs/post/747919 Features: Darvas - Check Darvas Box Breakout -   Check Price Above/Below MA or Darvas Box has crossed MA -   Min, Max Box Height -   Max Distance Between Entry Price and Darvas Box Other Indicators: - NRTR Tren
              Description This scanner uses 3LZZ TRO ex4 and scans for Semafors at given “Shift” bar. Scanner Detailed Settings: https://www.mql5.com/en/blogs/post/747456 Other Settings: Set Periods for Semafor 1,2,3 Set alerts on/off for Semafor 1,2,3 Shift bar (Bar on which semafor is scanned) Refresh After Ticks (Number of ticks when dash is refreshed) This scanner is pretty simplistic version. And a more detailed version with a different strategy is available here: https://www.mql5.com/en/market/produ
              FREE
              Features: - Moving Average Slope for Max Past Bars - Slope Period - Slope Thresholds - Multiple Slope Type options - See slope visually as a histogram - Info Panel Show/Hide Slope Calculations and Types: The slope value is calculated using the Slope Period. Suppose Period is 5, it will check the MA value for bar (x) and bar (x+5). And find the slope angle between them. Read detailed description about Slope Types and Settings here: https://www.mql5.com/en/blogs/post/747651
              FREE
              Moving Average Rainbow Stack: Free: Single Currency & Single Timeframe MA Stack Very useful for finding current and higher timeframe trends. Best suited for long term trend based trading. Use fewer MAs for quick scalping. And not suitable during low volatility. Only use during high volatility and steady trending markets. Use this to enhance your existing Trend based strategies to find best trends. Read detailed description https://abiroid.com/product/abiroid-ma-stack Available MTF and Scanner
              FREE
              Abiroid Multi Slope indicator allows you to calculate a Slope Histogram for any line of any indicator . Histogram is for 1 slope line only, but slope values can be calculated for 3 lines total. To have multiple histograms, add as many Slope indicators for custom indicators as you like on chart. You just need to provide the Indicator name, buffer value, slope's period and max number of bars back. By default it has slope calculation for TDI_v4.ex4 indicator. There is no way to specify parameters f
              FREE
              Features: - Current TF GMMA Cross and Trend (Mandatory Check.. G-Up/G-Down) - HTF GMMA Trend Check (Optional.. slanting arrow) - TDI or NRTR Trend Check (Optional.. diamond) Read post for detailed description and downloading extra indicators: https://www.mql5.com/en/blogs/post/758264 Scanner: This is a Dashboard Scanner for finding good trades using the GMMA method as base and TDI method for trend verification. All buttons for all Pairs and Timeframes are clickable and will change the ch
              Extreme TMA System with Arrows Indicator And Buy/Sell Boxes with Take Profit & Stop Loss This is a Non-Repainting Arrows Indicator based on the Extreme TMA System. It shows TMA cross signals and the best BUY/SELL signals. Along with the most predicted TakeProfit. And StopLoss based on TakeProfit ratio. Please note: This is an Arrows only Indicator. Dashboard is sold separately here: https://www.mql5.com/en/market/product/44825 About Indicator: This indicator shows BUY/SELL Signal Arrows a
              This Scanner Dashboard uses the Extreme TMA System Arrows Indicator to show good BUY/SELL signals. This Product contains dashboard only. It does not contain the Abiroid_Arrow_Extreme_TMA.ex4 indicator. Arrows indicator is not necessary for dashboard to work.  To see arrows, you can buy the arrows indicator separately if you like: https://www.mql5.com/en/market/product/44822 Dash shows Slopes for current and Higher Timeframes. - 1st diamond is current TF. Next diamonds are higher TFs (Please N
              Abiroid Profit Percent Series 1: Arrows Indicator Stochastic Ichimoku with ATR Get the Scanner for free. For getting Profit Percentages for Multiple Timeframes and Multiple Pairs. And read detailed description about this indicator and all the settings here. And get extra Indicators, Templates and settings for download: https://abiroid.com/product/profit-percent-stoch-ichimoku-with-atr Watch the tutorial video here: https://youtu.be/C45-9kWPE2Q About The Strategy: This strategy has 3 main
              Profit Percent Series 2 The scanner dashboard available here (for  Free) : https://abiroid.com/product/profitpercent-arrows-ma-confluence Read detailed information about MA Confluence here: https://www.mql5.com/en/blogs/post/747474 Here's a post about Common Settings for all Profit Percent Series Indicators: https://www.mql5.com/en/blogs/post/747456 Strategy: Main Signal Indicators (Any One): MA Cross (In-built) or Hull, OBV Cross, Heiken Ashi Cross Validation Indicators (Preferably l
              This Indicator uses Center of Gravity (COG) Indicator to find you the best trades. It is a reversal based Swing Indicator which contains an  Arrows Indicator. That you can buy here from Metatrader Market. Check out this blog post for detailed How to Use Guide and links to free scanner: https://www.mql5.com/en/blogs/post/758262 Scanner needs this arrows indicator in same directory to run Copy scanner ex4 in same folder as your Arrows Indicator: MQL4/Indicators/Market/ All extra indicators
              Free scanner available here: https://abiroid.com/product/abiroid-ema-scalper Basic Strategy: 1: MA Crossover Up/Down Arrow (Mandatory Check) Optional Checks: 2: If NRTR Check On (Optional): For BUY: Check if NRTR blue and For SELL: NRTR Red If NRTR Shadow Distance On (Optional): Check price for 'x' bars back: at Shadow distance (ATR Multiplier distance) from NRTR line. 3: If High Volume bar On: Check if High Volume or if Medium (if on) Volume bar 'x' bars back 4: If HTF Trend Align On (Option
              This is a Multi-currency multi-timeframe Support/Resistance Scanner Dashboard for Metatrader 4 (MT4) platform. Get all extras and download free demo here: https://abiroid.com/product/abiroid-support-resistance-scanner Read detailed description in post above. Features: Scan Support/Resistance zones (also called Supply/Demand zones) Show alert when price is inside these zones and highlights the pair/timeframe Show or hide SR zones price nearest to current price (Price_Close) Show or hide cur
              This strategy is useful for small timeframe scalping and binary options. Best timeframes: M5,M15,M30 M1 timeframe is too unpredictable. So be careful with that. Read Detailed Description and Get All: - Free Demo - Free Scanner - Extra Indicators ex4 files from https://abiroid.com/product/abiroid-donchian-scanner-and-arrows Arrows Demo only works in strategy tester. So, Arrows Demo won't work with the free scanner. Scanner needs "Abiroid Donchian Arrow.ex4" to work. So make sure both arrows a
              Read detailed description and extra indicators: https://www.mql5.com/en/blogs/post/758622 This Supertrend dashboard is a multi-currency and multi-timeframe dash which gives signals whenever supertrend changes it's trend direction. Please note, that this is not a full trading system. It will help you get initial Supertrend signals and higher timeframe trend alignments. And it’s to be used with your own Supertrend Strategies. Features: 1- Select one of In-Built Supertrend Indicators: xSupertr
              Get Free Scanner and example Strategies And understand detailed description here: https://abiroid.com/product/abiroid-customizer-arrows-and-scanner And get example wrapper here: https://abiroid.com/indicators/customizer-sample-wrappers You can make your own wrappers if your indicators have complex conditions or for In-Built MT4 indicators. Features: - Specify your own Custom Indicator - Specify Buffer values and create Variables - Use those Variables to create your own Buy/Sell Conditions
              This is a multi-timeframe multi-currency Fibo (Fibonacci levels) and Pivots scanner which also shows Missed Pivot count and Fibo Golden Ratio Zones. Select separate Pivot Timeframes for each Dashboard Timeframe Check when price is near a Pivot point Check for Price Crossing Pivot Point Use Mid Pivots (Optional) Show Missed Pivots (Optional) Show High Volume Bar Use Fibo (Optional) Use Fibo Golden Ratio (Optional) Set your preferred Timeframe for Fibo or Pivots Check out   Common Scanner Settin
              Bollinger Bands Breakout Strategy has an Arrows and Scanner Dashboard indicator set. It is for MT4 (Metatrader 4) platform. When price breaks out of a Bollinger Outer Band in a powerful way, it becomes a great position for scalping. Because the next few bars will most likely keep going in the same direction. Especially if Middle band is also sloping towards that breakout. It's also great for Binary options when using 2-3 next few bars. Strategy: BUY  Bollinger Bands: - Price breaks out of
              フィルタ:
              レビューなし
              レビューに返信