• 미리보기
  • 리뷰 (1)
  • 코멘트 (3)
  • 새 소식

Twin Range Filter by colinmck MT4

5

To get access to MT5 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.

Here is the sample code of EA that operates based on signals coming from indicator:

#property strict

input string EA_Setting="";
input int magic_number=1234;
input double fixed_lot_size=0.01; // select fixed lot size

input string    TWR_Setting="";
input ENUM_APPLIED_PRICE src = PRICE_CLOSE; //Source
input int per1 = 27; //Fast period
input double mult1 = 1.6; //Fast range
input int per2 = 55; //Slow period
input double mult2 = 2; //Slow range
input bool showAlerts=true; //use Alerts

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

bool IsTWRBuy(int index)
{
   double value_buy=iCustom(_Symbol, PERIOD_CURRENT,
    "Market\\Twin Range Filter by colinmck MT4",
    src, per1, mult1, per2, mult2, showAlerts, 12, index);
   return value_buy!=EMPTY_VALUE;
}

bool IsTWRSell(int index)
{
   double value_sell=iCustom(_Symbol, PERIOD_CURRENT,
    "Market\\Twin Range Filter by colinmck MT4",
    src, per1, mult1, per2, mult2, showAlerts, 13, index);
   return value_sell!=EMPTY_VALUE;
}

int BuyCount()
{
   int counter=0;
   for(int i=0;i<OrdersTotal();i++)
   {
      if(OrderSelect(i, SELECT_BY_POS)==false) continue;
      if(OrderSymbol()!=_Symbol) continue;
      if(OrderMagicNumber()!=magic_number) continue;
      if(OrderType()==OP_BUY) counter++;
   }
   return counter;
}

int SellCount()
{
   int counter=0;
   for(int i=0;i<OrdersTotal();i++)
   {
      if(OrderSelect(i, SELECT_BY_POS)==false) continue;
      if(OrderSymbol()!=_Symbol) continue;
      if(OrderMagicNumber()!=magic_number) continue;
      if(OrderType()==OP_SELL) counter++;
   }
   return counter;
}

void Buy()
{
   if(OrderSend(_Symbol, OP_BUY, fixed_lot_size, Ask, 3, 0, 0, NULL, magic_number, 0, clrNONE)==-1)
   {
      Print("Error Executing Order: ", GetLastError());
      //ExpertRemove();
   }
}

void Sell()
{
   if(OrderSend(_Symbol, OP_SELL, fixed_lot_size, Bid, 3, 0, 0, NULL, magic_number, 0, clrNONE)==-1)
   {
      Print("Error Executing Order: ", GetLastError());
      //ExpertRemove();
   }
}

void CloseBuy()
{
   for(int i=OrdersTotal()-1;i>=0;i--)
   {
      if(OrderSelect(i, SELECT_BY_POS)==false) continue;
      if(OrderSymbol()!=_Symbol) continue;
      if(OrderMagicNumber()!=magic_number) continue;
      if(OrderType()==OP_BUY) 
         if(OrderClose(OrderTicket(), OrderLots(), Bid, 3, clrNONE)==false)
         {
            Print("Error Closing Position: ", GetLastError());
         }
   }
}

void CloseSell()
{
   for(int i=OrdersTotal()-1;i>=0;i--)
   {
      if(OrderSelect(i, SELECT_BY_POS)==false) continue;
      if(OrderSymbol()!=_Symbol) continue;
      if(OrderMagicNumber()!=magic_number) continue;
      if(OrderType()==OP_SELL) 
         if(OrderClose(OrderTicket(), OrderLots(), Ask, 3, clrNONE)==false)
         {
            Print("Error Closing Position: ", GetLastError());
         }
   }
}

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;
}



리뷰 1
Golden Joy
139
Golden Joy 2023.07.16 18:31 
 

waiting for you to export it as EA, I am used to trading with this indicator, and I love it

추천 제품
This system never paints.   This system created by using Envolpes bands and reverse bar count.   This indicator is only working in M5 period.   This system is for long term and profitable.   Signals are shown as arrows. as an optional limit orders.   You can set a voice alarm or email notification.   You can fins our other products from link : https://www.mql5.com/en/users/drbastem/seller   Also, you can ask all your questins from email : haskayafx@gmail.com or mobile : +90 530 867 5076 or @Meh
Market Profile
Artem Titarenko
5 (1)
The "Market Profile" indicator displays the profiles and volumes of periods – weekly, daily, session (8-hour), 4-hour, hour, summary. The VAH/VAL price area is automatically highlighted by a dotted line for each profile (except for the summary). The indicator includes chroma Delta, which colors the profile areas. The areas of prevailing Buys is colored in green, that of Sells - in red. The intensity histogram features blue/red respectively. In the filter mode, the indicator displays the volume a
This indicator is meant for Harmonic Traders, it helps them in identifying the formed patterns by analyzing the market past data, looking for Harmonic Patterns. The Patterns that this indicator can detect are: AB=CD Butterfly Gartely Crab Bat The indicator shows the following: The completed pattern, with the critical zone highlighted in Gray box The suggested 3 take profit levels (in green) The Suggested Stop Loss level (in Red) The formed pattern ratios can be checked by hovering the mouse on t
To get access to MT5 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.
이 지표는 실제 거래에 완벽한 자동 파동 분석 지표입니다! 사례... 참고:   웨이브 그레이딩에 서양식 이름을 사용하는 데 익숙하지 않습니다. Tang Lun(Tang Zhong Shuo Zen)의 명명 규칙의 영향으로 기본 웨이브를   펜   으로 명명하고 2차 웨이브 밴드를   세그먼트   로 명명했습니다. 동시에, 세그먼트에는 추세 방향이 있습니다.   주요 추세 세그먼트에는   이름이 지정되지만(이 이름 지정 방법은 향후 노트에서 사용됩니다. 먼저 말씀드리겠습니다.) 알고리즘은 굴곡 이론과 거의 관련이 없으므로 그렇게 해서는 안 됩니다. 이는 나의 시장 분석을   통해 요약된 끊임없이 변화하고 복잡한 운영 규칙을   반영합니다. 밴드는 더 이상 사람마다 다르지 않도록 표준화되고 정의되었습니다. 인위적인 간섭의 드로잉 방법은 시장 진입을 엄격하게 분석하는 데 핵심적인 역할을 합니다. 이 지표를 사용하는 것은 거래 인터페이스의 미학을 개선하고 원래의 K-line 거
MetaForecast M4
Vahidreza Heidar Gholami
5 (1)
MetaForecast는 가격 데이터의 조화를 기반으로 모든 시장의 미래를 예측하고 시각화합니다. 시장이 항상 예측 가능한 것은 아니지만 가격에 패턴이 있다면 MetaForecast는 가능한 정확하게 미래를 예측할 수 있습니다. 다른 유사한 제품과 비교했을 때, MetaForecast는 시장 동향을 분석하여 더 정확한 결과를 생성할 수 있습니다. 입력 매개변수 Past size (과거 크기) MetaForecast가 미래 예측을 생성하기 위한 모델을 만드는 데 사용하는 막대의 수를 지정합니다. 모델은 선택한 막대 위에 그려진 노란색 선으로 표시됩니다. Future size (미래 크기) 예측해야 할 미래 막대의 수를 지정합니다. 예측된 미래는 핑크색 선으로 표시되며 그 위에 파란색 회귀선이 그려집니다. Degree (차수) 이 입력은 MetaForecast가 시장에서 수행할 분석 수준을 결정합니다. Degree 설명  0 차수 0의 경우, "Past size" 입력에 모든 봉우리
Everyday trading represents a battle of buyers ("Bulls") pushing prices up and sellers ("Bears") pushing prices down. Depending on what party scores off, the day will end with a price that is higher or lower than that of the previous day. Intermediate results, first of all the highest and lowest price, allow to judge about how the battle was developing during the day. It is very important to be able to estimate the Bears Power balance since changes in this balance initially signalize about possi
American Hunters
Mehmet Ozhan Hastaoglu
This indicator guides you like a hunter. Tacheprofit and StopLoss levels. See the difference in the experiment. Works in all periods. Works at all rates. You can win with this system. The crossing of the mean and the re-test were done according to the rule. You can see the transactions by moving backwards on the strategy test screen. The whole system is automatically calculated.
This indicator is designed to find the difference in RSI price and indicator.  This indicator shows the price and indicator difference on the screen. The user is alerted with the alert sending feature. Our Popular Products Super Oscillator HC Cross Signal Super Cross Trend Strong Trend Super Signal Parameters divergenceDepth -   Depth of 2nd ref. point search RSI_Period -   Second calculation period indAppliedPrice -   Applied price of indicator indMAMethod -   MA calculation method findExtInt
Cloud Power
Andriy Sydoruk
Implementation of indication of trend movement with moments for potential stops in the Cloud Power indicator. The transition to the shadow warns of a possible reversal. The entry of the price inside the shadow speaks of a flat movement. The indicator tracks the market trend with unmatched reliability, ignoring sharp market fluctuations and noise around the average price. Simple, visual and efficient use. The indicator does not redraw and does not lag. It can be easily used as an independent
To get access to MT5 version please click here . You can also check the other popular version of this indicator   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.
My indicator is 1000%, it never repaints, it works in every time period, there is only 1 variable, it sends notifications to your phone even if you are on vacation instead of at work, in a meeting, and there is also a robot version of this indicator With a single indicator you can get rid of indicator garbage It is especially suitable for scalping in the m1 and m5 time frames on the gold chart, and you can see long trends in the h1 time frame.
Zig Zag reading structure
Maria Cristina Sabatini
'Zig Zag Percentage strenght'   This indicator is awesome. Why? It's able to show the percentage of the last leg, compared with the previous leg. In this way you have a better understanding of the forces in play in that moment.   In fact, for example, if you see that the up extensions are, in percentage, greater of the down legs, that means that there is more bullish pressure or maybe the market is starting to reverse from downtrend to uptrend.   Hope you will ind it useful !
Everyday trading represents a battle of buyers ("Bulls") pushing prices up and sellers ("Bears") pushing prices down. Depending on what party scores off, the day will end with a price that is higher or lower than that of the previous day. Intermediate results, first of all the highest and lowest price, allow to judge about how the battle was developing during the day. It is very important to be able to estimate the Bears Power balance since changes in this balance initially signalize about possi
This product shows you a different view of the market by examining the performance of volume and continuous patterns in the market, then by calculating the behavior of traders and market patterns, calculates the probability of the next movement of the market by calculations. Function. How to receive the signal: If the candlestick is currently a bullish candlestick, according to a market scan, if the next bullish candlestick is below 5%, you can open a free trade by hitting the wisdom areas.
To get access to MT5 version please click here . Also you can check this link . This is the exact conversion from TradingView: "UT Bot" by "Yo_adriiiiaan". This is a light-load processing indicator. This is a non-repaint indicator. Buffers are available for processing in EAs. All input fields are available. You can message in private chat for further changes you need. Thanks for downloading
ABCD Harmonic Patterns
Mehmet Ozhan Hastaoglu
Thanks to this indicator, you can easily see the new ABCD harmonic patterns in the chart. If the two price action lengths are equal, the system will give you a signal when it reaches the specified level. You can set the limits as you wish. For example, You can get the signal of the price, which occurs in the Fibonaci 38.2 and 88.6 retracements, and then moves for the same length, at the level you specify. For example, it will alarm you when the price reaches 80% as a percentage. In vertic
Delta AG
Yurij Kozhevnikov
The difference between the arithmetic and geometric means at the specified range. Since the greater is the difference between the values, the greater the resulting figure is, actually the indicator shows volatility fluctuations. The arithmetic mean of a certain number of values ​​is the sum of the values ​​divided by their number. The geometric mean is the root of the power of the number of values ​​extracted from the product of these values. If all values ​​are equal, the arithmetic mean and th
Global Trend
Vitalii Zakharuk
Global Trend Indicator, shows the signals for entry. Displays both entry points and the trend itself. Shows statistically calculated moments for entering the market with arrows. When using the indicator, the risk factor can be optimally distributed. Settings: Uses all one parameter for settings. Choosing a parameter, it is necessary to visually resemble it so that the appropriate graph has a projection of extremes. Parameters: Length - the number of bars for calculating the indicator.
NO REPAINT ADVANCED CHART PATTERN INDICATOR By definition, a price ( chart)  pattern is a recognizable configuration of price movement that is identified using a series of  trendlines  and/or curves. When a price pattern signals a change in trend direction, it is known as a reversal pattern; a continuation pattern occurs when the trend continues in its existing direction following a brief pause. Advanced Chart Pattern Tracker is designed to find the MOST ACCURATE patterns. A special script is
Rhino NW
Sergei Shishaev
Нестандартный индикатор определения текущего тренда. Альтернативный подход к определению текущей рыночной тенденции. В основе лежит уникальный алгоритм. Не используются   скользящие средние , осцилляторы , супер-тренды и прочие стандартные индикаторы. Для таймфреймов:   от M15 до D1 . Для стилей торговли:  интрадэй, свинг, долгосрок . Может стать готовой торговой стратегией совместно с любым канальным индикатором. Например таким, как индикатор   "Snake" . Внимание! Это индикатор, а не советни
Arrow Effect
Nadiya Mirosh
Using the Arrow Effect forex indicator algorithm, you can quickly understand what kind of trend is currently developing in the market. The Elephant indicator accompanies long trends, can be used without restrictions on instruments or timeframes. With this indicator, you can try to predict future values. But the main use of the indicator is to generate buy and sell signals. The indicator tracks the market trend, ignoring sharp market fluctuations and noises around the average price. The indicator
Trend Sim
Ivan Simonika
This is a professional Trend Sim indicator. The intelligent algorithm of the Trend Sim indicator accurately detects the trend, filters out market noise and generates input signals and exit levels. Functions with advanced statistical calculation rules improve the overall performance of this indicator. The indicator displays signals in a simple and accessible form in the form of arrows (when to buy and when to sell). Knowing the entry point of each of the currencies is very important for every
The  RSI Basket Currency Strenght  brings the RSI indicator to a new level.  Expanding the boundaries of TimeFrames and mono-currency analysis, the RSI Multi Time Frame Currency Strenght take the movements of each currency that composes the cross and confront them in the whole basket of 7 crosses.  The indicator works with any combination of  AUD, CAD, CHF, EUR, GBP, JPY, NZD, USD  pairs and with full automation takes in account every RSI value for the selected Time Frame.  After that, the indic
FREE
PTW NON REPAINT TRADING SYSTEM + HISTOGRAM Non-Repainting ,   Non-Redrawing   and   Non-Lagging  Trading System. Does the following: - Gives Accurate Entry and Exit Points - Scalping, Day and Swing Trading  - 95% Accuracy  - Targets, where to take profits. - Shows Trends, Support and resistance levels - Works on All Brokers - Works on All Currencies, CFDs and Stocks - It does not place trades for you, it only shows you what trades to place. - It works on All Timeframes - It is for Trend or ra
Trading with the Transition to quality indicator is as simple as possible, if a blue arrow appears on the chart pointing up, a buy deal is opened. In the same case, if you see a red arrow pointing down, open a sell order. That is, everything is as simple as possible, positions are closed according to the reverse scheme, that is, as soon as a signal is received to open an order in the opposite direction from your position. For example, you opened a long position (sell), close it when a red arr
Trade View Risk Reward Tool
Mehmet Ozhan Hastaoglu
Risk Reward Tool , It is easy to use. With this tool you can see the rates of profit loss profit. You can see your strategy and earnings reward status of your goals.Double calculation can be done with single tool. Move with drag and drop.  You can adjust the lot amount for calculations. The calculation results are shown in the comment section. There may sometimes be graphical errors during movements. Calculations works at all currency. Calculations All CFD works. Updates and improvements will co
JapaneseBreakout
Ahmet Metin Yilmaz
Instructions Attach the indicator to any chart (advised H4) Use input tabs (defaults are 5 and false ) Press ok and continue trading. Description The indicator uses a kind of pattern breakout strategy to help your trading strategy. I am using this strategy on H4 charts for many of pairs with a trailing stop and default indicator settings. Better results are shown on USDJPY, EURJPY, CADJPY, EURGBP, EURUSD, USDCAD, USDCHF, NZDUSD and GBPUSD. Trailing stops should be different for each pair. The
LQEV Oscillator
Ahmet Metin Yilmaz
LINEAR QUADRATIC ESTIMATION OF VELOCITY OSCILLATOR Linear quadratic estimation (LQE) is an algorithm that generates predictions of unknown variables observed over time using statistical noise and other inaccuracies and predicts a single measurement more accurately than those based on it. linear quadratic estimation of velocity oscillator shows trend. You can use this oscillator all pairs and on all timeframes. Better results are H1 and H4.
Snake NW
Sergei Shishaev
5 (1)
Канальный индикатор "Snake" . Отлично показывает точки входа и выхода. Не перерисовывает! Хорошо подойдет для стратегий с сетками (усреднения), стратегий с пирамидами (стратегий добора), обычной торговли по тренду, торговли на коррекции. Для любых типов инструментов:   валюты, нефть, металлы, криптовалюты. Для любых таймфреймов:   от M1 до D1 . Для любых стилей торговли:   скальпинг, интрадэй, свинг, долгосрок . Используйте в сочетании с трендовым индикатором, чтобы исключить риски вх
이 제품의 구매자들이 또한 구매함
Gann Made Easy
Oleg Rodin
4.83 (92)
Gann Made Easy 는 mr.의 이론을 사용하여 최고의 거래 원칙을 기반으로 하는 전문적이고 사용하기 쉬운 Forex 거래 시스템입니다. W.D. 간. 이 표시기는 Stop Loss 및 Take Profit Levels를 포함하여 정확한 BUY 및 SELL 신호를 제공합니다. PUSH 알림을 사용하여 이동 중에도 거래할 수 있습니다. 구매 후 연락주세요! 내 거래 팁과 훌륭한 보너스 지표를 무료로 공유하겠습니다! 아마도 Gann 거래 방법에 대해 이미 여러 번 들었을 것입니다. 일반적으로 Gann의 이론은 초보자 거래자뿐만 아니라 이미 거래 경험이 있는 사람들에게도 매우 복잡한 것입니다. Gann의 거래 방식은 이론적으로 적용하기 쉽지 않기 때문입니다. 나는 그 지식을 연마하고 Forex 지표에 최고의 원칙을 적용하기 위해 몇 년을 보냈습니다. 표시기는 적용하기가 매우 쉽습니다. 차트에 첨부하고 간단한 거래 권장 사항을 따르기만 하면 됩니다. 지표는 지속적으로 시장 분석 작업
Bull versus Bear
Mohamed Hassan
4.55 (11)
Official Release price of $65 for the first 97 /100   copies ( 3  copies left). Next price is $120 !  Send us a message after your purchase to receive more information on how to get your  BONUS  for FREE  that works in great combination with Bull vs Bear ! Bull versus Bear is an easy-to-use Forex indicator that gives traders clear and accurate signals based on clear trend retests . Forget about lagging indicators or staring at charts for hours because  Bull vs Bear provides real-time entrie
- Real price is 80$ - 40% Discount ( It is 49$ now ) Contact me for instruction, add group and any questions! Related Products:  Bitcoin Expert , Gold Expert 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 w
Golden Trend Indicator
Noha Mohamed Fathy Younes Badr
5 (1)
Golden Trend indicator  is The best indicator for predicting trend movement this indicator never lags and never repaints and never back paints    and give  arrow buy and sell    before the candle appear  and it will help you and  will make your trading decisions clearer its work on all currencies and  gold and crypto and all time frame This unique  indicator uses very secret algorithms to catch the  trends, so you can trade using this indicator and see the trend clear on charts  manual guide and
FX Power MT4 NG
Daniel Stein
5 (14)
FX 파워 NG의 모든 기능을 활용하세요: 궁극의 통화 강도 측정기 FX Power는 8년 이상 전 세계 트레이더에게 믿을 수 있고 정확한 통화 강세 분석을 제공해 왔습니다. 이제 FX Power NG는 이 신뢰할 수 있는 도구를 한 단계 더 발전시켜 거래에 탁월한 정확성, 사용자 지정 및 통찰력을 제공하는 고급 기능을 제공합니다. FX Power NG가 진지한 트레이더에게 필수품인 이유는 무엇인가요? FX Power NG는 기존 FX Power에서 좋아했던 모든 기능을 기반으로 주요 기능을 추가하고 개선했습니다: 금 강도 분석(XAU): 이제 통화쌍과 함께 금의 강세를 추적하여 더욱 폭넓은 시장 인사이트를 얻을 수 있습니다. 정교한 계산: 모든 분석에서 더욱 정확하고 신뢰할 수 있는 결과를 경험하세요. 사용자 지정 가능한 분석 기간: 일중부터 장기 인사이트까지 트레이딩 전략에 맞게 분석 기간을 조정할 수 있습니다. 고급 다중 인스턴스 설정: 여러 인스턴스를 실행하여 종합적으
FX Volume
Daniel Stein
4.58 (33)
FX 볼륨으로 외환 거래에서 진정한 우위를 점하세요: 최고의 거래량 지표 FX 거래량은 내부자 관점에서 진정한 시장 심리를 보여주는 최초이자 유일한 거래량 지표입니다. FX 거래량은 기관 시장 참여자와 브로커의 포지션에 대한 고유한 인사이트를 제공함으로써 일반적으로 메이저 플레이어에게만 있는 선견지명을 가지고 거래할 수 있게 해줍니다. FX 볼륨은 차트에서 이 중요한 정보를 즉시 제공하므로 더 빠르고 현명한 트레이딩 결정을 내릴 수 있습니다. FX 볼륨이 트레이딩에 필수적인 이유 FX 거래량을 사용하면 고유한 시장 데이터에 비할 데 없이 접근할 수 있어 일반적인 거래량 지표가 제공하지 못하는 인사이트를 얻을 수 있습니다. 차트에서 직접 추적할 수 있는 항목은 다음과 같습니다: 포지션 비율: 통화별 롱/숏 포지션 비율을 확인하여 시장 심리를 명확하게 파악하세요. 비율 변화: 선택한 기간 동안 매수 포지션의 비율 변화를 확인하세요. 총 거래량: 통화별 총 거래량(매수 및 매도)을
Trend Screener
STE S.S.COMPANY
4.81 (89)
트렌드 표시기, 트렌드 트레이딩 및 필터링을 위한 획기적인 고유 솔루션, 하나의 도구 안에 내장된 모든 중요한 트렌드 기능! Forex, 상품, 암호 화폐, 지수 및 주식과 같은 모든 기호/도구에 사용할 수 있는 100% 다시 칠하지 않는 다중 시간 프레임 및 다중 통화 표시기입니다. 기간 한정 특가: 지원 및 저항 스크리너 지표는 단 100달러에 평생 제공됩니다. (원래 가격 50 달러) (제안 연장) Trend Screener는 차트에 점이 있는 화살표 추세 신호를 제공하는 효율적인 지표 추세 추종 지표입니다. 추세 분석기 표시기에서 사용할 수 있는 기능: 1. 트렌드 스캐너. 2. 최대 이익 분석이 있는 추세선. 3. 추세 통화 강도 측정기. 4. 경고가 있는 추세 반전 점. 5. 경고가 있는 강력한 추세 점. 6. 추세 화살표 Trend Screener Indicator가 있는 일일 분석 예, 일일 신호 성능...등은 여기에서 찾을 수 있습니다.   여기를 클릭하십시오.
TPSproTREND PrO
Roman Podpora
4.79 (19)
TPSpro TREND PRO는   시장을 자동으로 분석하여 추세와 각 변화에 대한 정보를 제공할 뿐만 아니라 다시 그리지 않고도 거래에 진입할 수 있는 신호를 제공하는 추세 지표입니다! 지표는 각 양초를 사용하여 개별적으로 분석합니다. 다른 임펄스를 언급합니다 - 업 또는 다운 임펄스. 통화, 암호화폐, 금속, 주식, 지수 거래의 정확한 진입점! 버전 MT5                   표시기에 대한 전체 설명       표시기   와 함께 사용하는 것이 좋습니다   -   RFI LEVELS 주요 기능: 렌더링 없이 정확한 입력 신호! 신호가 나타나면 관련성은 유지됩니다! 이는 신호를 제공한 후 변경하여 예금 자금 손실을 초래할 수 있는 다시 그리기 지표와의 중요한 차이점입니다. 이제 더 큰 확률과 정확도로 시장에 진입할 수 있습니다. 화살표가 나타난 후 목표에 도달(이익실현)하거나 반전 신호가 나타날 때까지 캔들을 색칠하는 기능도 있습니다. STOP LOSS / TAK
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
MetaBands M4
Vahidreza Heidar Gholami
5 (3)
MetaBands uses powerful and unique algorithms to draw channels and detect trends so that it can provide traders with potential points for entering and exiting trades. It’s a channel indicator plus a powerful trend indicator. It includes different types of channels which can be merged to create new channels simply by using the input parameters. MetaBands uses all types of alerts to notify users about market events. Features Supports most of the channel algorithms Powerful trend detection algorith
Atomic Analyst
Issam Kassas
5 (2)
우선적으로 언급할 점은이 거래 지표가 다시 그리지 않고 지연되지 않으며 이를 통해 수동 및 로봇 거래 모두에 이상적이라는 점입니다. 사용자 매뉴얼: 설정, 입력 및 전략. Atomic Analyst는 가격의 강도와 모멘텀을 활용하여 시장에서 더 나은 이점을 찾는 PA Price Action Indicator입니다. 고급 필터를 장착하여 잡음과 거짓 신호를 제거하고 거래 잠재력을 높이는 데 도움이 됩니다. 복잡한 지표의 다중 레이어를 사용하여 Atomic Analyst는 차트를 스캔하고 복잡한 수학적 계산을 간단한 신호와 색상으로 변환하여 초보 트레이더가 이해하고 일관된 거래 결정을 내릴 수 있도록합니다. "Atomic Analyst"는 새로운 및 경험이 풍부한 트레이더를위한 종합적인 거래 솔루션입니다. 프리미엄 지표와 최고 수준의 기능을 하나의 거래 전략에 결합하여 모든 종류의 트레이더에 대한 다재다능한 선택지가되었습니다. 인트라데이 거래 및 스캘핑 전략 : 빠르고 정확한
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
소개       Quantum Breakout PRO   , 브레이크아웃 존 거래 방식을 변화시키는 획기적인 MQL5 지표! 13년 이상의 거래 경험을 가진 숙련된 트레이더 팀이 개발한   Quantum Breakout PRO는   혁신적이고 역동적인 브레이크아웃 영역 전략으로 거래 여정을 새로운 차원으로 끌어올리도록 설계되었습니다. Quantum Breakout Indicator는 5개의 이익 목표 영역이 있는 브레이크아웃 영역의 신호 화살표와 브레이크아웃 상자를 기반으로 한 손절 제안을 제공합니다. 초보자 거래자와 전문 거래자 모두에게 적합합니다. Quantum EA 채널:       여기를 클릭하세요 MT5 버전 :   여기를 클릭하세요 중요한! 구매 후 설치 매뉴얼을 받으려면 개인 메시지를 보내주십시오. 추천: 기간: M15 통화쌍: GBPJPY, EURJPY, USDJPY,NZDUSD, XAUUSD 계정 유형: 스프레드가 매우 낮은 ECN, Ra
TrendMaestro
Stefano Frisetti
5 (3)
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.4 TRENDMAESTRO recognizes a new TREND in the bud, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these data a
Gold Stuff
Vasiliy Strukov
4.87 (243)
Gold Stuff는 금을 위해 특별히 설계된 추세 지표이며 모든 금융 상품에서도 사용할 수 있습니다. 표시기가 다시 그려지지 않고 지연되지 않습니다. 권장 기간 H1. 표시기에서 완전 자동 Expert Advisor EA Gold Stuff를 작동합니다. 내 프로필에서 찾을 수 있습니다. 설정 및 개인 보너스를 받으려면 구매 후 즉시 저에게 연락하십시오!   강력한 지원 및 트렌드 스캐너 표시기의 무료 사본을 받으실 수 있습니다. 메시지를 보내주세요. 나!   설정 화살표 그리기 - 켜기 끄기. 차트에 화살표 그리기. 경고 - 가청 경고를 끕니다. 이메일 알림 - 켜기 끄기. 이메일 알림. Puch-notification - 켜기 끄기. 푸시 알림. 다음으로 색 영역을 조정합니다. Gold Stuff는 금을 위해 특별히 설계된 추세 지표이며 모든 금융 상품에서도 사용할 수 있습니다. 표시기가 다시 그려지지 않고 지연되지 않습니다. 권장 기간 H1. 표시기에서 완
Dynamic Forex28 Navigator
Bernhard Schweigert
5 (2)
Dynamic Forex28 Navigator - 차세대 외환 거래 도구. 현재 49% 할인. Dynamic Forex28 Navigator는 오랫동안 인기 있는 지표의 진화형으로, 세 가지의 힘을 하나로 결합했습니다. 고급 통화 Strength28 지표(695개 리뷰) + 고급 통화 IMPULSE with ALERT(520개 리뷰) + CS28 콤보 신호(보너스). 지표에 대한 자세한 정보 https://www.mql5.com/en/blogs/post/758844 차세대 Strength 지표는 무엇을 제공합니까?  원래 지표에서 좋아했던 모든 것이 새로운 기능과 더 높은 정확도로 강화되었습니다. 주요 기능: 독점적인 통화 Strength 공식.  모든 시간대에 걸쳐 부드럽고 정확한 강도선. 추세와 정확한 진입을 식별하는 데 이상적입니다. 역동적인 시장 피보나치 수준(시장 피보나치).  이 지표에만 있는 고유한 기능. 가격 차트가 아닌 통화 강도에 피보나치가 적용
Scalper Inside PRO
Alexey Minkov
4.73 (56)
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
Scalper Vault
Oleg Rodin
5 (27)
Scalper Vault 는 성공적인 스캘핑에 필요한 모든 것을 제공하는 전문 스캘핑 시스템입니다. 이 표시기는 외환 및 바이너리 옵션 거래자가 사용할 수 있는 완전한 거래 시스템입니다. 권장 시간 프레임은 M5입니다. 시스템은 추세 방향으로 정확한 화살표 신호를 제공합니다. 또한 상단 및 하단 신호와 Gann 시장 수준을 제공합니다.  이 시스템은 사용하기가 매우 쉽습니다. 원하는 시장 지역의 화살표만 따라가면 됩니다. 엑시트는 가격이 적정 수준에 도달하거나 시장의 고점 또는 저점 신호가 나타날 때 수행됩니다.  표시기는 PUSH 알림을 포함한 모든 유형의 경고를 제공합니다. 인디케이터 구매 후 연락주세요. 내 개인 거래 권장 사항과 훌륭한 보너스 지표를 무료로 공유합니다! 나는 당신에게 행복하고 유익한 거래를 기원합니다!
현재 20% 할인 ! 초보자 또는 전문가 트레이더를 위한 최고의 솔루션! 이 대시보드 소프트웨어는 28개의 통화 쌍에서 작동합니다. 2가지 주요 지표(Advanced Currency Strength 28 및 Advanced Currency Impulse)를 기반으로 합니다. 전체 Forex 시장에 대한 훌륭한 개요를 제공합니다. 고급 통화 강도 값, 통화 이동 속도 및 모든(9) 시간대의 28 Forex 쌍에 대한 신호를 보여줍니다. 추세 및/또는 스캘핑 기회를 정확히 파악하기 위해 차트의 단일 지표를 사용하여 전체 시장을 볼 수 있을 때 거래가 어떻게 개선될지 상상해 보십시오! 잠재적인 거래를 식별하고 확인하면서 강력한 통화와 약한 통화를 더욱 쉽게 식별할 수 있도록 이 지표에 기능을 내장했습니다. 이 표시기는 통화의 강세 또는 약세가 증가 또는 감소하는지 여부와 모든 시간대에서 수행되는 방식을 그래픽으로 보여줍니다. 추가된 새로운 기능은 현재 시장 조건 변화에 적
Chart Patterns All in One
Davit Beridze
4.45 (11)
구매 후 댓글을 남기시면 고품질의 인디케이터 4개를 보너스로 받으실 수 있습니다. Chart Patterns All-in-One 지표는 트레이더가 기술 분석에서 흔히 사용되는 다양한 차트 패턴을 시각화하는 데 도움을 줍니다. 이 지표는 잠재적인 시장 움직임을 식별하는 데 도움이 되지만, 수익성을 보장하지는 않습니다. 구매 전에 데모 모드에서 지표를 테스트하는 것이 좋습니다. 현재 할인 : "Chart Patterns All in One" 지표 50% 할인 중. 포함된 패턴 : 1-2-3 패턴 : 세 가지 주요 지점(고점 또는 저점)을 사용하여 시장 반전을 감지합니다. 매수 : 연속된 두 저점 이후, 이전 고점보다 낮은 고점이 발생할 때. 매도 : 연속된 두 고점 이후, 이전 저점보다 높은 저점이 발생할 때. 시각화 : 선과 화살표가 감지된 지점을 연결합니다. 더블 탑과 더블 바텀 : 가격이 두 개의 연속된 고점(더블 탑) 또는 저점(더블 바텀)을 형성할 때, 반전의 가능성을 나타냅니
TakePropips Donchian Trend Pro
Eric John Pajarillaga Aldana
4.44 (16)
TakePropips Donchian Trend Pro   (MT4)는 Donchian 채널을 사용하여 추세의 방향을 자동으로 감지하고 진입 및 퇴장 거래 신호를 제공하는 강력하고 효과적인 도구입니다! 이 다기능 지표에는 추세 스캐너, 거래 신호, 통계 패널, 스크리너, 거래 세션 및 경고 내역 대시보드가 포함됩니다. 거래 신호를 제공하고 차트 분석 시간을 절약하도록 설계되었습니다! 다음 블로그 게시물에서 사용자 설명서 및 설치 가이드를 다운로드할 수 있습니다.   https://www.mql5.com/en/blogs/post/751368 오늘 50% 할인을 받으세요! 가격이 $98에서 $49로 인하되었습니다! 전략 테스터에서 이 지표를 테스트할 수 있습니다(비주얼 모드 활성화).  자세한 내용은 설명 아래에 비디오 자습서도 제공됩니다. 질문이 있거나 도움이 필요하면 저에게 연락하십시오. TakePropips Donchian Trend Pro 지표는 모든 Forex 쌍, 금속
FX Levels MT4
Daniel Stein
FX 레벨 알아보기: 트레이딩 성공을 위한 궁극적인 지지 및 저항 지표 FX 레벨은 단순한 지지 및 저항 지표가 아니라 통화쌍, 지수, 주식, 원자재 등 모든 거래 기호에 대해 정확성, 신뢰성, 원활한 기능을 원하는 진지한 트레이더를 위한 게임 체인저입니다. 입증된 라이트하우스 방식을 기반으로 하고 동적 실시간 적응성으로 강화된 FX 레벨은 차트에 바로 시장 반전 포인트를 표시해 정확한 수익 목표를 설정하고 거래 진입을 최적화하는 데 적합합니다. 왜 FX 레벨을 선택해야 하나요? 스타인 인베스트먼트 팀은 브로커와 다양한 데이터 피드에 대한 다년간의 경험을 활용하여 정확성과 일관성이 뛰어난 FX 레벨을 만들었습니다. 여러 브로커에서 거의 100% 동일한 레벨을 제공하는 FX 레벨은 다른 지표가 제공할 수 없는 탁월한 수준의 신뢰성을 제공합니다. FX 레벨을 향상시키는 것은 세부 사항에 대한 우리의 약속이며, 기대치를 충족시킬뿐만 아니라지지 및 저항 분석에 접근하는 방식을 변화시
TPSpro RFI Levels
Roman Podpora
4.82 (22)
지침         러시아   -        영어       표시기와 함께 사용하는 것이 좋습니다   .       -       TPSpro   트렌드 프로 -   MT4 버전         거래에서 핵심 요소는 거래 상품을 매수 또는 매도하기로 결정하는 구역 또는 수준입니다. 주요 업체가 시장에서 자신의 존재를 숨기려는 시도에도 불구하고, 그들은 필연적으로 흔적을 남깁니다. 우리의 과제는 이러한 흔적을 식별하고 올바르게 해석하는 방법을 배우는 것이었습니다. 주요 기능:: 판매자와 구매자를 위한 활성 영역을 표시합니다! 이 지표는 매수 및 매도를 위한 모든 올바른 초기 임펄스 레벨/존을 보여줍니다. 진입점 검색이 시작되는 이러한 레벨/존이 활성화되면 레벨의 색상이 바뀌고 특정 음영으로 채워집니다. 또한 상황을 보다 직관적으로 이해하기 위해 화살표가 나타납니다. 더 높은 시간대의 레벨/존 표시(MTF 모드) 더 높은 시간 간격을 사용하여 레벨/존을 표시하는 기능을 추가했습니다.
Connect Indicator
Sukunthakan Ngernbamrung
Connect Indicator is a tool used for connecting indicators between the MQL market and MT4. The connected indicators are made by our group and can be used for other applications, such as sending messages to the Line application or Telegram application. If you have any questions, please don't hesitate to ask us to receive support. Function and indicator buffer Buffer one is the high price of the previous candle. Buffer two is the high price of the previous candle. Usage To connect indicators to fu
Stratos Pali
Michela Russo
5 (1)
Stratos Pali Indicator   is a revolutionary tool designed to enhance your trading strategy by accurately identifying market trends. This sophisticated indicator uses a unique algorithm to generate a complete histogram, which records when the trend is Long or Short. When a trend reversal occurs, an arrow appears, indicating the new direction of the trend. Important Information Revealed Leave a review and contact me via mql5 message to receive My Top 5 set files for Stratos Pali at no cost! D
Entry Arrow Alerts: Finds market entry opportunities then notifies you via mobile or desktop alerts The key features include: Conservative mode . One entry signal per direction. Ideal for the patient trader looking to capture longer term moves. Aggressive mode . Multiple possible entry signals per direction. Ideal for the active trader looking to capture multiple moves within the same trend. Trigger Line . Price entry line helps cut down on false signals. Display Window . Allows you to instantly
Advanced Supply Demand
Bernhard Schweigert
4.91 (295)
현재 33% 할인! 초보자나 전문 트레이더를 위한 최고의 솔루션! 이 보조지표는 우리가 다수의 독창적 기능과 새로운 공식을 통합한 독특하고 고품질이며 저렴한 거래 도구입니다. 이 업데이트를 통해 이중 시간대를 표시할 수 있습니다. 더 높은 TF를 표시할 수 있을 뿐만 아니라 차트 TF와 더 높은 TF 모두를 표시할 수 있습니다: 중첩 영역 표시. 모든 Supply Demand 트레이더들이 좋아할 것입니다. :) 중요한 정보 공개 Advanced Supply Demand의 잠재력을 극대화하려면 다음을 방문하십시오. https://www.mql5.com/ko/blogs/post/720245   진입 또는 목표의 명확한 트리거 포인트를 정확히 찾아냄으로 해서 거래가 어떻게 개선될지 상상해 보십시오. 새로운 알고리즘을 기반으로 매수자와 매도자 간의 잠재적인 불균형을 훨씬 더 쉽게 분간할 수 있습니다. 왜냐하면 가장 강한 공급영역과 가장 강한 수요 영역과 과거에 어떻게 진행 되었는지를(이
Supply and Demand Dashboard PRO
Bernhard Schweigert
4.8 (20)
현재 20% 할인! 이 대시보드는 여러 기호와 최대 9개의 타임프레임에서 작동하는 매우 강력한 소프트웨어입니다. 주요 지표(최상의 리뷰: 고급 공급 수요)를 기반으로 합니다.   Advanced Supply Demand 대시보드는 훌륭한 개요를 제공합니다. 다음과 같이 표시됩니다.  영역 강도 등급을 포함하여 필터링된 공급 및 수요 값, 영역에 대한/및 영역 내 Pips 거리, 중첩된 영역을 강조 표시하고 모든 (9) 시간 프레임에서 선택한 기호에 대해 4가지 종류의 경고를 제공합니다. 그것은 당신의 개인적인 필요에 맞게 고도로 구성 가능합니다! 당신의 혜택! 모든 트레이더에게 가장 중요한 질문: 시장에 진입하기에 가장 좋은 수준은 무엇입니까? 최고의 성공 기회와 위험/보상을 얻으려면 강력한 공급/수요 영역 내 또는 그 근처에서 거래를 시작하십시오. 손절매를 위한 최적의 장소는 어디입니까? 가장 안전하려면 강력한 수요/공급 구역 아래/위에 정
Graf Mason
Alexandr Lapin
5 (5)
Graf Mason is a tool that will make you a professional analyst! The method of determining wave movements using inclined channels qualitatively conveys the schematics of the movement of any instrument, showing not only possible reversals in the market, but also the goals of further movements!Destroys the myth that the market is alive , clearly showing the schematics of movements from one range to another! A professional tool, suitable for the medium term with the definition of the current trend!
Trend Pulse
Mohamed Hassan
5 (4)
Promotion   for   24 hours only   with a   40%   discount on the original price!  Please contact me after purchase to immediately get your PDF strategy + documentation for Trend Pulse !  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 kno
우선적으로, 이 거래 도구는 전문적인 거래에 이상적인 비-다시 그리기 및 지연되지 않는 지표입니다.  온라인 강좌, 사용자 매뉴얼 및 데모. 스마트 가격 액션 컨셉트 인디케이터는 신규 및 경험 많은 트레이더 모두에게 매우 강력한 도구입니다. Inner Circle Trader Analysis 및 Smart Money Concepts Trading Strategies와 같은 고급 거래 아이디어를 결합하여 20가지 이상의 유용한 지표를 하나로 결합합니다. 이 인디케이터는 스마트 머니 컨셉트에 중점을 두어 대형 기관의 거래 방식을 제공하고 이동을 예측하는 데 도움을 줍니다.  특히 유동성 분석에 뛰어나 기관이 어떻게 거래하는지 이해하는 데 도움을 줍니다. 시장 트렌드를 예측하고 가격 변동을 신중하게 분석하는 데 탁월합니다. 귀하의 거래를 기관 전략에 맞추어 시장의 동향에 대해 더 정확한 예측을 할 수 있습니다. 이 인디케이터는 시장 구조를 분석하고 중요한 주문 블록을 식별하고 다양한
제작자의 제품 더 보기
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: "SwingArm ATR Trend Indicator" by " vsnfnd ". Also known as : "Blackflag FTS" by "Jose Azcarate" This is a light-load processing and non-repaint indicator. All input options are available except multi time frame Buffers are available for processing in EAs. Extra option to show buy and sell signal alerts. You can message in private chat for further changes you need.
To download MT5 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
TRAMA by LuxAlgo
Yashar Seyyedin
5 (1)
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
For MT4 version please click  here . - This is the exact conversion from TradingView source: "Squeeze Momentum Indicator" By "LazyBear". - This is a non-repaint and light processing load indicator. - Buffers and inputs are available for use in EAs and optimization purposes. - 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
To get access to MT5 version please click   here . This is the exact conversion from TradingView: "ZLSMA - Zero Lag LSMA" by "veryfid". This is a light-load processing indicator. This is a non-repaint indicator. Buffers are available for processing in EAs. All input fields are available. You can message in private chat for further changes you need. Thanks for downloading
Hull Suite By Insilico
Yashar Seyyedin
5 (1)
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 . You can also check the other popular version of this indicator   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.
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
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
GoldTrader
Yashar Seyyedin
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 . - 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
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". This is a light-load processing and non-repaint indicator. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks for downloading 
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
Volume Oscillator
Yashar Seyyedin
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 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 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
IntradayTrader
Yashar Seyyedin
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
Vortex Indicator
Yashar Seyyedin
5 (1)
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
Choppy Trader
Yashar Seyyedin
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
B Xtrender
Yashar Seyyedin
To download MT4 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To download MT4 version please click here . - This is the exact conversion from TradingView: "QQE mod" By "Mihkel00". - It can be used to detect trend direction and trend strength. - Gray bars represent weak trends. You can set thresholds to achieve better accuracy in detecting trend strength. - There is buffer index 15 to use in EA for optimization purposes. - The indicator is loaded light and non-repaint.  - You can message in private chat for further changes you need.  
For MT4 version please click here . This is the exact conversion from TradingView: "Average True Range Stop Loss Finder" By "veryfid". - This indicator implements a deviation channel. - The channel determines trend direction as well as stop loss placement. - This is a non-repaint and light processing load indicator. - 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: "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 MT4 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
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Range Identifier" By "Mango2Juice". - All twelve averaging options are available:  EMA, DEMA, TEMA, WMA, VWMA, SMA, SMMA, RMA, HMA, LSMA, Kijun, McGinley - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart and not for thresholds.  - You can message in private chat for further changes you need.
MacroTrendTrader
Yashar Seyyedin
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 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
필터:
Golden Joy
139
Golden Joy 2023.07.16 18:31 
 

waiting for you to export it as EA, I am used to trading with this indicator, and I love it

Yashar Seyyedin
43301
개발자의 답변 Yashar Seyyedin 2023.07.16 18:47
Thanks for the positive review. Wish you happy trading.
리뷰 답변
버전 1.50 2023.05.29
alerts are back.
버전 1.40 2023.05.29
a serious bug fix!
버전 1.30 2023.02.22
push notifications added.
버전 1.20 2023.02.14
Added Alert details: Time Frame and Symbol
버전 1.10 2023.02.14
Added Alerts option.