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

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
              FREE
              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.
              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
              Download the free version   here. Divergence Divergence refers to when the price of a currency pair moves in one direction while the trend indicator is moving in the opposite direction. With divergence, there can be positive and negative signals. Divergences in Forex trading are quite common signals of technical analysis. These are basic early Forex signals indicating the trend reversal and filter false signals. Application of this indicator It is usually not easy to detect divergences by the t
              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.58 (55)
              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サイトのみでご提供しているオリジナル商品です。
              トレンドトレーディング は、タイミングのプルバックとブレイクアウトにより、市場で起こっているトレンドから可能な限り利益を得るように設計された指標です。確立されたトレンドの中で価格が何をしているかを分析することにより、取引の機会を見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 自信を持って効率的に金融市場を取引する むち打ちにならずに確立されたトレンドから利益を得る 収益性の高いプルバック、ブレイクアウト、早期の逆転を認識する この指標は、独自の品質とパフォーマンスを分析します 複数時間枠のダッシュボードを実装します インジケーターは再描画されていません 電子メール/音声/視覚アラートを実装します 確立されたトレンドは多くの取引機会を提供しますが、ほとんどのトレンド指標はそれらを完全に無視しています。インジケーターの解釈はかなり簡単です: (1) トレンドの変化 (2) トレンドの方向への後退 (3) トレンドの方向へのブレイクアウト 赤いダッシュ は下降トレンド中の修正です 青いダッシュ は上昇ト
              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
              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
              LordChannel is an indicator for META TRADER 4 for all forex pairs and financial market metals. The indicator is used to make detections of high/low channels, implementing a technical analysis on possible breakouts and making correct order entries. LordChannel sends signals such as buy and sell in the graphical analysis, it is important to emphasize that the importance of these signals are safe in TIME FRAMES M30, H1, H4. The indicator was created for using bullish/downtrend channels to co
              このプロダクトを購入した人は以下も購入しています
              Gann Made Easy は、ミスター・ギャンの理論を使用した取引の最良の原則に基づいた、プロフェッショナルで使いやすい外国為替取引システムです。 W・D・ガン。このインジケーターは、ストップロスとテイクプロフィットレベルを含む正確な買いと売りのシグナルを提供します。 PUSH通知を利用して外出先でも取引可能です。 購入後はご連絡ください!私の取引のヒントと素晴らしいボーナスインジケーターを無料で共有します! おそらく、ギャンの取引手法についてはすでに何度も聞いたことがあるでしょう。通常、ギャンの理論は初心者のトレーダーだけでなく、すでにある程度の取引経験がある人にとっても非常に複雑なものです。なぜなら、ギャンの取引手法は理論的にはそれほど簡単に適用できるものではないからです。私はその知識を磨き、最良の原則を私の外国為替インジケーターに組み込むために数年を費やしました。 このインジケーターは非常に簡単に適用できます。必要なのは、それをチャートに添付し、簡単な取引推奨事項に従うだけです。このインジケーターは常に市場分析の仕事を行い、取引の機会を探します。適切なエントリーポイントを検出
              Please contact me after purchase to immediately get your PDF strategy + documentation for Trend Pulse !  Official release price of $99  ( 17 / 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
              製品を購入する前に、以下の情報をお読みください。 Apollo Pips PLUS SP はユニークな製品です。これは、私の新しい「アポロ ピップス」インジケーターと、私のすべての取引インジケーターにアクセスできる「スーパー パック」ボーナスを手に入れたい人のためのものです。 Apollo Pips PLUS SP 製品を購入すると、実際には私の Apollo Pips インジケーターのまったく新しいバージョンを購入することになります。このバージョンのインジケーターには改良されたアルゴリズムと使いやすいパラメーターがあり、あらゆる市場およびあらゆる取引スタイルでインジケーターを使用する機会が得られます。 この製品の購入者は、私のスーパーボーナスとして、他のすべてのインジケーターにも無料でアクセスできます!私のすべての取引ツールにアクセスしたい場合は、この製品が最適です!:) しかし、これがすべてではありません!:) この製品のすべての購入者は、私の新しいインジケーターを無料で入手する資格もあります!:)新しい取引インジケーターを利用できるようになりました。私の特権のある「スーパー パッ
              Trend Punch
              Mohamed Hassan
              4.95 (21)
              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
              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
              通貨強さウィザードは、取引を成功させるためのオールインワン ソリューションを提供する非常に強力な指標です。このインジケーターは、複数の時間枠のすべての通貨のデータを使用して、このまたはその外国為替ペアのパワーを計算します。このデータは、使いやすい通貨インデックスと通貨パワーラインの形式で表され、特定の通貨のパワーを確認するために使用できます。 必要なのは、取引したいチャートにインジケーターを接続することだけです。インジケーターは、取引する通貨の実際の強さを示します。このインジケーターは、トレンドに合わせて取引するときに有利に利用できる売買高の圧力の極値も示します。このインジケーターには、フィボナッチに基づく可能なターゲットも表示されます。 このインジケーターは、PUSH 通知を含むあらゆるタイプのアラートを提供します。 購入後ご連絡下さい。私の取引のヒントをあなたと共有し、素晴らしいボーナスインジケーターを無料で提供します! 幸せで有益な取引をお祈りします。
              まず第一に、この取引インジケーターは再描画されず、再描画されず、遅延しないことを強調する価値があります。これにより、手動取引とロボット取引の両方に理想的なものになります。 ユーザーマニュアル:設定、入力、戦略。 アトミックアナリストは、価格の強さとモメンタムを利用して市場でより良いエッジを見つけるためのPA価格アクションインジケーターです。ノイズや誤ったシグナルを除去し、取引ポテンシャルを高めるための高度なフィルターを備えています。複雑なインジケーターの複数のレイヤーを使用して、アトミックアナリストはチャートをスキャンし、複雑な数学的計算をシンプルなシグナルと色に変換します。これにより、どのような初心者トレーダーでも理解して使用し、一貫した取引の決定を行うことができます。 「アトミックアナリスト」は、新規および経験豊富なトレーダー向けにカスタマイズされた包括的な取引ソリューションです。プレミアムインジケーターとトップノッチの機能を1つの取引戦略に組み合わせ、すべてのタイプのトレーダーにとって汎用性のある選択肢にします。 デイリートレーディングとスキャルピング戦略:高
              まず第一に、この取引ツールはノンリペイント、ノンリドロー、ノンラグの指標であり、プロの取引に理想的ですことを強調する価値があります。 オンラインコース、ユーザーマニュアル、デモ。 スマートプライスアクションコンセプトインジケーターは、新米から経験豊富なトレーダーまで、非常 に強力なツールです。Inner Circle Trader AnalysisやSmart Money Concepts Trading Strategiesなど、20以上の有用な指標を1つに組み合わせています。このインジケーターはスマートマネーコンセプトに焦点を当て、大手機関の取引方法を提供し、彼らの動きを予測するのに役立ちます。 特に、流動性分析に優れており、機関がどのように取引しているかを理解しやすくしています。市場のトレンドを予測し、価格の動きを慎重に分析するのに優れています。機関の戦略とトレードを合わせることで、市場の動向についてより正確な予測ができます。このインジケーターは多目的であり、市場構造を分析し、重要な注文ブロックを特定し、さまざまなパターンを認識するのに優れています。 このインジケー
              mql5と Telegramの モーニング・ブリーフィングで、詳細とスクリーンショットを含む毎日のマーケット・アップデートをご覧 ください! FX Power MT4 NGは 、長年の人気を誇る通貨強度計FX Powerの次世代モデルです。 この次世代ストレングスメーターは何を提供するのでしょうか?初代FXパワーの魅力すべて プラス GOLD/XAUの強さ分析 より正確な計算結果 個別に設定可能な分析期間 カスタマイズ可能な計算上限値により、さらに優れたパフォーマンスを実現 もっと見たい人のための特別なマルチインスタンス設定 すべてのチャートでお好みの色を無限に設定可能 数え切れないほどの通知オプションにより、重要なことを見逃すことはありません。 Windows 11とmacOSのスタイルで角を丸くした新しいデザイン 魔法のように動くインジケーターパネル FXパワーの主な機能 すべての主要通貨の強さの完全な履歴 すべての時間枠における通貨の強さの履歴 すべてのブローカーとチャートで同一の計算結果 100%信頼できるリアルタイム計算 -> リペイントなし ドロップダウン・リストから
              M1 Arrow
              Oleg Rodin
              4.73 (15)
              市場の2つの基本原則に基づく日中戦略。 このアルゴリズムは、追加のフィルターを使用したボリュームと価格の波の分析に基づいています。インディケータのインテリジェントアルゴリズムは、2つの市場要因が1つに結合した場合にのみシグナルを出します。インディケータは、より高い時間枠のデータを使用して、M1チャート上の特定の範囲の波を計算します。そして波を確認するために、インジケーターはボリュームによる分析を使用します。 このインディケータはレディトレーディングシステムです。トレーダーが必要とするのは、信号に従うことだけです。また、インジケーターはあなた自身の取引システムの基礎になることができます。取引はミニッツチャートでのみ行われます。 インジケーターがMTFの原則を使用しているという事実にもかかわらず、インジケーターのアルゴリズムは可能な限り安定しています。 購入後、必ず私に書いてください!私の取引設定と推奨事項をあなたと共有します!
              Reversal First Impulse levels (RFI)    INSTRUCTIONS        RUS       -       ENG              R ecommended to use with an indicator   -   TPSpro  TREND PRO -  Version MT5 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. Main functions: Displaying activ
              現在26%オフ 初心者やエキスパートトレーダーに最適なソリューション! このインジケーターは、独自の機能と新しい計算式を取り入れた、ユニークで高品質、かつ手頃な価格のトレーディングツールです。たった1枚のチャートで28の為替ペアの通貨強度を読み取ることができます。新しいトレンドやスキャルピングチャンスの引き金となるポイントを正確に特定することができるので、あなたのトレードがどのように改善されるか想像してみてください。 ユーザーマニュアルはこちら  https://www.mql5.com/en/blogs/post/697384 これが最初の1本、オリジナルだ! 価値のないクローンを買わないでください。 特別な サブウィンドウの矢印で強い通貨の勢いを表示 GAPがあなたのトレードを導く! 基準通貨や気配値が売られすぎ・買われすぎのゾーン(外相フィボナッチレベル)にあるとき、個別チャートのメインウィンドウに警告表示。 通貨がレンジの外側から反落した場合、プルバック/リバーサルのアラート。 クロスパターンの特別なアラート 複数の時間枠を選択可能で、トレンドを素早く
              現在20%OFF! 初心者やエキスパートトレーダーのためのベストソリューション! このダッシュボードソフトウェアは、28の通貨ペアで動作しています。それは私達の主要な指標(高度な通貨の強さ28と高度な通貨インパルス)の2に基づいています。それは全体の外国為替市場の大きい概観を与えます。それは、すべての(9)時間枠で28の外国為替ペアのための高度な通貨の強さの値、通貨の動きの速度と信号を示しています。チャート上で1つのインディケータを使用して市場全体を観察し、トレンドやスキャルピングの機会をピンポイントで見つけることができたら、あなたのトレードがどのように改善されるか想像してみてください。 このインディケータには、強い通貨と弱い通貨の識別、潜在的な取引の識別と確認がより簡単になるような機能が搭載されています。このインディケータは、通貨の強さや弱さが増加しているか減少しているか、また、すべての時間枠でどのように機能しているかをグラフィカルに表示します。 新機能として、現在の市場環境の変化に適応するダイナミックなマーケットフィボナッチレベルが追加され、すでに当社のAdvan
              Ultimate Sniper Dashboard
              Hispraise Chinedum Abraham
              4.85 (27)
              299ドルで割引中! 今後値上げの可能性あり! 下の説明を読んでください! 究極のスナイパーダッシュボードのための最高のエントリーシステム。究極のダイナミックレベル。(私の製品をチェックしてください) 究極のスナイパーダッシュボードはMT4多通貨テスト制限のため、ライブマーケットでのみ作動します。 究極のスナイパーダッシュボードをご紹介します。HA-Sniper、MA-Sniper、その他多くの特別なモードが含まれる最高の製品です。究極のスナイパーダッシュボードは絶対的な獣です! 初心者やエキスパートトレーダーにとって最高のソリューションです。もう二度と動きを見逃さない! シンプルさとピップを愛するトレーダーのために、特別な製品をご用意しました。シンプルでありながら、ダッシュボードは複数のカスタムアルゴリズムに基づき28の通貨ペアを監視し、すべての作業を行います。たった一つのチャートで、プロのように市場を読み解くことができます。もし、為替ペアが動き出したときに、その方向性を正確に特定することができれば、あなたの取引はどれほど改善されることでしょう。   当社のシ
              Cycle Sniper
              Elmira Memish
              4.44 (39)
              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
              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                R ecommended to use with
              ご紹介   クォンタム トレンド スナイパー インジケーターは 、トレンド反転を特定して取引する方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。     クォンタムトレンドスナイパーインジケーター   は、非常に高い精度でトレンドの反転を識別する革新的な方法で、あなたのトレーディングの旅を新たな高みに押し上げるように設計されています。 ***Quantum Trend Sniper Indicatorを購入すると、Quantum Breakout Indicatorを無料で入手できます!*** クォンタム ブレイクアウト インジケーターは、トレンドの反転を特定するとアラートを発し、矢印を示し、3 つのテイクプロフィットレベルを提案します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック MT5のバージョン:       ここをクリック 推奨事項: 期間: すべての時間枠。最良の結果を得るには、
              TakePropips Donchian Trend Pro
              Eric John Pajarillaga Aldana
              4.61 (18)
              TakePropips Donchian Trend Pro   (MT4) は、ドンチャン チャネルを使用してトレンドの方向を自動的に検出し、エントリーとエグジットの取引シグナルを提供する強力で効果的なツールです! この多機能インジケーターには、トレンド スキャナー、取引シグナル、統計パネル、スクリーナー、取引セッション、およびアラート履歴ダッシュボードが含まれます。取引シグナルを提供し、チャートを分析する時間を節約するように設計されています! ユーザー マニュアルとインストール ガイドは、ブログ投稿 (   https://www.mql5.com/en/blogs/post/751368   ) からダウンロードできます。 今日は 50% オフ! 98ドルから49ドルに値下げ! このインジケーターは、ストラテジー テスターでテストできます (ビジュアル モードを有効にします)。 詳細については、説明の下にあるビデオ チュートリアルも利用できます。 ご不明な点やサポートが必要な場合は、私に連絡してください。 TakePropips Donchian Trend Pro イン
              BullsEye Signal NoRepaint
              Martin Alejandro Bamonte
              3 (2)
              BullseyeSignal – NoRepaint は、名前が示すように、いかなる状況でも再描画されないシグナルです。シグナルは画像に表示された同じローソク足に表示されます。外為、暗号通貨、株式、指数、先物などの高ボラティリティ市場に最適です。 購入には緑の矢印、販売には赤の矢印のみが表示されますが、その背後にはより簡潔な取引体験を提供するために多くの指標が協力しています。 これは正確なエントリーを提供するために特別に設計されています。 多くのエントリーではなく、指標がトレンドの変化を示し、前のトレンドの反対方向に0レベルを超えたときに特定のエントリーを提供します。より正確な取引を実現するために、指標はトレンドの変化を確認するために最初のプルバックを待ち、偽の逆転を回避します。したがって、前のトレンドのブレイクとプルバックの確認後にシグナルが発行されます。 これは非常に慎重な取引アプローチです。 したがって、これらのヒントに従うことが重要です(初心者および上級トレーダーの両方がこの戦略を使用できます): ニューヨーク、ロンドン、または両市場の重複を使用することをお勧めします。
              今、147ドル(いくつかの更新後に499ドルに増加します) - 無制限のアカウント(PCSまたはMac) RelicusRoad ユーザー マニュアル + トレーニング ビデオ + プライベート Discord グループへのアクセス + VIP ステータス 市場の新しい見方 RelicusRoad は、外国為替、先物、暗号通貨、株式、および指数の世界で最も強力な取引インジケーターであり、トレーダーに収益を維持するために必要なすべての情報とツールを提供します。初心者から上級者まで、すべてのトレーダーが成功するためのテクニカル分析と取引計画を提供します。これは、将来の市場を予測するのに十分な情報を提供する重要な取引指標です。意味をなさないチャート上のいくつかの異なる指標ではなく、完全な解決策を信じています.これは、信号、矢印 + 価格アクション情報を表示するオールインワンのインジケーターで、他に類を見ない非常に正確です。 強力な AI に基づいて、RelicusRoad は不足している情報とツールを提供して、あなたを教育し、トレーディングのプロ、成功したトレーダーにします。
              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
              カスタムMT4インジケーターで外国為替取引を成功させるための秘密を発見してください! 外国為替市場で成功を達成し、リスクを最小限に抑えながら一貫して利益を得る方法を疑問に思ったことはありますか? これがあなたが探している答えです! 取引へのアプローチに革命をもたらす独自のMT4インジケーターを導入できるようにします。 ユニークな汎用性 私たちのインジケータは、RenkoとRangeBarのろうそくのフォーメーションを好むユーザー向けに特別に設計されています。 これらのチャートタイプは多くの経験豊富なトレーダーに好まれていることを理解しています。そのため、私たちのインジケーターはそれらとシームレスに統合され、比類のない市場分析を提供します。 クリアトレンドシグナル 複雑な分析を忘れてください! 私たちのインジケーターは、鮮やかな色と明確なドット構造を利用して、市場の動向を明確に示しています。 赤と青の点は、価格の動きの方向性について疑いの余地がなく、取引の迅速な意思決定を可能にします。 HH/HL HL/LL戦略とのアライメント HH/HLおよびHL/LL構
              Scalper Vault は、スキャルピングを成功させるために必要なすべてを提供するプロフェッショナルなスキャルピング システムです。このインジケーターは、外国為替およびバイナリー オプションのトレーダーが使用できる完全な取引システムです。推奨される時間枠は M5 です。 システムは、トレンドの方向に正確な矢印シグナルを提供します。また、トップとボトムのシグナルとギャン マーケット レベルも提供します。 インジケーターは、プッシュ通知を含むすべてのタイプのアラートを提供します。 インジケータの購入後にご連絡ください。私の個人的な取引の推奨事項と素晴らしいボーナス指標を無料で共有します! 幸せで有益な取引をお祈りします!
              現在31%オフ! 初心者やエキスパートトレーダーに最適なソリューション! このインジケータは、独自の機能と秘密の数式を組み込んだ、ユニークで高品質かつ手頃な価格のトレーディングツールです。たった1枚のチャートで28の通貨ペアのアラートを表示します。新しいトレンドやスキャルピングチャンスの引き金となるポイントを正確に把握することができるので、あなたのトレードがどのように改善されるか想像してみてください! 新しい基本的なアルゴリズムに基づいて構築されているため、潜在的な取引の特定と確認がより簡単になります。これは、通貨の強さや弱さが加速しているかどうかをグラフィカルに表示し、その加速のスピードを測定するためです。加速すると物事は明らかに速く進みますが、これはFX市場でも同じです。つまり、反対方向に加速している通貨をペアにすれば、利益を生む可能性のある取引を特定することができるのです。 通貨の勢いを示す縦の線と矢印は、あなたの取引の指針となるでしょう。 ダイナミックマーケットフィボナッチ23レベルはアラートトリガーとして使用され、市場の動きに適応します。もしインパルスが黄色
              `All in One Chart Patterns` チャートパターンはトレーダーの間で議論の的となっています。信頼できるシグナルだと考える人もいれば、そうでないと考える人もいます。当社の「Chart Patterns All-in-One」インジケーターは、これらのパターンを表示し、自分自身で理論を検証できるようにします。これらのパターンの収益性は、インジケーターの有効性を反映するものではなく、むしろパターン自体の評価です。「Chart Patterns All-in-One」インジケーターは、これらのパターンを視覚化するための優れたツールであり、取引戦略における有効性について自分自身で結論を下すことができます。 このインジケーターは、複数のチャートパターンを1つの統合ツールに組み合わせて、MetaTrader 4 (MT4) で使用します。チャートから直接各パターンをオンまたはオフに切り替える機能を提供し、カスタマイズ可能で効率的な分析を可能にします。以下は、インジケーターとその中に含まれるパターンの詳細な説明です。 #### 含まれるパターン: 1. **パターン
              The AT Forex Indicator MT4 is a sophisticated trading tool designed to provide traders with a comprehensive analysis of multiple currency pairs. This   powerful indicator   simplifies the complex nature of the forex market, making it accessible for both novice and experienced traders. AT Forex Indicator uses   advanced algorithms   to detect trends, patterns and is an essential tool for traders aiming to enhance their forex trading performance. With its robust features, ease of use, and reliabl
              Dear Traders this is my another tool called " Swing Master Indicator ". As the name above the indicator is designed to help you in swing trading by capturing the low and highs of the price. You may us this tool with any trading strategy and style from scalping to position trading. It is made for level of traders including newbies and advanced traders even prop-firms, hedge funds and banks to help them make sold market analysis. I create tools for serious traders who want to make a difference in
              Black dragon indicator
              Ramil Minniakhmetov
              4.87 (134)
              トレンド検出インジケーターはあらゆる戦略を補完し、独立したツールとしても使用できます。 インジケーターの操作に関する推奨事項、コメント #8 でダウンロードできます 利点 使いやすく、不要な情報でチャートを過負荷にしません。 あらゆる戦略のフィルターとして使用できます。 利益を得るのとストップロスを設定するの両方に使用できる動的なサポートとレジスタンスのレベルが組み込まれています。 ローソク足が閉じた後、インジケーターの色は変わりません。  株式市場、指数、石油、金、およびすべての時間枠で機能します。 トースト通知、電子メール通知、プッシュ通知、サウンドアラートの機能があります。 私の他の開発はここで見つけることができます: https://www.mql5.com/ja/users/mechanic/seller 入力パラメータ Alert-オン/オフ。アラート; Push Notification-オン/オフ。プッシュ通知; Mail-オン/オフ電子メール通知; Fibo 1,2,3,4,5,6,7,11,21,31,41,51,61,71-動的サポートと抵抗レベルの
              Advanced Supply Demand
              Bernhard Schweigert
              4.9 (314)
              現在33%オフ 初心者にもエキスパートトレーダーにも最適なソリューション このインジケーターは独自の機能と新しい公式を多数内蔵しており、ユニークで高品質かつ手頃な取引ツールです。このアップデートでは、2つの時間枠ゾーンを表示できるようになります。より長いTFだけでなく、チャートTFとより長いTF(ネストゾーンを表示)の両方を表示できます。すべてのSupply Demandトレーダーの皆さんのお気に召すはずです。:) 重要情報の公開 Advanced Supply Demandの可能性を最大化するには、 https://www.mql5.com/ja/blogs/post/720245 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適
              FX Volume
              Daniel Stein
              4.61 (36)
              mql5と Telegramの モーニング・ブリーフィングで、詳細とスクリーンショットを含む毎日のマーケット・アップデートをご覧 ください! FX Volumeは、ブローカーの視点から市場のセンチメントをリアルに洞察する、最初で唯一の出来高インジケーターです。 ブローカーのような機関投資家が外国為替市場でどのようなポジションをとっているか、COTレポートよりもはるかに速く、素晴らしい洞察を提供します。 この情報をチャート上で直接見ることは、あなたの取引にとって真のゲームチェンジャーであり、画期的なソリューションです。 以下のようなユニークなマーケットデータ洞察から利益を得てください。 比率は 、通貨のロングポジションとショートポジションの比率をパーセントで表示します。 比率の変化は 、選択した期間内のロング比率とその変化率を表示します。 Volumes Totalは 、通貨の取引量(ロングとショート)の合計をロット単位で表示します。 Volumes Long :全通貨のロングポジションの取引量を表示します。 Volumes(ショート )は、全通貨のショートポジションの取引量を表示
              作者のその他のプロダクト
              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
              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 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
              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
              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
              Features: Get OB/OS Levels from Golden MA Levels Wait for Buy/Sell Start Level Cross Optional: Should price cross Mid Level in earlier bars Optional: Crossing bar High/Medium Volume Optional: MA Stacked to check up/down trend for current TF 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 Note: Arrows/Scanner do
              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
              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
              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
              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
              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
              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: - 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
              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: - 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: Select one of In-Built Supertrend Indicators: xSupertrend
              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
              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
              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
              フィルタ:
              レビューなし
              レビューに返信