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

Nadaraya Watson Envelope LuxAlgo

To get access to MT4 version click here.

  • This is the exact conversion from "Nadaraya-Watson Envelope" by "LuxAlgo". (with non-repaint input option)
  • This is not a light-load processing indicator if repaint input is set to true.
  • All input options are available. 
  • Buffers are available for processing in EAs.
  • I changed default input setup to non-repaint mode for better performance required for mql market validation procedure.

Here is the source code of a simple Expert Advisor operating based on signals from this indicator.

#include <Trade\Trade.mqh>
CTrade trade;
int handle_nw=0;

input group "EA Setting"
input int magic_number=123456; //magic number
input double fixed_lot_size=0.01; // select fixed lot size
input bool multiplie_entry=false; //allow multiple entries in the same direction

input group "nw setting"
input double h = 8.;//Bandwidth
input double mult = 3; //
input ENUM_APPLIED_PRICE src = PRICE_CLOSE; //Source
input bool repaint = false; //Repainting Smoothing


int OnInit()
  {
   trade.SetExpertMagicNumber(magic_number);
   handle_nw=iCustom(_Symbol, PERIOD_CURRENT, "Market/Nadaraya Watson Envelope LuxAlgo", h, mult, src, repaint);
   if(handle_nw==INVALID_HANDLE) 
   {
      Print("Indicator not found!");
      return INIT_FAILED;
   }
   return(INIT_SUCCEEDED);
  }

void OnDeinit(const int reason)
  {
   IndicatorRelease(handle_nw);
  }

void OnTick()
  {
   if(!isNewBar()) return;
   ///////////////////////////////////////////////////////////////////
   bool buy_condition=true;
   if(!multiplie_entry) buy_condition &= (BuyCount()==0);
   buy_condition &= (IsNWBuy(1));
   if(buy_condition) 
   {
      CloseSell();
      Buy();
   }
      
   bool sell_condition=true;
   if(!multiplie_entry) sell_condition &= (SellCount()==0);
   sell_condition &= (IsNWSell(1));
   if(sell_condition) 
   {
      CloseBuy();
      Sell();
   }
  }

bool IsNWBuy(int i)
{
   double array[];
   ArraySetAsSeries(array, true);
   CopyBuffer(handle_nw, 5, i, 1, array);
   return array[0]!=EMPTY_VALUE;
}

bool IsNWSell(int i)
{
   double array[];
   ArraySetAsSeries(array, true);
   CopyBuffer(handle_nw, 6, i, 1, array);
   return array[0]!=EMPTY_VALUE;
}

int BuyCount()
{
   int buy=0;
   for(int i=0;i<PositionsTotal();i++)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_BUY) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      buy++;
   }  
   return buy;
}

int SellCount()
{
   int sell=0;
   for(int i=0;i<PositionsTotal();i++)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_SELL) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      sell++;
   }  
   return sell;
}


void Buy()
{
   double Ask=SymbolInfoDouble(_Symbol, SYMBOL_ASK);
   if(!trade.Buy(fixed_lot_size, _Symbol, Ask, 0, 0, ""))
   {
      Print("Error executing order: ", GetLastError());
      //ExpertRemove();
   }
}

void Sell()
{
   double Bid=SymbolInfoDouble(_Symbol, SYMBOL_BID);
   if(!trade.Sell(fixed_lot_size, _Symbol, Bid, 0, 0, ""))
   {
      Print("Error executing order: ", GetLastError());
      //ExpertRemove();
   }
}


void CloseBuy()
{
   for(int i=PositionsTotal()-1;i>=0;i--)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_BUY) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      if(trade.PositionClose(ticket)==false)
      {
         Print("Error closing position: ", GetLastError());
         //ExpertRemove();
      }
   }  
}

void CloseSell()
{
   for(int i=PositionsTotal()-1;i>=0;i--)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_SELL) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      if(trade.PositionClose(ticket)==false)
      {
         Print("Error closing position: ", GetLastError());
         //ExpertRemove();
      }
   }  
}

datetime timer=NULL;
bool isNewBar()
{
   datetime candle_start_time= (int)(TimeCurrent()/(PeriodSeconds()))*PeriodSeconds();
   if(timer==NULL) {}
   else if(timer==candle_start_time) return false;
   timer=candle_start_time;
   return true;
}


おすすめのプロダクト
This indicator closes the positions when Profit. This way you can achieve a goal without determine Take Profit.  Parameters: Profit: the amount of Dolllars you want to close when profit.  Just determine Profit section and open new positions. If Any of your positions reaches above Profit , Indicator will close automatically and you will recieve your Profit. 
To get access to MT4 version please click here . This is the exact conversion from TradingView:"HIGH AND LOW Optimized Trend TrackerHL OTT" by "kivancozbilgic" This is a light-load processing indicator. It is a non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
Hello, In this indicator, I started with a simple moving average crossover algorithm. However, in order ot get more succesfull results, I created different scenarios by basin the intersections and aptimized values of the moving averages on opening, closing, high and low values. I am presenting you with the most stable version of the moving averages that you have probably seen in any environment. We added a bit of volume into it. In my opinion, adding the Bollinger Band indicator from the ready-
XFlow shows an expanding price channel that helps determine the trend and the moments of its reversal. It is also used when accompanying transactions to set take profit/stop loss and averages. It has practically no parameters and is very easy to use - just specify an important moment in the history for you and the indicator will calculate the price channel. DISPLAYED LINES ROTATE - a thick solid line. The center of the general price rotation. The price makes wide cyclical movements around the
Contact me for instruction, any questions! Introduction The breakout and retest strategy is traded support and resistance levels. it involves price breaking through a previous level.  The break and retest strategy is designed to help traders do two main things, the first is to avoid false breakouts. Many false breakouts start with a candlestick that breaks out of a level but ends with an immediate candlestick that brings the price back into the level. The second thing that the breakout and re
[ MT4 Version ]  [ Kill Zones ]  [ SMT Divergences ] How to trade using Order Blocks:  Click here User Interface Performance:  During testing in the strategy tester, the UI may experience lag. Rest assured, this issue is specific to the testing environment and does not affect the indicator's performance in live trading. Elevate your trading strategy with the  Order Blocks ICT Multi TF  indicator, a cutting-edge tool designed to enhance your trading decisions through advanced order block analysis
The  Market Sessions Indicator for MT5 helps you  predict market turnarounds  by detecting major supply and demand areas. These pivot points tend to occur after a new session has started and the previous one is still open. It is also used to gauge how many points or pips the market moves on average during a session. This helps us to place better our take profits and stop losses. The indicator works on all forex pairs, gold, silver, commodities, stocks, indices and any other instrument that your
- This is an implementation of OCC ==> open close cross - This indicator applies twelve different averaging methods to open and close prices separately to signal the trend switching. - All MA methods are set as input as well as period and different offsets applied to linear regression and ALMA averaging. - Buffers 16 and 17 can be used in EAs to detect trend direction. - You can message in private chat for further changes you need.
Volume Trade Levels
Mahmoud Sabry Mohamed Youssef
The idea behind this indicator is very simple , First it contains 2 mechanisms to place your trades: 1- Enter the Pips you want to duplicate to price levels. 2- Automatically let the indicator specify the largest Buy / Sell Volume Candle and place duplicated levels based on the candle itself. How it works: 1- Enter the Pips you want to duplicate to price levels:    1- once the indicator is loaded you will need first to Specify the number of pips in the indicator Configuration window ,you can
ShortBS是一个很好的短线交易指示器,能很好与 BestPointOfInitiation ( https://www.mql5.com/zh/market/product/96671 )配合,能让你找到最合适的buy和sell位置,指标不含有未来函数,不会重新绘制。是一个针对(如果你感觉到这个指标能够帮助你进行更准确的交易,请帮忙给个好评,希望我的作品能够帮助更多有需要的人) ===================参数列表===================== maPeriod: 25 slowPeriod:20 fastPeriod:10 stepPeriod:5 =================参考使用方法=================== 此指标可以适用于任何交易品种,能够用在任何周期。
To get access to MT4 version please click   here . This is the exact conversion from TradingView: QQE MT4 Glaz-modified by JustUncleL This is a light-load processing and non-repaint indicator. All input options are available. This is not a multi time frame indicator. Buffers are available for processing in EAs. You can message in private chat for further changes you need.
Buy Sell Visual MTF
Naththapach Thanakulchayanan
This MT5 indicator, Bull Bear Visual MTF (21 Time Frames), summarize the strength color graphic and percentages of power for both  Bull and Bear in current market emotion stage which will show you in multi time frames and sum of the total Bull and Bear power strength which is an important information for traders especially you can see all Bull and Bear power in visualized graphic easily, Hope it will be helpful tool for you for making a good decision in trading.
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. Thanks
The PriceActionOracle indicator greatly simplifies your trading decision-making process by providing accurate signals about market reversals. It is based on a built-in algorithm that not only recognizes possible reversals, but also confirms them at support and resistance levels. This indicator embodies the concept of market cyclicality in a form of technical analysis. PriceActionOracle tracks the market trend with a high degree of reliability, ignoring short-term fluctuations and noise around
MT4 Version Kill Zones Kill Zones allows you to insert up to 3 time zones in the chart. The visual representation of the Kill Zones in the chart together with an alert and notification system helps you to ignore fake trading setups occurring outside the Kill Zones or specific trading sessions. Using Kill Zones in your trading will help you filter higher probability trading setups. You should select time ranges where   the market   usually reacts with high volatility. Based on   EST time zone, f
The indicator determines a special pattern of Joe Dinapoli. It gives very high probability buy and sell signals. Indicator does not repaint. Indicator Usage Buy Signal ''B'' Entry : Market buy order at signal bar close Stop : Low of signal bar Take Profit : First swing high Sell Signal ''S'' Entry : Market sell order at signal bar close Stop : High of signal bar Take Profit : First swing low Indicator Parameters Fast EMA : External Parameter (should be kept as default) Slow EMA: External Param
This is a two in one indicator implementation of Average Directional Index based on heiken ashi and normal candles. Normal candles and Heiken Ashi is selectable via input tab. The other inputs are ADX smoothing and DI length. This indicator lets you read the buffers: +di: buffer 6 -di: buffer 7 -adx: buffer 10 Note: This is a non-repaint indicator with light load processing. - You can message in private chat for further changes you need.
Market Noise マーケットノイズは、価格チャート上の市場の局面を決定する指標であり、また、蓄積または分配局面が発生したときに、明確で滑らかなトレンドの動きとノイズの多い平坦な動きを区別します。 各フェーズは、独自のタイプの取引に適しています。トレンド追跡システムにはトレンド、積極的なシステムにはフラットです。 市場のノイズが始まったら、取引を終了することを決定できます。 同様に、またその逆も同様で、騒音が止んだらすぐに、積極的な取引システムをオフにする必要があります。 一方からもう一方に切り替えて、両方のタイプの取引戦略を取引することができます。 したがって、この指標は取引決定の分野で優れたアシスタントの役割を果たします。 すべての価格変動は、選択した期間の一般的な価格変動と、この期間内の価格変動の形でのノイズという 2 つの要素に分けることができます。 同時に、異なる期間の異なる市場では、ノイズ成分とトレンド成分の間の幅広い相互関係を示すことができます (図 1)。 価格変動のノイズレベルが高くなるほど、基礎的なトレンドの方向性と強さを識別することが難しくなります。 した
CAD Sniper X MT5
Mr James Daniel Coe
4.86 (7)
BUILDING ON THE SUCCESS OF MY POPULAR FREE EA 'CAD SNIPER'... I PRESENT CAD SNIPER X! THOUSANDS MORE TRADES | NO BROKER LIMITATIONS | BETTER STATISTICS | MULTIPLE STRATEGIES Send me a PRIVATE MESSAGE after purchase for the manual and a free bonus TWO STRATEGIES IN ONE FOR AUDCAD, NZDCAD, GBPCAD and CADCHF Strategy 1 can be used with any broker, trades much more frequently and is the default strategy for CAD Sniper X. It's shown robust backtest success for many years and is adapted
I recommend you to read the   product's blog  (manual) from start to end so that it is clear from the beginning what the indicactor offers. This multi time frame and multi symbol trend indicator sends an alert when a strong trend or trend reversal has been identified. It can do so by selecting to build up the dashboard using Moving average (single or double (both MA:s aligned and price above/below both)), RSI, Bollinger bands, ADX, Composite index (Constance M. Brown), Awesome (Bill Williams), 
Disclaimer : Keep in mind that seasonal patterns are not always reliable. Therefore, thoughtful risk management is crucial to minimize losses.  Seasonal patterns in the financial world are like a well-guarded secret that successful investors use to their advantage. These patterns are recurring price movements that occur during specific periods or around special events. Additionally, there are also intraday patterns that repeat. For example, Uncle Ted from Forex Family suggests examining previou
In order for Trailing Money Python   to work more efficiently, it was designed to be quite simple and plain and optimized by adding the Trailing Stop.  The robot only trades in a 5 minute time frame. There is a saying that brokers often use: "Earnings are worthy of the wallet!" Here, we see this word as a philosophy of trade. Therefore, we developed this robot. ** Timeframe: 5 Minutes ** Supported: ***Especially Stocks at Futures ** The minimum amount depends on the margin requirement of t
For Nasdaq trading, the most important principle is to know the trend of the fund. This indicator with 6 green and red lights provides you with the daily path of this important indicator. This indicator has been tested for 6 months and has a win rate of over 85%. Be sure to contact me before purchasing to get the necessary instructions on how to use and set up this indicator. You should use a broker that has dollar index, vix, and commodities. MT4 Version You can contact us via Instagram,
Impulse fractals indicator - is counter-trend oriented complex market fractal pattern.  Market creates bull/bear impulse, trend starts, fractals on impulsed wave are an agressive pullback signals. Buy arrow is plotted when market is bearish and it's impulse showed up-side fractal, and sell arrow is plotted when market is bullish and it's impulse showed dn-side fractal. Main indicator's adjustable inputs : impulsePeriod - main period of impulse histogram  filterPeriod  - smoothes impulse accordi
MT5インジケーター「トラフィックシグナル」は、RSI、ストキャスティクス、CCI、トレンドの水準を分析する特別な戦略に基づいて、すべての時間枠で最も正確なエントリーシグナルを得るための特別な戦略に基づいて動作します。トラフィックシグナルは、成功した取引の世界への入り口です!精度と専門知識で設計されたこの革新的なインジケーターは、先進的なテクニカルインジケーターであるRSI、ストキャスティクス、CCI、トレンドを全時間枠で活用し、前例のない自信を持って市場をナビゲートするための最も正確なエントリーシグナルを提供します。 トラフィックシグナルを使用することで、収益性の高い取引機会を検出するために精密に調整された重要なテクニカル指標の包括的な分析にアクセスできます。不確実性を払拭し、情報を基にした意思決定の新たな時代を迎えましょう。RSI、ストキャスティクス、CCI、トレンドの潜在能力を引き出すトラフィックシグナルは、これまでにない市場のダイナミクスを鮮明に描写します。 トラフィックシグナルを使って、市場のトレンドとパターンを容易に把握できます。短期的なエネルギーサージまたは長期的な戦略的
このインジケーターは、実際の取引に最適なウェーブ自動分析インジケーターです。 バンドの標準化された定義は、もはや異なる人々の波ではなく、人為的な干渉の描画が排除されます。これは、アプローチの厳密な分析において重要な役割を果たします。         現在購入割引!   => Increase the choice of international style mode, (red fall green rise style) インデックスの内容: 1.1。     基本波: まず、価格変動過程で基本変動の変曲点を見つけましたが、もちろん、彼の注文はそれほど強くないので、次の計算の基礎になります。 2.2。     二次帯域 :基本波に基づいて、アルゴリズム分析を通じてより明白な二次帯域が得られ、二次帯域は波解析の基礎を提供します 3.3。     波: より明確な傾向とより明確で直感的な方向性があります。波が続くかどうかを分析するには、二次波帯の形状を調べ、二次波の組成を分析して、その後の予測を取得する必要があります。波。 4.4。     チャネル: チャネル計算で
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by " colinmck ". - This is a light-load processing and non-repaint indicator. - All input options are available.  - Buffers are available for processing in EAs. - You can message in private chat for further changes you need. Thanks for downloading
Dragon Ultra
Dang Cong Duong
5 (1)
At first, I got my teeth into   Dragon Ultra   Expert Advisor. Build a smart grid both with the trend and against the trend. The powerful combination of locking and partial loss closure. The program is constantly being improved and upgraded. You should use the  Dragon Training proficiently before buying the product. You can run in real environment with the Dragon Lite , note that the input parameters are hidden. Advantages of the Dragon Ultra Smart recovery system with Fibonacci grid Good resist
Introduction This indicator detects volume spread patterns for buy and sell opportunity. The patterns include demand and supply patterns. You might use each pattern for trading. However, these patterns are best used to detect the demand zone (=accumulation area) and supply zone (=distribution area). Demand pattern indicates generally potential buying opportunity. Supply pattern indicates generally potential selling opportunity. These are the underlying patterns rather than direct price action. T
The  Market Sessions Indicator for MT5 helps you  predict market turnarounds  by detecting major supply and demand areas. These pivot points tend to occur after a new session has started and the previous one is still open. It is also used to gauge how many points or pips the market moves on average during a session. This helps us to place better our take profits and stop losses. The indicator works on all forex pairs, gold, silver, commodities, stocks, indices and any other instrument that yo
このプロダクトを購入した人は以下も購入しています
まず第一に、この取引インジケーターは再描画されず、再描画されず、遅延しないことを強調する価値があります。これにより、手動取引とロボット取引の両方に理想的なものになります。 ユーザーマニュアル:設定、入力、戦略。 アトミックアナリストは、価格の強さとモメンタムを利用して市場でより良いエッジを見つけるためのPA価格アクションインジケーターです。ノイズや誤ったシグナルを除去し、取引ポテンシャルを高めるための高度なフィルターを備えています。複雑なインジケーターの複数のレイヤーを使用して、アトミックアナリストはチャートをスキャンし、複雑な数学的計算をシンプルなシグナルと色に変換します。これにより、どのような初心者トレーダーでも理解して使用し、一貫した取引の決定を行うことができます。 「アトミックアナリスト」は、新規および経験豊富なトレーダー向けにカスタマイズされた包括的な取引ソリューションです。プレミアムインジケーターとトップノッチの機能を1つの取引戦略に組み合わせ、すべてのタイプのトレーダーにとって汎用性のある選択肢にします。 デイリートレーディングとスキャルピング戦略:高速で正確な
まず第一に、このトレーディングシステムがノンリペイント、ノンリドロー、ノンラグのインジケーターであることを強調する価値がある。これにより、手動取引とロボット取引の両方に理想的なものになっています。 オンラインコース、マニュアル、プリセットのダウンロード。 「スマートトレンドトレーディングシステム MT5」は、新規および経験豊富なトレーダー向けにカスタマイズされた包括的なトレーディングソリューションです。10以上のプレミアムインジケーターを組み合わせ、7つ以上の堅実なトレーディング戦略を備えており、多様な市場状況に対応する多目的な選択肢となっています。 トレンドフォロー戦略:トレンドを効果的に乗り越えるための正確なエントリーとストップロス管理を提供します。 リバーサル戦略:潜在的なトレンドの反転を特定し、トレーダーがレンジ相場を活用できるようにします。 スキャルピング戦略:高速で正確なデイトレードおよび短期取引のために設計されています。 安定性:すべてのインジケーターはノンリペイント、ノンリドロー、ノンラグであり、信頼性の高いシグナルを保証します。 カスタマイズ:個々の取引の嗜好に合わせ
最初のパルスレベルを反転 (RFI)     指示する     ロシア     -        utilizar con   el indicador の ESP 推奨事項 -   TPSpro トレンド プロフェッショナル版 -   MT5のバージョン 最も重要なことは、将来においても最も重要なことです。 機能のプリンシパル: ゾーンのほとんどは、ベンダーとコンプラドールによってアクティブ化されます。 状況を直感的に把握できるよう、初期の衝動を修正します。 LOGIC AI: MUESTRA zonas (círculos) parabuscar puntos de entrada cuando se activa una plantilla 視覚的に優れた視覚効果があり、最も重要な機能がすべて揃っていることに注意してください。 優れたニベレス/ゾーンの視覚化 (modo MTF) 世界で最も人気のある場所/ゾーンです。これを使用するのに最適な方法です (   TPSproTREND PRO   )。 アルゴリズム プロフェッショナル セパラド パソ ア パソ パラ オペラ それは
TPSpro TREND PRO は 、市場を自動的に分析し、トレンドとその各変化に関する情報を提供し、再描画せずに取引にエントリーするためのシグナルを提供するトレンド指標です。 インジケーターは各ローソク足を使用し、個別に分析します。上向きまたは下向きのさまざまな衝撃を指します。通貨、仮想通貨、金属、株、指数の取引への正確なエントリーポイント! バージョンMT5                   インジケーターの完全な説明     RFI LEVELS インジケーター と併用することをお勧めします。 主な機能: レンダリングなしで正確な入力信号! シグナルが表示されると、それは関連性を維持します。これは、シグナルを提供してからそれを変更し、その結果、入金された資金が失われる可能性があるリドローインジケーターとの重要な違いです。より高い確率と精度で市場に参入できるようになりました。矢印が表示された後、ターゲットに到達する (利益確定) か反転シグナルが表示されるまで、ローソク足に色を付ける機能もあります。 STOP-LOSS/TAKE-PROFITゾーンの表示 エントリーポイン
Quantum Trend Sniper
Bogdan Ion Puscasu
4.91 (44)
ご紹介   クォンタム トレンド スナイパー インジケーターは 、トレンド反転を特定して取引する方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。     クォンタムトレンドスナイパーインジケーター   は、非常に高い精度でトレンドの反転を識別する革新的な方法で、あなたのトレーディングの旅を新たな高みに押し上げるように設計されています。 ***Quantum Trend Sniper Indicatorを購入すると、Quantum Breakout Indicatorを無料で入手できます!*** クォンタム ブレイクアウト インジケーターは、トレンドの反転を特定するとアラートを発し、矢印を示し、3 つのテイクプロフィットレベルを提案します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック MT4のバージョン:       ここをクリック 推奨事項: 期間:すべての時間枠。最良の結果を得るには、M
Gold Stuff mt5
Vasiliy Strukov
4.9 (125)
Gold Stuff mt5 は、金専用に設計されたトレンド指標であり、あらゆる金融商品にも使用できます。 インジケーターは再描画せず、遅れません。 推奨時間枠 H1. 設定と個人的なボーナスを得るために、購入後すぐに私に連絡してください!  トレンド スキャナーの強力なサポートを利用して、無料のインジケーターを入手し、プライバシーを守ります。あーみー!   設定 矢印を描く - オンオフ。 チャートに矢印を描く。 アラート - 可聴アラートのオンオフ。 メール通知 - オンオフ。 電子メール通知。 プチ通知 - オンオフ。 プッシュ通知。 次に、色域を調整します。 Gold Stuff mt5 は、金専用に設計されたトレンド指標であり、あらゆる金融商品にも使用できます。 インジケーターは再描画せず、遅れません。 推奨時間枠 H1. 設定と個人的なボーナスを得るために、購入後すぐに私に連絡してください!   設定 矢印を描く - オンオフ。 チャートに矢印を描く。 アラート - 可聴アラートのオンオフ。 メール通知 - オンオフ。 電子メール通知。 プチ通
これは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%信頼できるリアルタイム計算 -> リペイントなし ドロップダウン・リストから
トレンド スクリーナー インジケーターでトレンド取引の力を解き放ちます。ファジー ロジックと複数通貨システムを活用した究極のトレンド取引ソリューションです。 ファジー ロジックを活用した革新的なトレンド インジケーターである Trend Screener を使用して、トレンド取引を向上させます。 これは、13 を超えるプレミアム ツールと機能、および 3 つの取引戦略を組み合わせた強力なトレンド追跡インジケーターであり、Metatrader をトレンド アナライザーにする多用途の選択肢となります。 期間限定オファー : トレンド スクリーナー インジケーターは、わずか 50 ドルで生涯ご利用いただけます。 (元の価格 125$ ) (オファー延長) Trend Screener の 100% 非再描画精度の揺るぎない精度を体験して、取引の決定が過去の価格変動の影響を受けないようにしてください。 マルチタイムフレームおよびマルチ通貨機能の多用途性を解放し、比類のない自信を持って外国為替、商品、暗号通貨、インデックスの世界を取引できるようにします。 Trend Screener の包括的な
まず第一に、この取引ツールはノンリペイント、ノンリドロー、ノンラグの指標であり、プロの取引に理想的ですことを強調する価値があります。 オンラインコース、ユーザーマニュアル、デモ。 スマートプライスアクションコンセプトインジケーターは、新米から経験豊富なトレーダーまで、非常 に強力なツールです。Inner Circle Trader AnalysisやSmart Money Concepts Trading Strategiesなど、20以上の有用な指標を1つに組み合わせています。このインジケーターはスマートマネーコンセプトに焦点を当て、大手機関の取引方法を提供し、彼らの動きを予測するのに役立ちます。 特に、流動性分析に優れており、機関がどのように取引しているかを理解しやすくしています。市場のトレンドを予測し、価格の動きを慎重に分析するのに優れています。機関の戦略とトレードを合わせることで、市場の動向についてより正確な予測ができます。このインジケーターは多目的であり、市場構造を分析し、重要な注文ブロックを特定し、さまざまなパターンを認識するのに優れています。 このインジ
Golden Spikes Detector Acknowledgement and Dedications:  The name of this indicator was Inspired by an Original; Mr Grant Koopman; a Knowledgeable and experienced Synthetics trader. I dedicate this indicator to Mr Grant.  Overview: The Golden Spikes Premium is a groundbreaking trading indicator meticulously crafted for the Boom and Crash indices on the Deriv market. Tailored to meet the needs of discerning traders, this powerful tool operates exclusively on the one-minute timeframe, providin
mql5と Telegramの モーニング・ブリーフィングで、詳細とスクリーンショットを含む毎日のマーケット・アップデートをご覧 ください! FX Volumeは、ブローカーの視点から市場のセンチメントをリアルに洞察する、最初で唯一の出来高インジケーターです。 ブローカーのような機関投資家が外国為替市場でどのようなポジションをとっているか、COTレポートよりもはるかに速く、素晴らしい洞察を提供します。 この情報をチャート上で直接見ることは、あなたの取引にとって真のゲームチェンジャーであり、画期的なソリューションです。 以下のようなユニークなマーケットデータ洞察から利益を得てください。 比率は 、通貨のロングポジションとショートポジションの比率をパーセントで表示します。 比率の変化は 、選択した期間内のロング比率とその変化率を表示します。 Volumes Totalは 、通貨の取引量(ロングとショート)の合計をロット単位で表示します。 Volumes Long :全通貨のロングポジションの取引量を表示します。 Volumes(ショート )は、全通貨のショートポジションの取引量を表示
Easy By Sell is a market indicator for opening and closing positions. It becomes easy to track market entries with alerts. It indicates trend reversal points when a price reaches extreme values ​​and the most favorable time to enter the market. it is as effective as a Fibonacci to find a level but it uses different tools such as an algorithm based on ATR indicators and Stochastic Oscillator. You can modify these two parameters as you wish to adapt the settings to the desired period. My othe
今、147ドル(いくつかの更新後に499ドルに増加します) - 無制限のアカウント(PCSまたはMac) RelicusRoad ユーザー マニュアル + トレーニング ビデオ + プライベート Discord グループへのアクセス + VIP ステータス 市場の新しい見方 RelicusRoad は、外国為替、先物、暗号通貨、株式、および指数の世界で最も強力な取引インジケーターであり、トレーダーに収益を維持するために必要なすべての情報とツールを提供します。初心者から上級者まで、すべてのトレーダーが成功するためのテクニカル分析と取引計画を提供します。これは、将来の市場を予測するのに十分な情報を提供する重要な取引指標です。意味をなさないチャート上のいくつかの異なる指標ではなく、完全な解決策を信じています.これは、信号、矢印 + 価格アクション情報を表示するオールインワンのインジケーターで、他に類を見ない非常に正確です。 強力な AI に基づいて、RelicusRoad は不足している情報とツールを提供して、あなたを教育し、トレーディングのプロ、成功したトレーダーにします。
Trend Hunter は、外国為替、仮想通貨、CFD 市場におけるトレンド指標です。 このインジケーターの特別な特徴は、価格がトレンドラインをわずかに突き抜けたときにシグナルを変更することなく、自信を持ってトレンドに従うことです。 インジケーターは再描画されず、バーが閉じた後に市場に参入するシグナルが表示されます。 トレンドに沿って移動すると、インジケーターにはトレンドの方向に追加のエントリーポイントが表示されます。 これらのシグナルに基づいて、小さなストップロスで取引できます。 トレンドハンターは正直な指標です。 インジケーター信号の上にマウスを置くと、信号の潜在的な利益と可能なストップが表示されます。 新しい信号が表示されると、次の通知を受け取ることができます。 アラート プッシュ通知 メールによる通知 電報での通知 チャートのスクリーンショットも Telegram に送信されるため、取引を決定するために端末を開く必要はありません。 インジケーターシグナルは、電報チャネル https://www.mql5.com/ja/market/product/11085
IX Powerは 、FX Powerの無敵の精度をついにFX以外のシンボルにも提供します。 お気に入りの指数、株式、コモディティ、ETF、さらには暗号通貨の短期、中期、長期のトレンドの強さを正確に判断します。 お使いの端末が提供する すべてを分析する ことができます。ぜひお試しいただき、取引 タイミングが大幅に改善 されることをご体験ください。 IXパワーの主な特徴 100%正確で再描画されない計算結果 - ターミナルで利用可能なすべての取引シンボルに対して 予め設定され、さらに個別に設定可能な強度分析期間のドロップダウン選択 Eメール、メッセージ、モバイル通知による無数の通知オプション EAリクエストのためのアクセス可能なバッファ カスタマイズ可能な計算制限により、さらに優れたパフォーマンスを実現 もっと見たい人のための特別なマルチインスタンス設定 すべてのチャートでお好みの色を無限に設定可能 Windows 11とmacOSのスタイルで角を丸くした新しいパネルデザイン サブ・ウィンドウとメイン・チャートの間をシームレスに移動する、魔法のように動くイン
The Smart Liquidity Profile is color-coded based on the importance of the traded activity at specific price levels, allowing traders to identify significant price levels such as support and resistance levels, supply and demand zones, liquidity gaps, consolidation zones, Buy-Side/Sell-Side Liquidity and so on.  Smart Liquidity Profile allows users to choose from a number of different time periods including 'Auto,' 'Fixed Range,' 'Swing High,' 'Swing Low,' 'Session,' 'Day,' 'Week,' 'Month,' 'Quart
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
収益性の高い取引機会を簡単に特定するのに役立つ強力な外国為替取引インジケーターをお探しですか?ビースト スーパー シグナル以外に探す必要はありません。 この使いやすいトレンドベースのインジケーターは、市場の状況を継続的に監視し、新しいトレンドを検索したり、既存のトレンドに飛びついたりします。ビースト スーパー シグナルは、すべての内部戦略が一致し、互いに 100% 合流したときに売買シグナルを発するため、追加の確認は不要です。シグナル矢印アラートを受け取ったら、単に売買します。 購入後、プライベート VIP グループに追加されるようにメッセージを送ってください! (完全な製品購入のみ)。 購入後、最新の最適化されたセット ファイルについてメッセージを送ってください。 MT4版は こちらから。 Beast Super Signal EA は こちらから 入手できます。 コメント セクションをチェックして、最新の結果を確認してください。 ビースト スーパー シグナルは、1:1、1:2、または 1:3 のリスクと報酬の比率に基づいて、エントリー価格、ストップ
現在33%オフ 初心者にもエキスパートトレーダーにも最適なソリューション このインジケーターは独自の機能と新しい公式を多数内蔵しており、ユニークで高品質かつ手頃な取引ツールです。このアップデートでは、2つの時間枠ゾーンを表示できるようになります。より長いTFだけでなく、チャートTFとより長いTF(ネストゾーンを表示)の両方を表示できます。すべてのSupply Demandトレーダーの皆さんのお気に召すはずです。:) 重要情報の公開 Advanced Supply Demandの可能性を最大化するには、 https://www.mql5.com/ja/blogs/post/720245 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適
Matrix Arrow Indicator MT5
Juvenille Emperor Limited
5 (10)
マトリックスアローインジケーターMT5は、すべてのシンボル/商品(外国為替、商品、暗号通貨、インデックス、株式)で使用できる100%再描画されていないマルチタイムフレームインジケーターに続くユニークな10in1トレンドです。マトリックスアローインジケーターMT5は、初期段階で現在のトレンドを判断し、最大10の標準インジケーターから情報とデータを収集します。 平均方向移動指数(ADX) 商品チャネルインデックス(CCI) クラシック平研アシキャンドル 移動平均 移動平均収束発散(MACD) 相対活力指数(RVI) 相対力指数(RSI) 放物線SAR ストキャスティクス ウィリアムズのパーセント範囲 すべてのインジケーターが有効な買いまたは売りシグナルを与えると、対応する矢印がチャートに印刷され、次のろうそく/バーの開始時に強い上昇トレンド/下降トレンドを示します。ユーザーは、使用するインジケーターを選択し、各インジケーターのパラメーターを個別に調整できます。マトリックスアローインジケーターMT5は選択されたインディケーターからのみ情報を収集し、それらのデータのみに基づいてアローを印
このダッシュボードは、選択されたシンボルの最新の利用可能なハーモニックパターンを表示するので、時間を節約し、より効率的に /   MT4バージョン 。 無料インジケーター:   Basic Harmonic Pattern インジケーター列 Symbol : 選択したシンボルが表示されます。 Trend :   強気または弱気 Pattern : パターンの種類(ガートレー、バタフライ、バット、カニ、サメ、サイファー、ABCD) Entry : エントリー価格 SL: ストップロス価格 TP1: 1回目の利食い価格 TP2: 2回目の利食い価格 TP3:   3回目の利食い価格 Current price :   現在値 Age (in bars):    最後に描画されたパターンの年齢 主な入力項目 Symbols:   "28 Major Currency Pairs "または "Selected Symbols "から選択。 Selected Symbols:   カンマで区切られた監視したいシンボル("EURUSD,GBPUSD,XAUUSD")。ブローカーが
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all possible timeframes. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all possible timeframes 3. Search for patterns of all possible sizes. From the smallest to the largest 4. A
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
Native Channels
BeeXXI Corporation
5 (1)
This indicator recognizes all support and resistance levels. A number of unique high-performance techniques have been applied, which made the existence of this indicator possible. All formed channels are naturally visible: horizontal linear linear parabolic cubic (Polynomial 3 degrees - Wave) This is due to a bundle of approximating channels. The formed channels form "standing waves" in a hierarchical sequence. Thus, all support and resistance levels are visible. All parameter management is
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
AW Trend Predictor MT5
AW Trading Software Limited
4.71 (45)
1 つのシステムでのトレンド レベルとブレイクダウン レベルの組み合わせ。高度なインジケーター アルゴリズムは、市場のノイズをフィルター処理し、トレンド、エントリー ポイント、および可能なエグジット レベルを決定します。インジケーターシグナルは統計モジュールに記録されるため、最適なツールを選択してシグナル履歴の有効性を示すことができます。この指標は、テイクプロフィットとストップロスのマークを計算します。 マニュアルと説明書 ->   ここ / MT4 バージョン ->   ここ インジケーターで取引する方法: Trend Predictor での取引は、たった 3 つの簡単なステップです。 ステップ 1 - ポジションを開く 70% 以上の成功率で買いシグナルが受信されました ステップ 2 - ストップロスの決定 逆信号でトランクを選択 ステップ 3 - テイクプロフィット戦略の定義 戦略 1: TP1 に到達したらポジション全体をクローズする 戦略 2: TP1 に達した時点でポジションの 50% をクローズし、TP2 に達した時点で残りの 50% をクローズします。 戦略 3:
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
MT4版  |  FAQ Owl Smart Levels Indicator は、 Bill Williams の高度なフラクタル、市場の正しい波構造を構築する Valable ZigZag、エントリの正確なレベルをマークする Fibonacci レベルなどの一般的な市場分析ツールを含む 1 つのインジケーター内の完全な取引システムです。 利益を得るために市場と場所に。 戦略の詳細な説明 インジケータを操作するための指示 顧問-取引助手 プライベートユーザーチャット ->購入後に私に書いて、私はプライベートチャットにあなたを追加し、あなたはそこにすべてのボーナスをダウンロードすることができます 力はシンプルさにあります! Owl Smart Levels 取引システムは非常に使いやすいので、専門家にも、市場を勉強し始めて自分で取引戦略を選択し始めたばかりの人にも適しています。 戦略と指標に秘密の数式や計算方法が隠されているわけではなく、すべての戦略指標は公開されています。 Owl Smart Levels を使用すると、取引を開始するためのシグナルをすばやく確認し、注文を出すため
Gold Pointer は最高のトレンド・インジケータです。このインジケーターのユニークなアルゴリズムは、テクニカル分析および数学的分析の要素を考慮して資産価格の動きを分析し、最も収益性の高いエントリーポイントを決定し、買いまたは売り注文を発注するシグナルを出します。 最良のインジケーターシグナル: - 売り=赤のトレンドライン+赤のTFインジケーター+同じ方向に黄色のシグナル矢印。 - 買いの場合 = 青のトレンドライン + 青のTFインディケータ + 同じ方向の水色のシグナル矢印。 インジケータの利点 1. このインディケータは、高い精度でシグナルを発信する。 2. 2.シグナル(矢印)を音声(アラート&メッセージ)で確認した後、インジケータの確定シグナルは消えず、再描画されません。 3. どのブローカーのMetaTrader 5取引プラットフォームでも取引できます。 4. あらゆる資産(通貨、金属、暗号通貨、株式、指数など)を取引できます。 5. どのタイムフレームでも取引できます(M5-M15スキャルピングと取引/M30-N1中期取引/H4-D1長期取引
作者のその他のプロダクト
For MT4 version please click here . This is the exact conversion from TradingView: "Range Filter 5min" By "guikroth". - This indicator implements Alerts as well as the visualizations. - Input tab allows to choose Heiken Ashi or Normal candles to apply the filter to. It means it is a (2 in 1) indicator. - This indicator lets you read the buffers for all data on the window. For details on buffers please message me. - This is a non-repaint and light processing load indicator. - You can message in p
I do not have the exact indicator for MT4 but the nearest possible look alike can be downloaded from here . Also you may check this link . This is the exact conversion from TradingView: "Donchian Trend Ribbon" By "LonesomeTheBlue". One of the coolest indicators out there to detect trend direction and strength. As a trader you always need such indicator to avoid getting chopped in range markets. There are ten buffers as colors to use in EAs also. The indicator is loaded light and non-repaint. Not
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. Thanks
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #include <Trade\Trade.mqh> CTrade trade; int handle_hull= 0 ; input group "EA Setting" input int magic_number= 123456 ; //magic number input double fixe
To get access to MT5 version please click here . - This is a conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. note: Color filled areas and colored candles are not supported in MT4 version. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; inp
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Stochastic Momentum Index" By "UCSgears". - This is a popular version of stochastic oscillator on tradingview. - This is a light-load processing and non-repaint indicator. - Buffers are available for the lines on chart. - You can message in private chat for further changes you need. Thanks for downloading
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Supertrend" by " KivancOzbilgic ". This is a light-load processing and non-repaint indicator. Highlighter option isn't available in MT4 version. You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Supertrend . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input double fixed_lo
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. Strategy description - Detect trend based on GoldTrader rules. - Enter in both direction as much as needed to achieve acceptable amount of profit. - Although this is a martingale bot it is very unlikely to loose your money, because: ==> the money management rules are safe and low risk. ==> entries
FREE
This is the Chandelier Exit trend indicator applied to heiken ashi candles based on "G TREND GUNBOT" by "LUIS_GANDATA_G_TREND" on tradingview. Heiken ashi candles filter out many of the chops and therefore as an input to Chandelier Exit you achieve well filtered Buy and Sell signals. Also you can choose to apply the trend indicator to normal candles via input tab. (two in one indicator) This is a non-repaint and light processing load indicator. You can message in private chat for further change
FREE
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. martingale version is available here . Strategy description - Detect trend based on EMA18-EMA50-SMA200 alignment in three time frames: M15, H1, H4 - Trade in trend direction and exit when above alignment is broken. - The bot is tuned to trade XAUUSD(Gold). - The bot output is break even in rangi
FREE
To download MT4 version please click here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
To download MT4 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
To download MT5 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. This is a sample EA code that operates based on bullish and bearish linear regression candles . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input string     Risk_Management= "" ; input double fixed_lot_size=
To get access to MT5 version please click here . This is the exact conversion from TradingView: " Better RSI with bullish / bearish market cycle indicator" by TradeCalmly. This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need.
To get access to MT5 version please click here . This is the exact conversion from TradingView:"HIGH AND LOW Optimized Trend TrackerHL OTT" by "kivancozbilgic" This is a light-load processing indicator. It is a non-repaint indicator. Colored Candle and Highlighting options are not available. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
This Expert is developed to optimize parameters to trade intraday trending markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 12% profitability in EURUSD for a period of a year and 2% draw-down using optimization to find best inputs.
FREE
To download MT5 version please click  here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
To download MT4 version please click here . Metatrader users are limited to few moving average types. Therefor I decided to create a package consisting of all MAs I knew. This package suggests 12 different types: { SMA, EMA, DEMA, TEMA, WMA, VWMA, SMMA(RMA), HullMA, LSMA, ALMA, SSMA, TMA } You can configure them via input tab. This is a non-repaint indicator with light load. To implement them I referred to standard  libraries of pine script.
FREE
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By "   LuxAlgo   ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By " LuxAlgo ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Zero Lag MACD Enhanced - Version 1.2" by "   Albert.Callisto ". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Didi Index" by " everget ". - This is a popular version of DIDI index on tradingview. - This is a light-load processing and non-repaint indicator. - Buffer is available for the lines on chart and arrows on chart. - You can message in private chat for further changes you need. Thanks for downloading
This is MacroTrendTrader. It trades in DAILY time frame even if you run it on lower time frames. It opens/closes trades once per day at a specific time that you choose via input tab: - "param(1-5)" are optimization parameters. - "Open/Close Hour" is set via input tab. Make sure to choose this to be away from nightly server shutdown. - "high risk" mode if chosen, sets a closer stop loss level. Therefore higher lot sizes are taken.  This is a light load EA from processing point of view. Calculatio
FREE
To get access to MT5 version please click   here . This is the exact conversion from TradingView: "Hammer & ShootingStar Candle Detector" by "MoriFX". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
FREE
To download MT5 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
This Expert is developed to optimize parameters to trade in choppy markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 20% profitability in USDCAD for a period of 4-months and 5% draw-down using optimization to find best inputs.
FREE
To download MT4 version please click here . This is the exact conversion from TradingView: "RSI versus SMA" By "JayRogers". This indicator lets you read the buffers for all Lines on chart.  Note: This is an indicator, Not an expert. Meaning It does not take trades. If you want the EA please contact via message. You can easily use the indicator to understand the logic behind trades that the TradingView strategy takes. The strategy is profitable if this indicator is applied to the right symbol at
FREE
To download MT5 version please click here . Metatrader users are limited to few moving average types. Therefor I decided to create a package consisting of all MAs I knew. This package suggests 12 different types: { SMA, EMA, DEMA, TEMA, WMA, VWMA, SMMA(RMA), HullMA, LSMA, ALMA, SSMA, TMA } You can configure them via input tab. This is a non-repaint indicator with light load. To implement them I referred to   standard  libraries of pine script.
FREE
To download MT5 version please click  here . This is the exact conversion from TradingView: "RSI versus SMA" By "JayRogers". This indicator lets you read the buffers for all Lines on chart.  Note: This is an indicator, Not an expert. Meaning It does not take trades. If you want the EA please contact via message. You can easily use the indicator to understand the logic behind trades that the TradingView strategy takes. The strategy is profitable if this indicator is applied to the right symbol at
FREE
- This is the exact conversion from TradingView: " 200-EMA Moving Average Ribbon" By "Dale_Ansel". - This indicator plots a series of moving averages to create a "ribbon" that offers a great visual structure to price action. - This indicator lets you read buffers. For information on buffers please contact via message. - This is a non-repaint and light processing load indicator
FREE
フィルタ:
レビューなし
レビューに返信
バージョン 1.10 2024.08.25
Fixed a bug!