• 概要
  • レビュー (5)
  • コメント (2)
  • 最新情報

Tillson TMA T3

5

TILLSON MOVING AVERAGE

Also known as TMA or T3 indicator. It is a moving average that uses EMA and DEMA in its formula and is calculated with the 3rd degree Binomial expansion.

   
   ...
   int     handle1;     //Handle of the Tillson TMA T3.EX5 custom indicator
   double  euBuff1[];
   int TMAperiod=12;
   int TMSshift=0;
   double VolumeFactor=0.618;
   
int OnInit()
   {
   ...
   handle1=iCustom(NULL,PERIOD_CURRENT,"Market\\Tillson TMA T3.EX5",0,TMAperiod,0,0,TMSshift,0,0,VolumeFactor);
   ArrayResize(euBuff1,5); //Set a new array size specifying the reserve of 5 elements!
   ArraySetAsSeries(euBuff1,true);
   ...
   }

//Code to use in indicators
int OnCalculate(..........)
   {   
   ...
   CopyBuffer(handle1, 0, 0, 4, euBuff1); //Copy the values of the indicator Tillson TMA T3 to our indicator buffer
   printf (euBuff1[3]);
   ...
   }

//Code to use in Expert Advisors
void OnTick()
   {   
   ...
   CopyBuffer(handle1, 0, 0, 4, euBuff1); //Copy the values of the indicator Tillson TMA T3 to our indicator buffer
   printf (euBuff1[3]);
   ...
   }


void OnDeinit(const int reason)
  {
   ...
  IndicatorRelease(handle1);  //free the handle of the indicator
  }

Pros;

1-      erroneous signals encountered in other moving averages ( continuous zig zag ) has been reduced as much as possible.

2-      prevented the delays seen in classical moving averages .

3-      Very successful in trends

Cons

1-      It is not effective in horizontal markets.

Setting parameters;

period ; Although the recommended value is 5, values of 7 or 8 can also be used.

Volume Factor ; The range of 0 to 1 is the recommended value range, but it can go up to a maximum of 2. The recommended value is 0.7 . To explain the effect of Volume Factor on T3 more simply, if it takes values close to 0, it will cause it to exhibit similar behavior to EMA, and if it takes values close to 1, it will show similar behavior to DEMA.

BUY/SELL Signals;

Method 1; A strategy in which 1 T3 is used,

Volume Factor = 0.7, Period = 8 and above.

-          BUY signal if bars cross T3 up

-          If the bars cut T3 down SELL signal

Method 2; A strategy using 2 T3's,

-          Small Period T3 cutting Big Period T3 from bottom to top BUY signal

-          Small Period T3 cuts Big Period T3 from top to bottom SELL signal

Method 3; A strategy using 3 T3's,

It consists of adding a third trend-setting T3 to Method 2. Default values; Period1=200, Period2=8, Period3=21 and Volume Factor =0.7

            T3 with period1=200 will be the trend direction determinant. In other words, when small period T3's are above 200's T3, the trend will be considered as up and only BUY signals will be considered according to Method 2 . Likewise, when small period T3's are below 200's T3, the trend will be considered as up and only SELL signals will be considered according to Method 2 .

レビュー 5
Detleff Böhmer
2572
Detleff Böhmer 2023.12.05 09:32 
 

Danke, sehr gute Ergebnisse.

Julpa
172
Julpa 2023.02.24 15:06 
 

Very good signal, I try it for 1 week: nice result

Baki Çetin
50
Baki Çetin 2023.02.23 08:04 
 

Çok teşekkür ederim Emin kardeşim. Çok başarılı olmuş. Ne zamandır bunu arıyordum. Ellerine sağlık.

おすすめのプロダクト
Heikin Ashi MACD
Wojciech Daniel Knoff
5 (2)
Check my version of the moving average convergence divergence (MACD) indicator based on Heikin Ashi calculations. Here you find multi-colored histogram which corresponds to bull (green) / bear(red) trend. Dark and light colors describes weakness/strenght of price trend in time. Also you can switch calculations between normal and Heikin Ashi price type. Note: Buffers numbers for iCustom: 0-MACD, 2-Signal line
FREE
This indicator idea comes from Tushar Chande called Qstick. Technical indicators quantify trend direction and strength in different ways. One way is to use the difference between close and open for each bar and to sum it up over a period of time. The formual is: Qstick (period ) = Average ((close-open ), period ) In this indicator, we can choose how to calculate body by two famous chart types. The first and default indicator settings are based on Heiken Ashi chart, and the second i
FREE
SDivergence Indicator calculates and shows regular divergences and hidden divergences for MACD and Stochastic(for now). The benefit of this indicator is multiple input variables. Using these inputs you can modify to get more adaptive RD and HD's to your strategy. Guide : 1- First put your desired oscillator (MACD or Stochastic or Both) on the chart. 2- Run SDivergence indicator and set corresponding sub-window index of previously put oscillator in SDivergence input window. -Note: the chart sub-w
FREE
This indicator combines RSI(14) and ADX(14) to find out the signal that price moves strongly. When it appears signal (represent by the yellow dot), and price is going down, let consider to open a SELL order. Otherwise, let consider to open a BUY order. In this case, the strength of moving is strong (normally after sideway period), so  we can set TP by 3 times of SL  . 
FREE
This is HTF (or MTF) of original Kolier SuperTrend indicator. On this version, you can use 4 Lines of supertrend to define the trend, it will be more powerful. Remade signals on smalls timeframes, the indicator will not repaint if used on small timeframes.
SSACD - Singular Spectrum Average Convergence/Divergence This is an analogue of the MACD indicator based on the Caterpillar-SSA ( Singular Spectrum Analysis ) method. Limited version of the SSACD Forecast indicator. Limitations include the set of parameters and their range. Specificity of the method The Caterpillar-SSA is an effective method to handle non-stationary time series with unknown internal structure. The method allows to find the previously unknown periodicities of the series and mak
FREE
An improved version of the standard Standard Deviation indicator. It is now a responsive and smoothed line. The setup is not straightforward - but I hope you can do it. It is very easy to understand the readings of this indicator, the meaning is the same as that of the usual Standard Deviation. //////////////////////////////////////////////// /////////////////////////////////// I hope this indicator will be very useful to you in successful trading. Good luck.
FREE
MACD divergence indicator finds divergences between price chart and MACD indicator and informs you with alerts (popup, mobile notification or email) . Its main use is to find trend reversals in the chart. Always use the divergence indicators with other technical assets like support resistance zones, candlestick patterns and price action to have a higher possibility to find trend reversals. Three confirmation type for MACD divergences: MACD line cross zero level Price returns to previous H/L Crea
FREE
Chaikin's volatility indicator calculates the spread between the maximum and minimum prices. It judges the value of volatility basing on the amplitude between the maximum and the minimum. Unlike Average True Range , Chaikin's indicator doesn't take gaps into account. According to Chaikin's interpretation, a growth of volume indicator in a relatively short space of time means that the prices approach their minimum (like when the securities are sold in panic), while a decrease of volatility in a l
FREE
The Commitments of Traders Ratio Indicator is one of these things you never thought about it before you really see the magic behind it. The indicator shows the Ratio of long/short positions released by the CFTC once a week. If you have a look on the Sreenshot you can see two (three) zones of interest. Important note: MAs are not available in version 1.0. Zone 1: The Switches (Red -> Green, Green -> Red) Zone 2: MA cross Zone 3: If you combine this with the COX indicator an additional zone will
FREE
The moment when the MACD line crosses the signal line often leads to a significant price movement and trend changes. MACD Cross Prediction is an indicator that uses OSMA(MACD oscillator) and a red line. You can change the level of the red line on the indicator setting popup(and the red line moves up and down). The alerts(email, mobile push, sound, MT5 alert) will be sent when the MACD histogram touches the red line, which means the alerts can be sent just before/around the time when the MACD lin
FREE
The indicator displays a renko chart and a supertrend indicator in real time. After installing the indicator, the window will display the Renko chart and the supertrend indicator in the same window. This allows you to more clearly and visually see the entry and exit points when a trend reversal occurs. The signal to open a position is the intersection of the Renko candlestick of the supertrend indicator point and the appearance of the opposite signal of the supertrend indicator. The indicator
FREE
Laguerre Filter
Fernando Lahude Ritter
5 (1)
Laguerre Indicator with Gamma Input Overview: The Laguerre Indicator is a sophisticated financial analysis tool designed to provide traders and investors with a dynamic and responsive method to track market trends. Its core functionality is centered around a unique algorithm that adapts to market volatility, offering clearer insights compared to traditional indicators. Key Feature - Gamma Input: Gamma: The sole input for the Laguerre Indicator, 'gamma,' plays a pivotal role in calibrating the i
FREE
Moving Average Convergence/Divergence — схождение/расхождение скользящих средних — технический индикатор, разработанный Джеральдом Аппелем (Gerald Appel), используемый в техническом анализе для проверки силы и направления тренда, а также определения разворотных точек. Встроенный в MetaTrader 5 индикатор MACD не соответствует задумке автора (Gerald Appel): -линия MACD графически изображена в виде гистограммы, однако гистограммой отражается разница между линией MACD и сигнальной линией;  -сигнал
FREE
ZamanCyclesPOC
Mahmoud Sabry Mohamed Youssef
5 (5)
Everyone knows how to analyze the market , which level to buy / sell  this is an easy job , which leads to unusual horrible loses , very little few people knows WHEN then enter the market , time is Money , this is the key!!! This version is a Proof of concept limited version of ZamanCYcles founded here: https://www.mql5.com/en/market/product/81883?source=Site +Market+Product+Page This works Only on 3 Minutes Time frame for 45 Candles Get rest of planets and more than 10 other algorithms to pre
FREE
LT Force
Thiago Duarte
5 (6)
For those who like trend the Force will be a very useful indicator. This is because it is based on the famouse ADX, which measure the strenght of a trend, but without its 3 confusing lines. Force has its very simple interpretation: if the histogram is above zero level the trend is up, otherwise it is down. You can use it to find divergences too, which is very profitable. Thanks to Andre Sens for the version 1.1 idea. If you have any doubt or suggestion, please, contact me. Enjoy! This is a fre
FREE
Long Term Double MACD Strategy with EMA Trend Confirmation This strategy uses a leading and lagging MACD indicator. The leading indicator gives the entry signals, and the lagging indicator gives the exit signals. This Expert does not use any account management and as such you should make sure to set good stop losses. Works best on longer timeframes on low volatility pairs.
FREE
Rsi DA
Vitaly Dodonov
5 (2)
Что такое RSI?  Индикатор RSI (Relative Strength Index, индекс относительной силы) — это индикатор, который измеряет соотношение восходящих и нисходящих движений. Расчет ведётся таким образом, что индекс выражается в диапазоне от 0 до 100. Как понять RSI? Если значение RSI находится равно 70 и больше, считается, что инструмент находится в состоянии перекупленности (ситуация, когда цены выросли выше, нежели того ожидал рынок). Значение RSI на уровне 30 и ниже считается сигналом о том, что инст
FREE
Magic Trend
Arnold Kurapa
3.67 (3)
Magic Trend  This MT5 indicator is a Moving Average with 3 signal colors. The 3 input parameters on this Indicator give you a chance to set any Moving Average of choice. A combination of 2 different exponential moving averages, relative strength index, commodity channel index, and William's percent range provide the signals. White color = Null/No/Exit Signal Green color = Buy Signal Red color = Sell Signal Point To Note: Confirm the color change only after the current candle closes to avo
FREE
"Driver Road Bands" indicator that is designed to be used in the 1H, 4H and 1D timeframes in the most ideal way. If we compare timeframes to roads and streets; main streets and highways with high traffic volume are similar to high-time timeframes in technical analysis. If you can interpret the curvilinear and linear lines drawn by this indicator on the graphic screen with your geometric perspective and develop your own buy and sell strategies; you may have the key to being a successful trader.
FREE
Что такое OsMA DA?   Индикатор OsMA DA – это осциллятор, который построен на показаниях другого осциллятора – MACD. OsMA DA показывает расхождение между сигнальной линией MACD и его гистограммой. Момент пересечения гистограммы и линии – это нулевая отметка OsMA.   Если гистограмма MACD поднимается выше линии, то гистограмма самого OsMA DA поднимается выше нулевой отметки. В обратной ситуации OsMA DA демонстрирует отрицательные значения.   OsMA DA более узконаправленный индикатор, чем MACD. OsMA
FREE
IMA Finder MT5
Mubashir Mohamed Quraish Albarakat
1 (1)
This indicator is designed based on the Moving Origin indicator When the moving origin indicator breaks the price, this indicator gives a signal It is useful for better viewing of signals and analysis on them Attributes: Can be used in all symbols Can be used in all time frames Too many signals Simple and quick settings Easy way to work Settings: period: like moving average settings alarmShow: If you want to receive an alert in Metatrader after receiving the signal, enable this setting a
FREE
This indicator is a straight port of a well known MetaTrader 4 indicator that is freely available on the Internet. It does not redraw at all. It implements a type of breakout strategy. The arrows indicate market direction. Use the indicator on M15 charts and higher. The indicator draws two bands near price action and generates signals when the price closes below the lower band and also above the upper band. The indicator uses periodic highs and lows to calculate upper and lower threshold bands.
FREE
The Relative Equilibrium index (REi) is a technical analysis indicator that shows the direction and strength of a trend and indicates the probability of its change. It shows the ratio of the average price increase to the average fall over a certain period of time. The value of the index allows you to assess whether buyers or sellers had a stronger influence on the price over a set period of time and to assume further developments. The indicator is characterized by simplicity of interpretation an
FREE
It makes it easier to see where there have been consolidation zones for previous prices and allows you to highlight the histogram where there is the biggest consolidation zone. Input parameters Intervalo de preço Is the price between the histograms Periodo Number of candle sticks to be analyzed Porcentagem Highlights the histogram where there is minimal consolidation in relation to the analyzed period
FREE
Price Momentum
Flavio Javier Jarabeck
4.92 (13)
Value Chart indicator presents the Price evolution in a new form. This indicator, Price Momentum , was developed taking all the calculations presented in the book " Dynamic Trading Indicators " by Mark W. Helweg and David Stendahl (2002). The technique involves de-trended Prices from a user-defined Period of analysis and the addition of a Volatility index correction. The result is an Oscillator with 3 zones: Fair Price Value, Overbought/Oversold and Extremely Overbought/Oversold zones. Adding th
FREE
Follow The Line MT5
Oliver Gideon Amofa Appiah
4.42 (31)
This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL. (you can change the colors). It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more powerful and reliable signals. Get them here: https://www.m
FREE
A professional tool for trading - the divergence indicator between the  Stochastic and the price, which allows you to receive a signal about a trend reversal in a timely manner or catch price pullback movements (depending on the settings). The indicator settings allow you to adjust the strength of the divergence due to the angle of the  Stochastic peaks and the percentage change in price, which makes it possible to fine-tune the signal strength. The indicator code is optimized and is tested ver
FREE
SUPERTREND; It is a trend following indicator based on the SuperTrend ATR created by Olivier Seban. It can be used to detect changes in trend direction and locate stops. When the price falls below the indicator curve, it turns red and indicates a downtrend. Conversely, when the price moves above the curve, the indicator turns green, indicating an uptrend. Like other indicators, it works well on SuperTrend when used in conjunction with other indicators such as MACD, parabolik SAR, Bollinger Band
FREE
Multi RsI BB MT5
Mansour Babasafary
5 (1)
A combined indicator of two famous indicators: RSI , Bollinger Bands Can be used in all currency pairs Can be used in all time frames with many signals Very simple and fast to use Description: This indicator is made from the combination of RSI and Bollinger Bands indicators As you can see, it shows good signals and is worth using and testing We hope you are satisfied with this indicator Settings: show past show candle: Displays the number of candles that the indicator calculates. For
FREE
このプロダクトを購入した人は以下も購入しています
まず第一に、このトレーディングシステムがノンリペイント、ノンリドロー、ノンラグのインジケーターであることを強調する価値がある。これにより、手動取引とロボット取引の両方に理想的なものになっています。 「スマートトレンドトレーディングシステム MT5」は、新規および経験豊富なトレーダー向けにカスタマイズされた包括的なトレーディングソリューションです。10以上のプレミアムインジケーターを組み合わせ、7つ以上の堅実なトレーディング戦略を備えており、多様な市場状況に対応する多目的な選択肢となっています。 トレンドフォロー戦略:トレンドを効果的に乗り越えるための正確なエントリーとストップロス管理を提供します。 リバーサル戦略:潜在的なトレンドの反転を特定し、トレーダーがレンジ相場を活用できるようにします。 スキャルピング戦略:高速で正確なデイトレードおよび短期取引のために設計されています。 安定性:すべてのインジケーターはノンリペイント、ノンリドロー、ノンラグであり、信頼性の高いシグナルを保証します。 カスタマイズ:個々の取引の嗜好に合わせたカスタム戦略をサポートします。7つ以上の戦略と組み合わせ
まず第一に、この取引インジケーターは再描画されず、再描画されず、遅延しないことを強調する価値があります。これにより、手動取引とロボット取引の両方に理想的なものになります。 アトミックアナリストは、価格の強さとモメンタムを利用して市場でより良いエッジを見つけるためのPA価格アクションインジケーターです。ノイズや誤ったシグナルを除去し、取引ポテンシャルを高めるための高度なフィルターを備えています。複雑なインジケーターの複数のレイヤーを使用して、アトミックアナリストはチャートをスキャンし、複雑な数学的計算をシンプルなシグナルと色に変換します。これにより、どのような初心者トレーダーでも理解して使用し、一貫した取引の決定を行うことができます。 「アトミックアナリスト」は、新規および経験豊富なトレーダー向けにカスタマイズされた包括的な取引ソリューションです。プレミアムインジケーターとトップノッチの機能を1つの取引戦略に組み合わせ、すべてのタイプのトレーダーにとって汎用性のある選択肢にします。 デイリートレーディングとスキャルピング戦略:高速で正確なデイトレーディングおよび短期トレード
FX Volume MT5
Daniel Stein
4.94 (17)
mql5と Telegramの モーニング・ブリーフィングで、詳細とスクリーンショットを含む毎日のマーケット・アップデートをご覧 ください! FX Volumeは、ブローカーの視点から市場のセンチメントをリアルに洞察する、最初で唯一の出来高インジケーターです。 ブローカーのような機関投資家が外国為替市場でどのようなポジションをとっているか、COTレポートよりもはるかに速く、素晴らしい洞察を提供します。 この情報をチャート上で直接見ることは、あなたの取引にとって真のゲームチェンジャーであり、画期的なソリューションです。 以下のようなユニークなマーケットデータ洞察から利益を得てください。 比率は 、通貨のロングポジションとショートポジションの比率をパーセントで表示します。 比率の変化は 、選択した期間内のロング比率とその変化率を表示します。 Volumes Totalは 、通貨の取引量(ロングとショート)の合計をロット単位で表示します。 Volumes Long :全通貨のロングポジションの取引量を表示します。 Volumes(ショート )は、全通貨のショートポジションの取引量を表示
ご紹介   クォンタム トレンド スナイパー インジケーターは 、トレンド反転を特定して取引する方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。     クォンタムトレンドスナイパーインジケーター   は、非常に高い精度でトレンドの反転を識別する革新的な方法で、あなたのトレーディングの旅を新たな高みに押し上げるように設計されています。 ***Quantum Trend Sniper Indicatorを購入すると、Quantum Breakout Indicatorを無料で入手できます!*** クォンタム ブレイクアウト インジケーターは、トレンドの反転を特定するとアラートを発し、矢印を示し、3 つのテイクプロフィットレベルを提案します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック MT4のバージョン:       ここをクリック 推奨事項: 期間:すべての時間枠。最良の結果を得るには、M
トレンド スクリーナー インジケーターでトレンド取引の力を解き放ちます。ファジー ロジックと複数通貨システムを活用した究極のトレンド取引ソリューションです。 ファジー ロジックを活用した革新的なトレンド インジケーターである Trend Screener を使用して、トレンド取引を向上させます。 これは、13 を超えるプレミアム ツールと機能、および 3 つの取引戦略を組み合わせた強力なトレンド追跡インジケーターであり、Metatrader をトレンド アナライザーにする多用途の選択肢となります。 期間限定オファー : トレンド スクリーナー インジケーターは、わずか 50 ドルで生涯ご利用いただけます。 (元の価格 125$ ) (オファー延長) Trend Screener の 100% 非再描画精度の揺るぎない精度を体験して、取引の決定が過去の価格変動の影響を受けないようにしてください。 マルチタイムフレームおよびマルチ通貨機能の多用途性を解放し、比類のない自信を持って外国為替、商品、暗号通貨、インデックスの世界を取引できるようにします。 Trend Screener の包括的な
Gold Stuff mt5
Vasiliy Strukov
4.89 (166)
Gold Stuff mt5 は、金専用に設計されたトレンド指標であり、あらゆる金融商品にも使用できます。 インジケーターは再描画せず、遅れません。 推奨時間枠 H1. 設定と個人的なボーナスを得るために、購入後すぐに私に連絡してください!   設定 矢印を描く - オンオフ。 チャートに矢印を描く。 アラート - 可聴アラートのオンオフ。 メール通知 - オンオフ。 電子メール通知。 プチ通知 - オンオフ。 プッシュ通知。 次に、色域を調整します。 Gold Stuff mt5 は、金専用に設計されたトレンド指標であり、あらゆる金融商品にも使用できます。 インジケーターは再描画せず、遅れません。 推奨時間枠 H1. 設定と個人的なボーナスを得るために、購入後すぐに私に連絡してください!   設定 矢印を描く - オンオフ。 チャートに矢印を描く。 アラート - 可聴アラートのオンオフ。 メール通知 - オンオフ。 電子メール通知。 プチ通知 - オンオフ。 プッシュ通知。 次に、色域を調整します。
まず第一に、この取引ツールはノンリペイント、ノンリドロー、ノンラグの指標であり、プロの取引に理想的ですことを強調する価値があります。 スマートプライスアクションコンセプトインジケーターは、新米から経験豊富なトレーダーまで、非常 に強力なツールです。Inner Circle Trader AnalysisやSmart Money Concepts Trading Strategiesなど、20以上の有用な指標を1つに組み合わせています。このインジケーターはスマートマネーコンセプトに焦点を当て、大手機関の取引方法を提供し、彼らの動きを予測するのに役立ちます。 特に、流動性分析に優れており、機関がどのように取引しているかを理解しやすくしています。市場のトレンドを予測し、価格の動きを慎重に分析するのに優れています。機関の戦略とトレードを合わせることで、市場の動向についてより正確な予測ができます。このインジケーターは多目的であり、市場構造を分析し、重要な注文ブロックを特定し、さまざまなパターンを認識するのに優れています。 このインジケーターはBOSやCHoCHなどのパターンの識
これはMT5のインジケーターで、再描画なしで取引に参入するための正確なシグナルを提供します。 外国為替、暗号通貨、金属、株式、インデックスなど、あらゆる金融資産に適用できます。かなり正確な見積もりを提供し、取引を開始して終了するのに最適な時期を教えてくれます。1つのシグナルを処理しただけでインジケーターの元が取れた例の 動画 (6:22)をご覧ください。Entry PointsPro インジケーターの助けを借りたほとんどのトレーダーの最初の1週間の結果が改善しています。 Telegramグループ に登録してください。Entry Points Proインジケーターのメリットは次の通りです。 再描画のないエントリーシグナル 再描画されるインジケーターでは一度表示されたシグナルが削除されて大きな金銭的損失につながることがありますが、これと異なり、表示されて確認されたシグナルは消えることがありません。 エラーなしの取引開始 インジケーターアルゴリズムによって取引を開始する(資産を売買する)理想的な瞬間を見つけることができます。それを使用するすべてのトレーダーの成功率が向上します。
mql5と Telegramの モーニング・ブリーフィングで、詳細とスクリーンショットを含む毎日のマーケット・アップデートをご覧 ください! FX Power MT5 NGは 、長年の人気を誇る通貨強度計FX Powerの次世代モデルです。 この次世代ストレングスメーターは何を提供するのでしょうか?初代FXパワーの魅力すべて プラス GOLD/XAUの強さ分析 より正確な計算結果 個別に設定可能な分析期間 カスタマイズ可能な計算上限値により、さらに優れたパフォーマンスを実現 もっと見たい人のための特別なマルチインスタンス設定 すべてのチャートでお好みの色を無限に設定可能 数え切れないほどの通知オプションにより、重要なことを見逃すことはありません。 Windows 11とmacOSのスタイルで角を丸くした新しいデザイン 魔法のように動くインジケーターパネル FXパワーの主な機能 すべての主要通貨の強さの完全な履歴 すべての時間枠における通貨の強さの履歴 すべてのブローカーとチャートで同一の計算結果 100%信頼できるリアルタイム計算 -> リペイントなし ドロップダウン・リストから
今、147ドル(いくつかの更新後に499ドルに増加します) - 無制限のアカウント(PCSまたはMac) RelicusRoad ユーザー マニュアル + トレーニング ビデオ + プライベート Discord グループへのアクセス + VIP ステータス 市場の新しい見方 RelicusRoad は、外国為替、先物、暗号通貨、株式、および指数の世界で最も強力な取引インジケーターであり、トレーダーに収益を維持するために必要なすべての情報とツールを提供します。初心者から上級者まで、すべてのトレーダーが成功するためのテクニカル分析と取引計画を提供します。これは、将来の市場を予測するのに十分な情報を提供する重要な取引指標です。意味をなさないチャート上のいくつかの異なる指標ではなく、完全な解決策を信じています.これは、信号、矢印 + 価格アクション情報を表示するオールインワンのインジケーターで、他に類を見ない非常に正確です。 強力な AI に基づいて、RelicusRoad は不足している情報とツールを提供して、あなたを教育し、トレーディングのプロ、成功したトレーダーにします。
Auto Order Block with break of structure based on ICT and Smart Money Concepts Futures Break of Structure ( BoS )             Order block ( OB )            Higher time frame Order block / Point of Interest ( POI )    shown on current chart           Fair value Gap ( FVG ) / Imbalance   ,  MTF      ( Multi Time Frame )    Volume Imbalance     ,  MTF          vIMB Gap’s Equal High / Low’s     ,  MTF             EQH / EQL Liquidity               Current Day High / Low           HOD /
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 ind
Was: $299  Now: $99   Supply Demand uses previous price action to identify potential imbalances between buyers and sellers. The key is to identify the better odds zones, not just the untouched ones. Blahtech Supply Demand indicator delivers functionality previously unavailable on any trading platform. This 4-in-1 indicator not only highlights the higher probability zones using a multi-criteria strength engine, but also combines it with multi-timeframe trend analysis, previously confirmed swings
現在33%オフ 初心者にもエキスパートトレーダーにも最適なソリューション このインジケーターは独自の機能と新しい公式を多数内蔵しており、ユニークで高品質かつ手頃な取引ツールです。このアップデートでは、2つの時間枠ゾーンを表示できるようになります。より長いTFだけでなく、チャートTFとより長いTF(ネストゾーンを表示)の両方を表示できます。すべてのSupply Demandトレーダーの皆さんのお気に召すはずです。:) 重要情報の公開 Advanced Supply Demandの可能性を最大化するには、 https://www.mql5.com/ja/blogs/post/720245 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適
ICT, SMC, SMART MONEY CONCEPTS, SMART MONEY, Smart Money Concept, Support and Resistance, Trend Analysis, Price Action, Market Structure, Order Blocks, BOS/CHoCH,   Breaker Blocks ,  Momentum Shift,   Supply&Demand Zone/Order Blocks , Strong Imbalance,   HH/LL/HL/LH,    Fair Value Gap, FVG,  Premium  &   Discount   Zones, Fibonacci Retracement, OTE, Buy Side Liquidity, Sell Side Liquidity, BSL/SSL Taken, Equal Highs & Lows, MTF Dashboard, Multiple Time Frame, BigBar, HTF OB, HTF Market Structure
Gannスクエアインジケーターは、W.D. Gannによって執筆された「市場予測のための数学的な式」の記事に基づく強力な市場分析ツールです。このツールは、解析に数学的な概念を応用し、Gann理論に基づいています。それは、144、90、52のスクエアや9のスクエアなど、Gannの関連テクニックの要素を取り入れています。さらに、の方法を組み込んでおり、9のスクエアとその関連性についてのチャネルやスターパターンに焦点を当てています。 ユーザーマニュアルと使用方法: このインジケーターを使用する前に、ユーザーマニュアルを読んで疑問点を解決するためにお問い合わせいただくことをお勧めします。ユーザーマニュアルの完全版は、当社のウェブサイトで入手できます。 MT5の完全版は購入できますし、MT4の無料版も試すことができます。両方のバージョンへのリンクを提供していますので、ご利用ください。 主な機能と機能: Gannスクエアインジケーターは、市場分析のための完全なツールセットを提供し、幾何学的な概念とGann理論に基づいて的確な判断を行う手助けをします。以下に主な機能を示します。 9のスクエアの分析:
AW Trend Predictor MT5
AW Trading Software Limited
4.76 (54)
1 つのシステムでのトレンド レベルとブレイクダウン レベルの組み合わせ。高度なインジケーター アルゴリズムは、市場のノイズをフィルター処理し、トレンド、エントリー ポイント、および可能なエグジット レベルを決定します。インジケーターシグナルは統計モジュールに記録されるため、最適なツールを選択してシグナル履歴の有効性を示すことができます。この指標は、テイクプロフィットとストップロスのマークを計算します。 マニュアルと説明書 ->   ここ / MT4 バージョン ->   ここ インジケーターで取引する方法: Trend Predictor での取引は、たった 3 つの簡単なステップです。 ステップ 1 - ポジションを開く 70% 以上の成功率で買いシグナルが受信されました ステップ 2 - ストップロスの決定 逆信号でトランクを選択 ステップ 3 - テイクプロフィット戦略の定義 戦略 1: TP1 に到達したらポジション全体をクローズする 戦略 2: TP1 に達した時点でポジションの 50% をクローズし、TP2 に達した時点で残りの 50% をクローズします。 戦略 3:
ブレーカートレーダーになり、価格が反転すると市場構造からの利益が変化します。 注文ブロックブレーカーインジケーターは、トレンドまたは価格の動きが枯渇に近づいており、逆転の準備ができていることを識別します。通常、反転または大規模なプルバックが発生しようとしているときに発生する市場構造の変化について警告します。 この指標は、ブレイクアウトと価格の勢いを識別する独自の計算を使用します。使い果たされる可能性のあるポイントの近くで新しい高値が形成されるたびに、インディケーターはその高値の作成を担当する最後の注文ブロックを描きます。次に、移動する価格とともに注文ブロックを追跡します。その後、価格が反対方向にシフトし、その注文ブロックを突破すると、新しい市場構造を作成し、トレンドまたは大きな後退の可能性のある反転の開始を警告します。 注文ブロックは、高値/安値が作成される前の最後の反対色のろうそくであり、価格がこれらの重要な領域を下抜けすると、トレンドの短期的ま​​たは長期的な反転の兆候です。 特徴 重要な枯渇点での市場構造の変化を警告します 価格が使い果たされるレベルに近づくと、
The Volume by Price Indicator for MetaTrader 5 features Volume Profile and Market Profile TPO (Time Price Opportunity). Get valuable insights out of currencies, equities and commodities data. Gain an edge trading financial markets. Volume and TPO histogram bar and line charts. Volume Footprint charts. TPO letter and block marker charts including split structures. Versatile segmentation and compositing methods. Static, dynamic and flexible ranges with relative and/or absolute visualizations. Lay
ご紹介     Quantum Breakout PRO は 、ブレイクアウト ゾーンの取引方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。     クォンタム ブレイクアウト プロ   は、革新的でダイナミックなブレイクアウト ゾーン戦略により、あなたのトレーディングの旅を新たな高みに押し上げるように設計されています。 クォンタム ブレイクアウト インジケーターは、5 つの利益ターゲット ゾーンを備えたブレイクアウト ゾーン上のシグナル矢印と、ブレイクアウト ボックスに基づいたストップロスの提案を提供します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック 重要!購入後、インストールマニュアルを受け取るためにプライベートメッセージを送ってください。 推奨事項: 時間枠: M15 通貨ペア: GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD アカウントの種類: ECN、Raw、またはス
TrendLine PRO MT5
Evgenii Aksenov
4.78 (49)
The Trend Line PRO indicator is an independent trading strategy. It shows the trend change, the entry point to the transaction, as well as automatically calculates three levels of Take Profit and Stop Loss protection Trend Line PRO is perfect for all Meta Trader symbols: currencies, metals, cryptocurrencies, stocks and indices Advantages of Trend Line PRO Never redraws its signals The possibility of using it as an independent strategy It has three automatic levels Take Profit and Stop Loss lev
MT4版  |  FAQ Owl Smart Levels Indicator は、 Bill Williams の高度なフラクタル、市場の正しい波構造を構築する Valable ZigZag、エントリの正確なレベルをマークする Fibonacci レベルなどの一般的な市場分析ツールを含む 1 つのインジケーター内の完全な取引システムです。 利益を得るために市場と場所に。 戦略の詳細な説明 インジケータを操作するための指示 顧問-取引助手 プライベートユーザーチャット ->購入後に私に書いて、私はプライベートチャットにあなたを追加し、あなたはそこにすべてのボーナスをダウンロードすることができます 力はシンプルさにあります! Owl Smart Levels 取引システムは非常に使いやすいので、専門家にも、市場を勉強し始めて自分で取引戦略を選択し始めたばかりの人にも適しています。 戦略と指標に秘密の数式や計算方法が隠されているわけではなく、すべての戦略指標は公開されています。 Owl Smart Levels を使用すると、取引を開始するためのシグナルをすばやく確認し、注文を出すため
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all classic timeframes: (m1, m5, m15, m30, H1, H4, D1, Wk, Mn). Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all classic timeframes 3. Search for patterns of all possible sizes. Fr
トレンドラインマップインジケーターは、トレンドスクリーナーインジケーターのアドオンです。トレンドスクリーナー(トレンドラインシグナル)によって生成されたすべてのシグナルのスキャナーとして機能します。 これは、トレンドスクリーナーインジケーターに基づくトレンドラインスキャナーです。 Trend Screener Pro インジケーターがない場合、Trend Line Map Proは機能しません。 It's a Trend Line Scanner based on Trend Screener Indicator. If you don't have Trend Screener Pro Indicator,     the Trend Line Map Pro will not work . ブログにアクセスすると、トレンドラインマップインジケーターの無料バージョンをダウンロードできます。 Metatrader Testerの制限なしで、購入する前に試してみてください。 :  ここをクリック 1.簡単になる利点 通貨と時間枠に基づいて売買シグナルを表示し
TrendDecoder Premium MT5
Christophe, Pa Trouillas
5 (1)
レンジと次の動きを特定     |    トレンドの最も早いシグナルと強さを得る     |    反転の前に明確な出口を得る     |    価格がテストするフィボ・レベルを見つける。   |  非リペイント、非遅延インディケータ - マニュアルおよび自動売買に最適 - すべての資産、すべての時間単位に対応 - 発売記念50%割引   - その後 149 ドルに戻る 購入後、 推奨セッティングについては、このチャンネルで私に連絡してください。 MT4 バージョン: ここをクリック BladeSCALPER と PowerZONES を使った完全な方法を入手する どのようなものですか? TrendDECODERは、トレンド監視をシンプルかつ簡単にするための複数のイノベーションを集約したものです。 Projective TrendLine (投影トレンドライン) - 今後のトレンドのスピードリファレンス RealTime TrendLine vs. Projective TrendLine (リアルタイムトレンドライン vs. Projective Tren
MetaBands M5
Vahidreza Heidar Gholami
4.67 (3)
MetaBandsは、強力でユニークなアルゴリズムを使用してチャンネルを描画し、トレンドを検出して、トレーダーに取引の入出ポイントを提供することができます。チャンネル指標に加えて、強力なトレンド指標でもあります。入力パラメータを使用して新しいチャンネルを作成するために、異なるタイプのチャンネルを統合することができます。MetaBandsは、市場のイベントについてユーザーに通知するために、すべてのタイプのアラートを使用します。 特徴 ほとんどのチャンネルアルゴリズムをサポート 強力なトレンド検出アルゴリズム 異なるタイプのチャンネルを統合する能力 マルチタイムフレームおよびマルチカレンシー(シグナルマトリックス) すべてのタイプのアラート機能(サウンド、画面フラッシャー、プッシュ通知、メール、ポップアップ、矢印) 再描画しない トレンド検出 MetaBandsは、チャネル内を振動する青いラインを使用してトレンドを検出します。ラインがチャネルの上部バンドに達すると、下降トレンドの開始を示し、下部バンドに達すると上昇トレンドの開始を示します。青いラインが中心ラインに近づくと、市場はコンソ
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 MT4                  DETAILED DESCRIPTION        /       TRADING SETUPS       
Was: $249  Now: $99   Market Profile defines a number of day types that can help the trader to determine market behaviour. A key feature is the Value Area, representing the range of price action where 70% of trading took place. Understanding the Value Area can give traders valuable insight into market direction and establish the higher odds trade. It is an excellent addition to any system you may be using. Inspired by Jim Dalton’s book “Mind Over Markets”, this indicator is designed to suit the
支持線と抵抗線、そしてローソク足のギャップをチャート上に自動的に表示するため、価格が次に向かう可能性のある場所や反転する可能性のある場所を確認することができます。 このインジケーターは、私のウェブサイト(The Market Structure Trader)で教えているポジショントレード手法の一部として使用するように設計されており、ターゲットとエントリーの可能性のための重要な情報を表示します。 MT4 Version:  https://www.mql5.com/en/market/product/97246/ このインジケーターには、2つのコア機能と4つの追加機能があります: コア機能1 - 日足、週足、月足のサポートラインとレジスタンスラインの自動表示 このインジケーターは、直近2日間、最大6週間前、数ヶ月前のサポートレベルとレジスタンスレベルを自動的に引き込みます。これらのレベルの見た目は完全にカスタマイズすることができ、いくつ表示されるかを表示することもできます。これらの重要な水準は、しばしば主要な支持線と抵抗線として機能し、価格が転換して引き戻されたり反転したりする場
Golden Spikes Detector This indicator is based on an advanced strategy primarily for trading spikes on Boom and Crash Indices. Complex algorithms were implemented to detect high probability entries only. It alerts on potential Buy and Sell entries. To trade spikes on the Deriv or Binary broker, only take Buy Boom and Sell Cash alerts. It was optimised to be loaded on 5-minute timeframe although multiple timeframe analysis is done in the background. Features ·             Desktop pop up and sound
作者のその他のプロダクト
SUPERTREND; It is a trend following indicator based on the SuperTrend ATR created by Olivier Seban. It can be used to detect changes in trend direction and locate stops. When the price falls below the indicator curve, it turns red and indicates a downtrend. Conversely, when the price moves above the curve, the indicator turns green, indicating an uptrend. Like other indicators, it works well on SuperTrend when used in conjunction with other indicators such as MACD, parabolik SAR, Bollinger Band
FREE
Pivot Classic, Woodie, Camarilla, Fibonacci and Demark Floor/Classic Pivot points, or simply pivots, are useful for identifying potential support/resistance levels, trading ranges, trend reversals, and market sentiment by examining an asset's high, low, and closing values. The Floor/Classic Pivot Points can be calculated as follows. Pivot Point (P) = (High + Low + Close)/3 S1 = P * 2 - High S2 = P - (High - Low) S3 = Low – 2*(High - P) R1 = P * 2 - Low R2 = P + (High - Low) R3 = High + 2*(P - Lo
FREE
DONCHIAN CHANNEL DC It is a trend indicator developed by “Richard Donchian”, consisting of 3 layers, the upper channel, the lower channel and the middle channel. It is created on the Donchian Channel by plotting the highest and lowest prices reached in the past period on the price chart. It is also used to measure the volatility of the market, as it is an expanding/contracting channel according to the increase/decrease of price volatility. Method 0; Donchian channel indicator drawing. BUY/SELL S
FREE
Pivot Classic, Woodie, Camarilla, Fibonacci and Demark Floor/Classic Pivot points, or simply pivots, are useful for identifying potential support/resistance levels, trading ranges, trend reversals, and market sentiment by examining an asset's high, low, and closing values. The Floor/Classic Pivot Points can be calculated as follows. Pivot Point (P) = (High + Low + Close)/3 S1 = P * 2 - High S2 = P - (High - Low) S3 = Low – 2*(High - P) R1 = P * 2 - Low R2 = P + (High - Low) R3 = High + 2*(P -
FREE
DONCHIAN CHANNEL DC It is a trend indicator developed by “Richard Donchian”, consisting of 3 layers, the upper channel, the lower channel and the middle channel. It is created on the Donchian Channel by plotting the highest and lowest prices reached in the past period on the price chart. It is also used to measure the volatility of the market, as it is an expanding/contracting channel according to the increase/decrease of price volatility. Method 0; Donchian channel indicator drawing. BUY/SELL S
FREE
TILLSON MOVING AVERAGE Also known as TMA or T3 indicator. It is a moving average that uses EMA and DEMA in its formula and is calculated with the 3rd degree Binomial expansion. Pros; 1-       erroneous signals encountered in other moving averages ( continuous zig zag ) has been reduced as much as possible. 2-       prevented the delays seen in classical moving averages . 3-       Very successful in trends Cons 1-       It is not effective in horizontal markets. Setting parameters; period ; Altho
FREE
フィルタ:
Detleff Böhmer
2572
Detleff Böhmer 2023.12.05 09:32 
 

Danke, sehr gute Ergebnisse.

Julpa
172
Julpa 2023.02.24 15:06 
 

Very good signal, I try it for 1 week: nice result

Baki Çetin
50
Baki Çetin 2023.02.23 08:04 
 

Çok teşekkür ederim Emin kardeşim. Çok başarılı olmuş. Ne zamandır bunu arıyordum. Ellerine sağlık.

Kong Huang
429
Kong Huang 2023.02.07 11:49 
 

NICE

Findolin
945
Findolin 2023.02.06 19:14 
 

Very good, but unfortunately the colors cannot be changed. They always jump back again.

レビューに返信
バージョン 1.10 2023.03.07
A few minor changes