WT String2Signal

Easily convert your candlestick patterns into signals!


Eval - Command interpreter - Command line interface - String converter - Customizable sign

 

I bring one more indicator that was requested by a real trader. Thanks for the suggestion mate!


The String2Signal indicator will allow you to write your candlestick patterns and get the signals on the screen, integrating with EAs or using it to assist in manual operations.

You type a text with your setup and the indicator converts it into the MQL5 language, placing buy or sell signals on the screen.

For example, giving a buy signal when the tick volume is greater than 200 and the current close is greater than the high of the previous candlestick, can be written as tv[0]>200 && C[0]>H[1], that simple!

The commands accepted in the indicator are:

1)      The commands obtained natively in indicators (For these commands, use only the initial capital letter):

O (Open)   H (High)   L (Low)   C (Close)     TV (Tick Volume) V (Real Volume)   S (Spread)  

2)      Some of the commonly used mathematical functions (to understand each function click on each function):

  max   min abs   floor   ceil   round     sqrt mod     pow

3)      Operations and expressions used in the MQL5 language. They are usually mathematical operations, logical comparators of greater, lesser, among others. Here I draw attention to the logical combinations && (and), which combines two expressions where both need to happen, and || (or), which combines two expressions where only one of them needs to happen. Thus, we can use the expressions:

Or   And   Addition     Subtraction   Multiplication   Division   Rest of Division Greater than     Less than   Greater Than Or Equal
Less Than Or Equal
Equal   Different (Is not equal)
||
&&  
+
-
  *
/
%
>
<
>=  
<=
==
!=  

                                                                                      

 

Let's see some examples of what can be used:


·         Rule Buy (1):    C[1]>O[1]  (will place a buy signal on the entire candlestick where the previous bar has a close greater than the open, i.e. it is a bullish bar).

 

·         Rule Buy (1):    C[1]>O[1] && C[2]>O[2] && C[3]>O[3] && C[4]<=O[4] && C[5]<=O[5]  (will put a buy signal when we have three bull candles followed by two bear candles or doji).

 

·         Rule Buy (1):    C[1]>O[1] && H[1]-L[1]>=100  (will place a buy signal when we have a bullish candle and the amplitude (maximum – minimum) is greater than or equal to 100).

 

·         Rule Buy (1):    abs(C[1]-O[1])  >= 300 &&  C[1]>O[1]  (will place a buy signal when the absolute value of the open price minus the close price is greater than 300 and it is a bullish candle. Here, as we don't know if the opening price was higher or lower than the closing price, we ask for the absolute value - always positive)

 

In a similar way, we can write conditions of sale.

If you have any condition that you are unable to write, leave a message here in the comments and I'll help you write. If it is a confidential case, you can send a private message through mql5.com messages.

 

Indicator parameters:

Look back = 1000; // The indicator will plot the arrows (when placed on the chart) analyzing the last 1000 candles. This is to save processing when the indicator needs to look at the history. After being on the chart it only looks at the most recent candles.

Calculate in new bar Only = true; // In this case the indicator only recalculates on each new candlestick. This is to save real-time processing.

 

Buy Condition

Here we have 3 text fields and 2 connectors. By limitation of MT5 each text entry has a limit of 243 characters. If your input rule is longer than 243 characters, you can combine the other two fields of each condition and combine the fields using && or ||. If you are not going to use the fields below, check the “ignore field below” box.

Sell Condition

A mesma coisa para as condições de venda.

 

 

That's it, a practical way to get your buy and sell signals that read candles.

Take a look at my other indicators, and if in doubt, leave your message here on the indicator or send me a private message.

 

Success and good trades!


PS> Attention. This is the launch price. Despite my tests and that of a colleague who acted as a beta tester, it is possible that a bug will be found that will be corrected. After final corrections the value of the product should change. PS2> I've seen this kind of functionality in some EAs, but never in an indicator. That is, in terms of the indicator, it is another novelty that I bring to MT5! PS3> Translated by google translator

추천 제품
Donchian Breakout And Rsi
Mattia Impicciatore
5 (1)
개요 이 지표는 클래식 돈치안 채널(Donchian Channel) 의 향상된 버전으로, 실전 트레이딩을 위한 다양한 기능이 추가되었습니다. 표준 세 개의 선(상단, 하단, 중앙선) 외에도 브레이크아웃 을 감지하여 차트에 화살표로 시각적으로 표시하며, 차트를 깔끔하게 보기 위해 현재 추세 방향의 반대 라인만 표시 합니다. 지표 기능: 시각적 신호 : 브레이크아웃 시 컬러 화살표 표시 자동 알림 : 팝업, 푸시 알림, 이메일 RSI 필터 : 시장의 상대 강도를 기반으로 신호 검증 사용자 맞춤 설정 : 색상, 선 두께, 화살표 코드, RSI 임계값 등 동작 원리 돈치안 채널은 다음을 계산합니다: 상단선 : 최근 N개의 종가 완료 캔들에서 가장 높은 고가 하단선 : 최근 N개의 종가 완료 캔들에서 가장 낮은 저가 중앙선 : 고가와 저가의 평균값 상방 브레이크아웃 은 종가가 상단선을 돌파할 때 발생하며, 하방 브레이크아웃 은 종가가 하단선 아래로 내려갈 때 발생합니다. 이 지표는: 세 개의
FREE
Value Chart Candlesticks
Flavio Javier Jarabeck
4.69 (13)
The idea of a Value Chart indicator was presented in the very good book I read back in 2020 , " Dynamic Trading Indicators: Winning with Value Charts and Price Action Profile ", from the authors Mark Helweg and David Stendahl. The idea is simple and the result is pure genius: Present candlestick Price analysis in a detrended way! HOW TO READ THIS INDICATOR Look for Overbought and Oversold levels. Of course, you will need to test the settings a lot to find the "correct" one for your approach. It
FREE
VWAP Volume And Price is the indicator for Volume Weighted Average Price, designed according to regular calculation. The average price is calculated using typical price - (high + low + close) / 3 - and weighted by volume for each candle. So, the indicator can be used to trend trades, balanced with volume. Try other products and expert advisors too. Any doubt, PM.
Aggression Volume Profile
Edson Cavalca Junior
4.55 (11)
This indicator plots the volume profile by Price on the chart There are 5 ways to view it: By Total Volume Traded (Premium Version); Volume Ticks(Forex) Separated by Buyers and Sellers (Premium Version); Buyers Only (Premium Version); Sellers Only (Premium Version); Business balance (Buyers - Sellers) (Premium Version); . It is possible to select how many days the profiles will be calculated.( Premium Version) On the current day it recalculates the histogram data for each new candlestick.
FREE
High Low Open Close
Alexandre Borela
4.98 (43)
이 프로젝트를 좋아한다면 5 스타 리뷰를 남겨주세요. 이 지표는 열리고, 높은, 낮은 및 마감 가격을 지정합니다. 기간과 그것은 특정한 시간대를 위해 조정될 수 있습니다. 이들은 많은 기관 및 전문가에 의해 보는 중요한 수준입니다 상인은 당신이 더 많은 것일 수있는 장소를 알고 도움이 될 수 있습니다 이름 * 사용 가능한 기간: 이전 날. 이전 주. 지난 달. 이전 분기. 이전 연도. 또는: 현재 날. 현재 주. 현재 달. 현재 분기. 현재 년.
FREE
Weis Waves
Flavio Javier Jarabeck
2.83 (18)
The original author is David Weis, an expert in the Wyckoff Method. The Weis Wave is a modern adaptation of the 1930's Wyckoff Method, another expert in Tape Reading techniques and Chart Analysis. Weis Waves takes market volume and stacks it into waves according to price conditions giving the trader valuable insights about the market conditions. If you want to learn more about this subject you can find tons of videos in YouTube. Just look for "The Wickoff Method", "Weis Wave" and "Volume Spread
FREE
Mirror Chart MT5
Andrej Hermann
5 (1)
The Mirror Chart MT5 is a overlay indicator specifically designed to project a second financial instrument directly onto the main chart window. This tool is invaluable for traders who rely on correlation analysis, as it visualizes the price movements of two different instruments in real time. Unlike traditional overlays, this indicator utilizes intelligent, dynamic centering and scaling logic. It continuously analyzes the visible price range in the current window for both symbols and calculates
FREE
Statistical Arbitrage Spread Generator for Cointegration [MT5] What is Pair Trading? Pair trading is a market-neutral strategy that looks to exploit the relative price movement between two correlated assets — instead of betting on the direction of the market. The idea? When two assets that usually move together diverge beyond a statistically significant threshold, one is likely mispriced. You sell the expensive one, buy the cheap one , and profit when they converge again. It’s a statistica
FREE
Girassol Sunflower MT5 Indicator
Saullo De Oliveira Pacheco
3.86 (7)
This is the famous Sunflower indicator for Metatrader5. This indicator marks possible tops and bottoms on price charts. The indicator identifies tops and bottoms in the asset's price history, keep in mind that the current sunflower of the last candle repaints, as it is not possible to identify a top until the market reverses and it is also not possible to identify a bottom without the market stop falling and start rising. If you are looking for a professional programmer for Metatrader5, please
FREE
Follow The Line MT5
Oliver Gideon Amofa Appiah
4.6 (35)
This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL. (you can change the colors). It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more powerful and reliable signals. Get them here: https://www.m
FREE
Important Lines
Terence Gronowski
4.88 (24)
This indicator displays Pivot-Lines, preday high and low, preday close and the minimum and maximum of the previous hour. You just have to put this single indicator to the chart to have all these important lines, no need to setup many single indicators. Why certain lines are important Preday high and low : These are watched by traders who trade in a daily chart. Very often, if price climbs over or falls under a preday low/high there is an acceleration in buying/selling. It is a breakout out of a
FREE
Wave Box Market Frenquency
Jean Jacques Huve Ribeiro
4.75 (4)
Totally linked to the result of a movement and the duration he had. Its height records how many ticks the asset walked during a given movement, its width shows us the duration that movement had. Its configuration must be in line with the Weis Wave Indicator configuration to observe the movement force and can indicate a possible accumulation or distribution of the movement;
FREE
Haven FVG Indicator
Maksim Tarutin
5 (8)
인디케이터   Haven FVG   는 시장을 분석하는 도구로, 차트에서 비효율성 영역(Fair Value Gaps, FVG)을 식별하여 트레이더에게 가격 분석 및 거래 결정을 위한 주요 수준을 제공합니다. 다른 제품 ->  여기 주요 특징: 개별 색상 설정: 상승 FVG 색상   (Bullish FVG Color). 하락 FVG 색상   (Bearish FVG Color). 유연한 FVG 시각화: FVG를 검색할 최대 캔들 수. FVG 영역을 특정 바 수만큼 추가로 연장. FVG에 대한 채우기를 활성화할 수 있습니다. 중앙선(Middle Line): 색상 및 선 스타일 선택(예: 점선). 더 정확한 선 두께 조정. 일반 설정: FVG를 현재 바까지 확장. 채우기가 있는 역사적 FVG 제외하여 최신 데이터에 집중. 차트에서 비효율성 영역을 분석하고 근거 있는 거래 결정을 내리는 간단하고 효과적인 방법.
FREE
Aggression Volume
Flavio Javier Jarabeck
4.29 (17)
Aggression Volume Indicator is the kind of indicator that is rarely found in the MQL5 community because it is not based on the standard Volume data provided by the Metatrader 5 platform. It requires the scrutiny of all traffic Ticks requested on the platform... That said, Aggression Volume indicator requests all Tick Data from your Broker and processes it to build a very special version of a Volume Indicator, where Buyers and Sellers aggressions are plotted in a form of Histogram. Additionally,
FREE
PZ Penta O MT5
PZ TRADING SLU
3.5 (4)
The Penta-O is a 6-point retracement harmonacci pattern which usually precedes big market movements. Penta-O patterns can expand and repaint quite a bit. To make things easier this indicator implements a twist: it waits for a donchian breakout in the right direction before signaling the trade. The end result is an otherwise repainting indicator with a very reliable trading signal. The donchian breakout period is entered as an input. [ Installation Guide | Update Guide | Troubleshooting | FAQ | A
FREE
MIDAS Super VWAP
Flavio Javier Jarabeck
4.27 (11)
Imagine VWAP, MVWAP and MIDAS in one place... Well, you found it! Now you can track the movement of Big Players in various ways, as they in general pursue the benchmarks related to this measuring, gauging if they had good execution or poor execution on their orders. Traders and analysts use the VWAP to eliminate the noise that occurs throughout the day, so they can measure what prices buyers and sellers are really trading. VWAP gives traders insight into how a stock trades for that day and deter
FREE
LT Donchian Channel
Thiago Duarte
4.86 (7)
Donchian Channel is an indicator created by Richard Donchian. It is formed by taking the highest high and the lowest low of the last specified period in candles. The area between high and low is the channel for the chosen period. Its configuration is simple. It is possible to have the average between the upper and lower lines, plus you have alerts when price hits one side. If you have any questions or find any bugs, please contact me. Enjoy!
FREE
Waves Sizer
Flavio Javier Jarabeck
3.86 (7)
Wyckoff fans, enjoy! Ideally to be used with the Weis Waves indicator, but it can be easily used alone, the Waves Sizer puts the range (in resulting Price movement) done by the Price on its market swings. You can control how accurate or loose will be the swings. This tool is very helpful for visually know how much the Price has traveled in your Timeframe. This way you can confront this level of effort with the resulting Volume, etc... Weis Waves indicator: https://www.mql5.com/en/market/produc
FREE
Trendline mt5 indicator
David Muriithi
3 (1)
Are you tired of drawing trendlines every time you're analyzing charts? Or perhaps you would like more consistency in your technical analysis. Then this is for you. This indicator will draw trend lines automatically when dropped on a chart. How it works Works similar to standard deviation channel found on mt4 and mt5. It has 2 parameters: 1. Starting Bar 2. Number of bars for calculation The   starting bar   is the bar which drawing of the trend lines will begin, while the   number of bars for c
FREE
VisualVol EURUSD
Maxim Kuznetsov
The indicator highlights the points that a professional trader sees in ordinary indicators. VisualVol visually displays different volatility indicators on a single scale and a common align. Highlights the excess of volume indicators in color. At the same time, Tick and Real Volume, Actual range, ATR, candle size and return (open-close difference) can be displayed. Thanks to VisualVol, you will see the market periods and the right time for different trading operations. This version is intended f
FREE
DALA Forecast
Grigorii Matsnev
About the indicator: DALA Forecast is a universal tool for predicting the dynamics of time series of any nature. For prediction, modified methods of nonlinear dynamics analysis are used, on the basis of which a predictive model is built using machine learning methods.  To get the trial version of the indicator, you can contact me in private messages. How to use the indicator: Apply the indicator to your chosen financial instrument or indicator with the settings you need. The prediction will be
FREE
Donchian Pro
Paulo Henrique Faquineli Garcia
4.75 (4)
The Donchian Channel Channels are among the most popular tools of technical analysis, as they visually convey to the analyst the limits within which most price movement tends to occur. Channel users know that valuable information can be obtained at any time, whether prices are in the central region of a band or close to one of the border lines. One of the best known techniques to explore these concepts is Bollinger Bands. However, John Bollinger was not the only one to research the application
FREE
White Weis Volume Ticks
Ricardo Almeida Branco
5 (4)
White Weis Volume This indicator shows the sum of the volume in each wave, bulish or bearish, as idealized by David Weis , but it brings an important addition , which is the marking of the bar with the highest volume of the wave (White Bar)! In coding the indicator, it was sought to optimize the code to require minimal processing during use and not to overload mt5. The indicator can be used for pre-trading analysis and study, where the trader analyzes possible points of support and resistance
FlatBreakout MT5
Aleksei Vorontsov
FlatBreakout MT5 (Free Version) Flat Range Detector and Breakout Panel for MT5 — GBPUSD Only FlatBreakout MT5   is the free version of the professional FlatBreakoutPro MT5 indicator, specially designed for flat (range) detection and breakout signals on the   GBPUSD   pair only. Perfect for traders who want to experience the unique fractal logic of FlatBreakout MT5 and test breakout signals on a live market without limitations. Who Is This Product For? For traders who prefer to trade breakout of
FREE
넥스트 바 카운트다운은 MetaTrader 5용 고정밀 고성능 시간 지표로, 트레이더에게 현재 캔들 마감까지 남은 시간을 표시하도록 특별히 설계되었습니다. 정확한 타이밍은 특히 새 캔들이 열릴 때 즉시 결정을 내려야 하는 경우 많은 거래 전략에 결정적입니다. 주요 기능: 이 지표는 표준 타이머를 뛰어넘는 다양한 기능을 제공합니다: 이중 시간대 표시: 현재 차트 시간대와 두 번째 자유롭게 선택 가능한 시간대(예: H4 또는 일간)의 카운트다운을 동시에 표시할 수 있습니다. 안티 래그 기술: 서버 시간과 로컬 시스템 시간 간의 지능형 동기화를 통해 타이머가 완벽하게 부드럽게 작동합니다. 시장 변동성이 낮거나 주말에 틱이 수신되지 않더라도 초를 건너뛰지 않습니다. 개별 맞춤 설정: 글꼴, 크기 및 차트 상의 위치는 사용자의 차트 설정에 완전히 맞게 조정할 수 있습니다. 시각적 경고 신호: 지표는 캔들 마감 직전 마지막 몇 초 동안 카운트다운 색상을 변경하여 사용자의 주의를 제때 끌 수
FREE
Double TMA with Reversal Zones
Clayton Prickett
4.5 (10)
Note from Developer: This is the lite version of the Double TMA with Bands Indicator. You can find the paid version that comes with alerts and on screen signal arrows built in here . I will also be selling an EA based on this trading system soon once all backtesting and optimization have been completed. Unlock your trading potential with the Double TMA Indicator with Reversal Detection! Designed for swing and reversal trading, this versatile tool integrates two Triangular Moving Averages (
FREE
Cumulative Delta MT5
Evgeny Shevtsov
4.56 (61)
The indicator analyzes the volume scale and splits it into two components - seller volumes and buyer volumes, and also calculates the delta and cumulative delta. The indicator does not flicker or redraw, its calculation and plotting are performed fairly quickly, while using the data from the smaller (relative to the current) periods. The indicator operation modes can be switched using the Mode input variable: Buy - display only the buyer volumes. Sell - display only the seller volumes. BuySell -
FREE
Expansoes M
Marcus Vinicius Da Silva Miranda
The M Extensions are variations of the Golden Ratio (Fibonacci Sequence). It is the World's first technique developed for Candle Projections. Advantages: Easy to plot. Candle anchoring; High and accurate precision as support and resistance; Excellent Risk x Return ratio; Works in any timeframe; Works in any asset / market.   The M Extensions are classified into: M0: Zero point (starting candle) RC: Initial candle control region M1: Extension region 1 M2: Extension region 2 M3: Extension regi
FREE
MACD Enhanced
Nikita Berdnikov
5 (3)
Introducing the MACD  Enhanced – an advanced MACD (Moving Average Convergence Divergence) indicator that provides traders with extended capabilities for trend and momentum analysis in financial markets. The indicator uses the difference between the fast and slow exponential moving averages to determine momentum, direction, and strength of the trend, creating clear visual signals for potential entry and exit points. Attention! To achieve the best results, it is recommended to adapt the indicator
FREE
WAPV Box Effort x Result
Eduardo Da Costa Custodio Santos
MT5에 대한 WA_PV_BOX_EFFORT X 결과 WAPV 상자 노력 x 결과 표시기는 패키지 표시기 그룹(Wyckoff Academy Wave Market)의 일부입니다. MT5용 WAPV Box Effort x Result Indicator는 가격과 거래량을 읽는 데 도움이 됩니다. 그 판독은 노력 x 결과의 식별을 돕는 것으로 구성됩니다. 그래프에 의해 생성된 파동. 상자가 녹색일 때 MT5에 대한 WAPV 상자 노력 x 결과 표시기는 거래량이 수요에 유리하고 상자가 빨간색일 때를 의미합니다. 물량은 공급에 유리하다. 상자가 클수록 가격에 대한 부피의 변위가 커집니다. 가격의 상승파동이 Box의 크기에 비례하지 않는다면, 노력 x 결과. 매우 시각적인 방법으로 우리는 볼륨과 가격 사이의 이러한 차이를 식별할 수 있습니다. MT5용 WAPV Box 노력 x 결과 표시기를 사용하면 표시기를 0축 아래에 배치하여 시각화를 개선할 수도 있습니다. 틱 볼륨 및 실제 볼륨으로 시장에서
이 제품의 구매자들이 또한 구매함
SuperScalp Pro
Van Minh Nguyen
5 (9)
SuperScalp Pro – 고급 다중 필터 스캘핑 인디케이터 시스템 SuperScalp Pro는 클래식 Supertrend와 여러 지능형 확인 필터를 결합한 고급 스캘핑 인디케이터 시스템입니다. 해당 인디케이터는 M1부터 H4까지 모든 타임프레임에서 효율적으로 작동하며, 특히 XAUUSD, BTCUSD 및 주요 외환 통화쌍에 적합합니다. 독립형 시스템으로 사용하거나 기존 거래 전략에 유연하게 통합할 수 있습니다. 이 인디케이터는 11개 이상의 필터를 통합하며, 빠른/느린 EMA, 추세 판별용 3개의 EMA, EMA 기울기(EMA slope), RSI, ADX, 거래량(Volume), VWAP, 볼린저 밴드 돌파(Bollinger Bands Breakout) 및 MACD 다이버전스 필터 등을 포함합니다. 스마트 캔들 필터는 캔들 종가를 확인하여 약한 신호를 제거하고, 3 EMA와 MACD 다이버전스 필터를 결합한 추세 인식 메커니즘은 더 높은 승률의 신호를 선별하는 데 도움을 줍니
이 지표를 구매하면 제 프로페셔널 트레이드 매니저를 무료로 드립니다. 우선 이 거래 시스템이 리페인팅, 리드로잉 및 레이그 인디케이터가 아니라는 점을 강조하는 것이 중요합니다. 이는 수동 및 로봇 거래 모두에 이상적인 것으로 만듭니다. 온라인 강좌, 설명서 및 프리셋 다운로드. "스마트 트렌드 트레이딩 시스템 MT5"은 새로운 및 경험이 풍부한 트레이더를 위해 맞춤형으로 제작된 종합적인 거래 솔루션입니다. 10개 이상의 프리미엄 인디케이터를 결합하고 7개 이상의 견고한 거래 전략을 특징으로 하여 다양한 시장 조건에 대한 다목적 선택이 가능합니다. 트렌드 추종 전략: 효과적인 트렌드 추이를 타기 위한 정확한 진입 및 손절 관리를 제공합니다. 반전 전략: 잠재적인 트렌드 반전을 식별하여 트레이더가 범위 시장을 활용할 수 있게 합니다. 스캘핑 전략: 빠르고 정확한 데이 트레이딩 및 단기 거래를 위해 설계되었습니다. 안정성: 모든 인디케이터가 리페인팅, 리드로잉 및 레이그가 아니므로 신뢰
Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool developed based on Smart Money Concepts (SMC). It is designed to analyze market structure, price direction, reversal points, and key zones across multiple timeframes in a systematic way. The system displays Points of Interest (POI) and real-time No Repaint signals, with instant alerts when price reaches key zones or when signals occur within those zones. It functions as both an Indicator and a Signal System (2-in-1), c
Divergence Bomber
Ihor Otkydach
4.89 (83)
이 지표를 구매하신 분께는 다음과 같은 혜택이 무료로 제공됩니다: 각 거래를 자동으로 관리하고, 손절/익절 수준을 설정하며, 전략 규칙에 따라 거래를 종료하는 전용 도우미 툴 "Bomber Utility" 다양한 자산에 맞게 지표를 설정할 수 있는 셋업 파일(Set Files) "최소 위험", "균형 잡힌 위험", "관망 전략" 모드로 설정 가능한 Bomber Utility의 셋업 파일 이 전략을 빠르게 설치, 설정, 시작할 수 있도록 돕는 단계별 영상 매뉴얼 주의: 위의 모든 보너스를 받기 위해서는 MQL5 개인 메시지 시스템을 통해 판매자에게 연락해 주세요. 독창적인 커스텀 지표인 “Divergence Bomber(다이버전스 봄버)”를 소개합니다. 이 지표는 MACD 다이버전스(괴리) 전략을 기반으로 한 올인원(All-in-One) 거래 시스템입니다. 이 기술 지표의 주요 목적은 가격과 MACD 지표 간의 다이버전스를 감지하고, **향후 가격이 어느 방향으로 움직일지를 알려주는
FX Trend MT5 NG
Daniel Stein
5 (4)
FX Trend NG: 차세대 멀티 마켓 트렌드 인텔리전스 개요 FX Trend NG 는 다중 시간 프레임 기반의 전문 트렌드 분석 및 시장 모니터링 도구입니다. 몇 초 만에 전체 시장 구조를 파악할 수 있도록 설계되었습니다. 여러 차트를 일일이 전환할 필요 없이, 어떤 종목이 추세에 있는지, 어디에서 모멘텀이 약화되고 있는지, 그리고 어떤 시간 프레임이 서로 정렬되어 있는지 즉시 확인할 수 있습니다. 출시 기념 특별 혜택 – FX Trend NG 를 $30 (6개월) 또는 $80 평생 라이선스 로 이용할 수 있습니다. 이미 Stein Investments 고객이신가요? -> 메시지를 보내 전용 고객 그룹에 참여하세요. 설정이나 사용 방법이 필요하신가요? -> Stein Investments 공식 페이지 를 방문하세요. 1. FX Trend NG가 특별한 이유 3단계 추세 로직 – 단순한 Buy / Sell이 아닙니다 • 대부분의 지표는 Buy 또는 Sell 두 가지 상태만 제
ARICoins
Temirlan Kdyrkhan
ARICoin is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cust
Grabber System MT5
Ihor Otkydach
4.82 (22)
탁월한 기술적 지표인 Grabber를 소개합니다. 이 도구는 즉시 사용 가능한 “올인원(All-Inclusive)” 트레이딩 전략으로 작동합니다. 하나의 코드 안에 강력한 시장 기술 분석 도구, 매매 신호(화살표), 알림 기능, 푸시 알림이 통합되어 있습니다. 이 인디케이터를 구매하신 모든 분들께는 다음의 항목이 무료로 제공됩니다: Grabber 유틸리티: 오픈 포지션을 자동으로 관리하는 도구 단계별 영상 매뉴얼: 설치, 설정, 그리고 실제 거래 방법을 안내 맞춤형 세트 파일: 인디케이터를 빠르게 자동 설정하여 최고의 성과를 낼 수 있도록 도와줍니다 다른 전략은 이제 잊어버리세요! Grabber만이 여러분을 새로운 트레이딩의 정점으로 이끌어 줄 수 있습니다. Grabber 전략의 주요 특징: 거래 시간 프레임: M5부터 H4까지 거래 가능한 자산: 어떤 자산이든 사용 가능하지만, 제가 직접 테스트한 종목들을 추천드립니다 (GBPUSD, GBPCAD, GBPCHF, AUDCAD, AU
Trend Screener Pro MT5
STE S.S.COMPANY
4.84 (101)
트렌드 표시기, 트렌드 트레이딩 및 필터링을 위한 획기적인 고유 솔루션, 하나의 도구 안에 내장된 모든 중요한 트렌드 기능! Forex, 상품, 암호 화폐, 지수 및 주식과 같은 모든 기호/도구에 사용할 수 있는 100% 다시 칠하지 않는 다중 시간 프레임 및 다중 통화 표시기입니다. Trend Screener는 차트에 점이 있는 화살표 추세 신호를 제공하는 효율적인 지표 추세 추종 지표입니다. 추세 분석기 표시기에서 사용할 수 있는 기능: 1. 트렌드 스캐너. 2. 최대 이익 분석이 있는 추세선. 3. 추세 통화 강도 측정기. 4. 경고가 있는 추세 반전 점. 5. 경고가 있는 강력한 추세 점. 6. 추세 화살표 Trend Screener Indicator가 있는 일일 분석 예, 일일 신호 성능...등은 여기에서 찾을 수 있습니다. 여기를 클릭하십시오. LIMITED TIME OFFER : Trend Screener Indicator는 50$ 및 평생 동안만 사용할 수 있습니다.
Power Candles MT5
Daniel Stein
5 (6)
Power Candles – 모든 시장을 위한 강도 기반 진입 신호 Power Candles 는 Stein Investments의 검증된 강도 분석을 가격 차트에 직접 제공합니다. 가격 움직임에만 반응하는 대신, 각 캔들은 실제 시장 강도를 기준으로 색상화되어 모멘텀 형성, 강도 가속, 명확한 추세 전환을 즉시 파악할 수 있습니다. 모든 시장을 위한 단일 로직 Power Candles는 모든 거래 심볼 에서 자동으로 작동합니다. 현재 심볼이 Forex인지 비-Forex 시장인지 자동으로 감지하여 내부적으로 적절한 강도 모델을 적용합니다. Forex 및 Gold 는 FX Power Delta 값을 사용합니다 (절대값 범위 최대 100) 지수, 크립토 및 CFD 는 IX Power Strength 값을 사용합니다 (절대값 범위 최대 50) 필요한 강도 계산은 Power Candles에 완전히 내장되어 있습니다. 캔들 색상이나 신호 로직을 위해 추가 인디케이터는 필요하지 않습니다. 가격
AriX
Temirlan Kdyrkhan
1 (4)
AriX Indicator for MT5 A powerful trend-following and signal-evaluation tool AriX is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking with real-time stat
Quantum TrendPulse
Bogdan Ion Puscasu
5 (22)
SuperTrend   ,   RSI   ,   Stochastic   의 힘을 하나의 포괄적인 지표로 결합하여 트레이딩 잠재력을 극대화하는 궁극의 트레이딩 도구   인 Quantum TrendPulse를   소개합니다. 정밀성과 효율성을 추구하는 트레이더를 위해 설계된 이 지표는 시장 추세, 모멘텀 변화, 최적의 진입 및 종료 지점을 자신 있게 식별하는 데 도움이 됩니다. 주요 특징: SuperTrend 통합:   주요 시장 추세를 쉽게 따라가고 수익성의 물결을 타세요. RSI 정밀도:   매수 과다 및 매도 과다 수준을 감지하여 시장 반전 시점을 파악하는 데 적합하며 SuperTrend 필터로 사용 가능 확률적 정확도:   변동성이 큰 시장에서 숨겨진 기회를 찾기 위해 확률적 진동   을 활용하고 SuperTrend의 필터로 사용 다중 시간대 분석:   M5부터 H1 또는 H4까지 다양한 시간대에 걸쳐 시장을 최신 상태로 유지하세요. 맞춤형 알림:   맞춤형 거래 조건이 충족되면
Atomic Analyst MT5
Issam Kassas
4.03 (30)
우선적으로 언급할 점은이 거래 지표가 다시 그리지 않고 지연되지 않으며 이를 통해 수동 및 로봇 거래 모두에 이상적이라는 점입니다. 사용자 매뉴얼: 설정, 입력 및 전략. Atomic Analyst는 가격의 강도와 모멘텀을 활용하여 시장에서 더 나은 이점을 찾는 PA Price Action Indicator입니다. 고급 필터를 장착하여 잡음과 거짓 신호를 제거하고 거래 잠재력을 높이는 데 도움이 됩니다. 복잡한 지표의 다중 레이어를 사용하여 Atomic Analyst는 차트를 스캔하고 복잡한 수학적 계산을 간단한 신호와 색상으로 변환하여 초보 트레이더가 이해하고 일관된 거래 결정을 내릴 수 있도록합니다. "Atomic Analyst"는 새로운 및 경험이 풍부한 트레이더를위한 종합적인 거래 솔루션입니다. 프리미엄 지표와 최고 수준의 기능을 하나의 거래 전략에 결합하여 모든 종류의 트레이더에 대한 다재다능한 선택지가되었습니다. 인트라데이 거래 및 스캘핑 전략 : 빠르고 정확한 일일
Game Changer Indicator mt5
Vasiliy Strukov
4.8 (20)
Game Changer는 모든 금융 상품에 적용 가능한 혁신적인 추세 지표로, MetaTrader를 강력한 추세 분석 도구로 탈바꿈시켜 줍니다. 모든 시간대에서 작동하며 추세 식별, 잠재적 반전 신호 제공, 트레일링 스톱 기능, 그리고 신속한 시장 대응을 위한 실시간 알림 기능을 제공합니다. 숙련된 전문가든 이제 막 시작하는 초보자든, Game Changer는 추세의 역학을 명확하게 이해하고 자신감 있고 규율 있는 거래를 할 수 있도록 도와줍니다. 이 지표는 차트 재구성 기능을 지원합니다. 구매 후 즉시 연락 주시면 특별 보너스를 드립니다. Strong Support 및 Trend Scanner 지표를 무료로 제공해 드립니다. [email protected]으로 메시지를 보내주세요. 참고로, 저는 텔레그램에서 EA나 특별 세트를 판매하지 않습니다. 모든 EA는 MQL5에서만 사용 가능하며, 세트 파일은 제 블로그(여기)에서만 다운로드하실 수 있습니다. 사기꾼을 조심하시고 다른 사
소개       Quantum Breakout PRO   , 브레이크아웃 존 거래 방식을 변화시키는 획기적인 MQL5 지표! 13년 이상의 거래 경험을 가진 숙련된 트레이더 팀이 개발한       퀀텀 브레이크아웃 PRO       혁신적이고 역동적인 브레이크아웃 존 전략으로 거래 여정을 새로운 차원으로 끌어올리도록 설계되었습니다. Quantum Breakout Indicator는 5개의 이익 목표 영역이 있는 브레이크아웃 영역의 신호 화살표와 브레이크아웃 상자를 기반으로 한 손절 제안을 제공합니다. 초보자 거래자와 전문 거래자 모두에게 적합합니다. Quantum EA 채널:       여기를 클릭하세요 중요한! 구매 후 설치 매뉴얼을 받으려면 개인 메시지를 보내주십시오. 추천: 기간: M15 통화쌍: GBPJPY, EURJPY, USDJPY,NZDUSD, XAUUSD 계정 유형: 스프레드가 매우 낮은 ECN, Raw 또는 Razor 브로커 시간: GMT +3 중개인 :
Smart Stop Indicator – 차트 위에서 직접 작동하는 지능형 스톱로스 시스템 개요 Smart Stop Indicator는 감이나 추측이 아닌 명확하고 체계적인 방식으로 스톱로스를 설정하고 싶은 트레이더를 위한 맞춤형 솔루션입니다. 이 도구는 클래식 프라이스 액션 논리(고점, 저점 구조)와 현대적인 브레이크아웃 인식을 결합하여 실제로 가장 논리적인 다음 스톱 레벨을 정확히 식별합니다. 추세, 박스권, 빠른 브레이크아웃 상황 등 어떤 시장에서도 인디케이터는 최적의 SL 구역과 상태(“new”, “broken”, “valid”)를 차트에 직접 표시합니다. 새로운 기능으로 SL 거리의 %ADR 표시가 추가되었습니다. 핵심 기능 자동 시장구조 기반 스톱 설정 • 시장 구조와 실시간 가격 움직임을 기반으로 의미 있는 스톱로스 레벨을 자동으로 탐지합니다. 스마트 브레이크아웃 감지 • 빠른 방향 변화나 돌파 상황에서도 불필요한 조기 스톱 조정을 강요하지 않으며 유연하게 반응합
RFI levels PRO MT5
Roman Podpora
3.67 (3)
이 지표는 추세 반전 지점과 가격 반등 영역을 정확하게 보여줍니다.       주요 투자자들   . 새로운 트렌드가 형성되는 곳을 파악하고 최대한 정확하게 의사결정을 내리며 모든 거래를 완벽하게 통제합니다. TREND LINES PRO   지표와 함께 사용할 때 최대의 잠재력을 발휘합니다.  VERSION MT4 지표가 보여주는 내용: 새로운 추세의 시작 시 활성화되는 반전 구조 및 반전 수준. 최소한의 위험 대비 수익률을 갖는 이익 실현   (TAKE PROFIT)   및   손절매(STOP LOSS)   레벨 표시       RR 1:2   . 지능형 손실 감소 로직이 적용된 손절매 기능. 지정된 지표에서 두 가지 추세 유형에 대한 반전 패턴을 표시합니다. 지표: 트렌드를 따라   트렌드 라인 프로   (글로벌 트렌드 변화) 트렌드 프로   (빠른 트렌드 변화) 간단하고 효과적입니다       스캐너       실시간 추세 (신규). 다중 시간 프레임 도구 필터링. 표시하다  
Order Block Pro MT5
N'da Lemissa Kouame
Order Block Pro (MQL5) – 버전 1.0 작성자: KOUAME N'DA LEMISSA 플랫폼: MetaTrader 5 설명: Order Block Pro 는 차트에서 **강세 및 약세 오더 블록(Order Blocks)**을 자동으로 감지하는 고급 지표입니다. 횡보 캔들 이후 강한 상승/하락 캔들을 분석하여 가격이 급격히 움직일 가능성이 있는 주요 구간을 표시합니다. 트레이더에게 적합: 정확한 진입 및 청산 지점을 찾고 싶은 경우 동적 지지 및 저항 구간을 파악하고 싶은 경우 리스크 관리 및 거래 전략을 향상시키고 싶은 경우 주요 기능: 강세 OB 감지: 횡보 캔들 후 강한 상승이 발생하면 차트에 녹색 화살표 표시 약세 OB 감지: 횡보 캔들 후 강한 하락이 발생하면 차트에 빨간 화살표 표시 완전한 사용자 정의 가능: 횡보 캔들의 최대 실체 비율 ( BodyMaxRatio ) 다음 캔들의 최소 비율로 움직임 확인 ( NextCandleMinPct ) 차트 화살표
Trend Lines PRO MT5
Roman Podpora
5 (1)
트렌드 라인즈 프로       이 지표는 시장이 실제로 어떤 방향으로 전환되는지 파악하는 데 도움이 됩니다. 실제 추세 반전 지점과 주요 시장 참여자들이 다시 진입하는 지점을 보여줍니다. 보시다시피       BOS 라인       복잡한 설정이나 불필요한 노이즈 없이 더 높은 시간대의 추세 변화와 주요 레벨을 확인할 수 있습니다. 신호는 차트에 다시 그려지지 않고 캔들이 마감된 후에도 계속 표시됩니다. MT4 버전   -   RFI LEVELS PRO   표시기   와 결합 시 최대 잠재력을 발휘합니다. 지표가 보여주는 내용: 실제 변화       추세(BOS 라인) 한 번 신호가 나타나면 그 신호는 계속 유효합니다! 이는 신호를 발생시킨 후 변경될 수 있는 리페인팅 방식의 지표와 중요한 차이점입니다. 리페인팅 방식의 지표는 잠재적으로 자금 손실로 이어질 수 있습니다. 이제 더욱 높은 확률과 정확도로 시장에 진입할 수 있습니다. 또한 화살표가 나타난 후 목표가(익절)에 도달하거나
Entry Points Pro for MT5
Yury Orlov
4.48 (138)
다시 색을 칠하지 않고 거래에 진입할 수 있는 정확한 신호를 제공하는 MT5용 지표입니다. 외환, 암호화폐, 금속, 주식, 지수 등 모든 금융 자산에 적용할 수 있습니다. 매우 정확한 추정값을 제공하고 매수와 매도의 가장 좋은 시점을 알려줍니다. 하나의 시그널로 수익을 내는 지표의 예와 함께 비디오 (6:22)시청하십시오! 대부분의 거래자는 Entry Points Pro 지표의 도움으로 첫 거래 주 동안 트레이딩 결과를 개선합니다. 저희의   Telegram Group 을 구독하세요! Entry Points Pro 지표의 좋은점. 재도색이 없는 진입 신호 신호가 나타나고 확인되면(시그널 캔들이 완성된 경우) 신호는 더 이상 사라지지 않습니다. 여타 보조지표의 경우 신호를 표시한 다음 제거되기 때문에 큰 재정적 손실로 이어집니다. 오류 없는 거래 게시 알고리즘을 통해 트레이드(진입 또는 청산)를 할 이상적인 순간을 찾을 수 있으며, 이를 통해 이를 사용하는 모든 거래자의 성공률이
ARIPoint
Temirlan Kdyrkhan
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
FX Power MT5 NG
Daniel Stein
5 (31)
FX Power: 통화 강세 분석으로 더 스마트한 거래 결정을 개요 FX Power 는 어떤 시장 상황에서도 주요 통화와 금의 실제 강세를 이해하기 위한 필수 도구입니다. 강한 통화를 매수하고 약한 통화를 매도함으로써 FX Power 는 거래 결정을 단순화하고 높은 확률의 기회를 발견합니다. 트렌드를 따르거나 극단적인 델타 값을 사용해 반전을 예측하고자 한다면, 이 도구는 귀하의 거래 스타일에 완벽히 적응합니다. 단순히 거래하지 말고, FX Power 로 더 스마트하게 거래하세요. 1. FX Power가 거래자에게 매우 유용한 이유 통화와 금의 실시간 강세 분석 • FX Power 는 주요 통화와 금의 상대적 강세를 계산하고 표시하여 시장 역학에 대한 명확한 통찰력을 제공합니다. • 어떤 자산이 앞서고 있고 어떤 자산이 뒤처지는지 모니터링하여 보다 현명한 거래 결정을 내릴 수 있습니다. 포괄적인 멀티 타임프레임 뷰 • 단기, 중기 및 장기 타임프레임에서 통화와 금의 강세를
Market Flow Pro
Gabriele Sabatino
4 (1)
Market Flow Pro Market Flow Pro is an intelligent trading advisor for the MetaTrader 5 platform, designed for automatic trading on financial markets using algorithmic analysis and strict risk management. -Key features: - Fully automatic trading 24/5 - Adaptive trend and momentum entry algorithm -  Built-in risk management - Flexible lot settings (fixed/auto-calculation) - Support for major currency pairs and indices - Optimised for operation on various timeframes  How it works Market
Easy SMC Trading
Israr Hussain Shah
4 (1)
자동 위험 관리 및 구조 돌파 스캐너를 포함한 구조 추세 분석 버전: 1.0 개요 자동 위험 관리 기능을 갖춘 구조 추세 분석은 가격 움직임과 시장 구조에 의존하는 트레이더를 위해 설계된 종합적인 트레이딩 시스템입니다. 부드러운 추세 필터와 스윙 포인트 감지, 구조 돌파(BOS) 신호를 결합하여 높은 확률의 거래 설정을 생성합니다. 이 도구의 가장 두드러진 특징은 자동 위험 관리 기능입니다. 유효한 구조 돌파가 감지되면 지표는 즉시 위험/보상 영역(1:1, 1:2, 1:3)을 계산하고 표시하며, 가격이 목표에 도달할 때 거래 시각화를 자동으로 관리합니다. 수동으로 차트를 그릴 필요가 없어 트레이더는 실행에만 집중할 수 있습니다. 주요 기능 동적 구조 돌파(BOS) 감지 스윙 고점(HH/LH)과 스윙 저점(HL/LL)을 자동으로 식별합니다. 가격이 주요 구조적 레벨을 돌파할 때 차트에 BOS 라인을 직접 표시하여 추세 방향을 확인합니다. 구조적 핵심 지점을 명확한 텍스트
Azimuth Pro
Ottaviano De Cicco
5 (4)
LAUNCH PROMO Azimuth Pro price is initially set at 299$ for the first 100 buyers. Final price will be 499$ . THE DIFFERENCE BETWEEN RETAIL AND INSTITUTIONAL ENTRIES ISN'T THE INDICATOR — IT'S THE LOCATION. Most traders enter at arbitrary price levels, chasing momentum or reacting to lagging signals. Institutions wait for price to reach structured levels where supply and demand actually shift. Azimuth Pro maps these levels automatically: swing-anchored VWAP, multi-timeframe structure lines, an
Stratos Pali mt5
Michela Russo
4.5 (8)
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 ! Down
FX Dynamic MT5
Daniel Stein
5 (5)
FX Dynamic: 맞춤형 ATR 분석으로 변동성과 트렌드를 파악하세요 개요 FX Dynamic 는 Average True Range(ATR) 계산을 활용하여 트레이더에게 일간 및 일중 변동성에 대한 뛰어난 인사이트를 제공하는 강력한 도구입니다. 80%, 100%, 130%와 같은 명확한 변동성 임계값을 설정함으로써 시장이 평소 범위를 초과할 때 빠르게 경고를 받고, 유망한 수익 기회를 재빨리 식별할 수 있습니다. FX Dynamic 는 브로커의 시간대를 인식하거나 수동으로 조정할 수 있으며, 변동성 측정 기준을 일관되게 유지하며, MetaTrader 플랫폼과 완벽하게 연동되어 실시간 분석을 지원합니다. 1. FX Dynamic이 트레이더에게 매우 유용한 이유 실시간 ATR 인사이트 • 하루 및 일중 변동성을 한눈에 모니터링하세요. ATR의 80%, 100%, 130% 임계값이 도달 또는 초과되면, 시장의 중요한 지점에 있음을 알 수 있습니다. • 변동성이 완전히 폭발하기
Market Structure Order Block Dashboard MT5 는 MetaTrader 5용 MT5 인디케이터 로, 시장 구조 및 ICT / Smart Money Concepts에 기반합니다: HH/HL/LH/LL , BOS , ChoCH 뿐 아니라 Order Blocks , Fair Value Gaps (FVG) , 유동성 (EQH/EQL, sweeps), 세션 / Kill Zones , 그리고 Volume Profile 을 통합하여 콤팩트한 컨플루언스 대시보드를 제공합니다. 중요: 본 제품은 분석 도구 입니다. 자동 매매를 실행하지 않습니다( EA가 아님 ). 구매자 보너스 구매 후 제 스토어에서 보너스 인디케이터 2개 를 (선택하여) 무료로 받을 수 있습니다. 보너스 수령 방법: 1) 본 제품에 대한 솔직한 리뷰를 남겨주세요. 2) MQL5 메시지로 BONUS MSOB + 선택한 인디케이터 2개 이름 을 보내주세요. 주요 기능 시장 구조: HH/HL/LH/LL
Trend Forecaster
Alexey Minkov
5 (7)
The Trend Forecaster indicator utilizes a unique proprietary algorithm to determine entry points for a breakout trading strategy. The indicator identifies price clusters, analyzes price movement near levels, and provides a signal when the price breaks through a level. The Trend Forecaster indicator is suitable for all financial assets, including currencies (Forex), metals, stocks, indices, and cryptocurrencies. You can also adjust the indicator to work on any time frames, although it is recommen
FX Levels MT5
Daniel Stein
5 (13)
FX Levels: 모든 시장을 위한 뛰어난 정확도의 지지와 저항 간단 요약 통화쌍, 지수, 주식, 원자재 등 어떤 시장이든 믿을 만한 지지·저항 레벨을 찾고 싶나요? FX Levels 는 전통적인 “Lighthouse” 기법과 첨단 동적 접근을 결합해, 거의 보편적인 정확성을 제공합니다. 실제 브로커 경험을 반영하고, 자동화된 일별 업데이트와 실시간 업데이트를 결합함으로써 FX Levels 는 가격 반전 포인트를 파악하고, 수익 목표를 설정하며, 자신 있게 트레이드를 관리할 수 있게 돕습니다. 지금 바로 시도해 보세요—정교한 지지/저항 분석이 어떻게 여러분의 트레이딩을 한 단계 끌어올릴 수 있는지 직접 확인하세요! 1. FX Levels가 트레이더에게 매우 유용한 이유 뛰어난 정확도의 지지·저항 존 • FX Levels 는 다양한 브로커 환경에서도 거의 동일한 존을 생성하도록 설계되어, 데이터 피드나 시간 설정 차이로 인한 불일치를 해소합니다. • 즉, 어떤 브로커를 사용하
Ultimate SMC Indicator
Hicham Mahmoud Almoustafa
1 (1)
Ultimate SMC PRO – Smart Money Concepts Indicator (Order Blocks, FVG, Liquidity, BOS) for MetaTrader 5   After purchasing the product, you will receive an additional copy for free. Just contact me after your purchase. Ultimate SMC PRO is a professional trading indicator designed to visualize Smart Money Concepts directly on the chart. The indicator combines several institutional trading tools in one system to help traders identify potential high-probability trading zones. ULTIMATE SMC INDICATO
제작자의 제품 더 보기
White Weis Volume Ticks
Ricardo Almeida Branco
5 (4)
White Weis Volume This indicator shows the sum of the volume in each wave, bulish or bearish, as idealized by David Weis , but it brings an important addition , which is the marking of the bar with the highest volume of the wave (White Bar)! In coding the indicator, it was sought to optimize the code to require minimal processing during use and not to overload mt5. The indicator can be used for pre-trading analysis and study, where the trader analyzes possible points of support and resistance
Display N Bars
Ricardo Almeida Branco
4.88 (8)
The Display N Bars utility is a simple tool designed to help identify candles. If a trader tries to share knowledge with a colleague but it is difficult to pinpoint exactly the desired candle, just say the corresponding candle number. The candle count is reset every day. Seeking to offer a good customization the inputs are: Display type -> Display only odd, only odd, or both candles? Direction -> Horizontal or Vertical? Display multiples of: (display frequency) -> Display all number
FREE
Start Vwap Custom Midas
Ricardo Almeida Branco
5 (3)
Attention: New update - 4 major practicality improvements! 1) Alarm 2) Midas text value 3) Click panel 4) Can be connected to an EA to operate in semi-automatic mode Attention - This indicator does not work perfectly in backtest due to MT5 peculiarities (Reading hotkeys or panel clicks) . My suggestion is that you test Automatic Vwap Midas which has automatic operation to analyze the calculation and then buy Start if you think the indicator will match your operating.     This indicator is use
White Trader Clock
Ricardo Almeida Branco
5 (1)
Simple countdown indicator for the next candle. Only claim is to be light! The indicator inserts a text object to the right of the current price and calculates how much time is left for the new bar, showing this to the trader. Leave your comment if the indicator helped you in any way! If you have any suggestions, let me know to evaluate the improvements. Success and Good Trades!
FREE
Volume Doji
Ricardo Almeida Branco
Hey guys. This indicator will show you, in the volume histogram, if the candle was a Doji, a bullish candle, or a bearish candle. The construction of this indicator was requested by a trader who uses other indicators from my catalog, and I decided to release it free to help traders who think that the indicator can contribute to their operations. The parameters are: Volume Type: Real Volume or Tick Volume. Color if the candle is bearish: select the color. Color if the candle is high: select
FREE
Automatic Vwap Midas
Ricardo Almeida Branco
5 (1)
The 3 Automatic Vwap (Midas) Indicator can be used for Price and Volume studyers to map the movement of market drivers. It automatically plots 3 Vwaps, two of which are dynamic and will be updated throughout the day if new highs or new lows emerge. The third Vwap is daily and can help if the trend is up or down. Also, an auxiliary indicator that plots (also dynamic) points of interest with OHLC prices (Open, High and Low of the current day and Close of the previous day) was inserted. Success and
O HL2 C Lines
Ricardo Almeida Branco
5 (2)
If you consider the extremes of the daily price as important points, this indicator will help in your trades. Now, instead of manually drawing lines that mark daily highs and lows, you can use the O (HL) ² C Lines indicator. Thus, the OHLC Lines indicator automatically plots the lines O (Open for the current day), H (High for the current day), L (Low for the current day) and C (Close for the previous day). Plot also the high and low of the previous day. Thus, we have 4 static lines and tw
PVA Dragon
Ricardo Almeida Branco
Users of PVRSA / PVA certainly already know the Dragon indicator and its use. The Dragon works as dynamic support and resistance and can be used for scalper or trend follower. In addition to the Dragon we have the WGT (fast) and EMA (slow) averages that can show immediate movement and also trend movement. Stay tuned for the Dragon's inclination! The indicator can be used on any asset/currency pair and can be customized according to the trader's interest. See also my volume analysis indicato
PVA Color Candle
Ricardo Almeida Branco
Several techniques use volume as an important point in the trade. Whether to indicate strength, exhaustion, pullback weakness, among others. In chief I quote Richard Wyckoff's theory, which said about the importance of looking price and volume. However, there are several possibilities to filter what is volume that should be noticed. PVRSA/PVA users use an indicator with specific colors, which assist in identifying the volume and type of movement that the price has made. Will the high volume
PVA Color Volume Histograma
Ricardo Almeida Branco
Several techniques use volume as an important point in the trade. Whether to indicate strength, exhaustion, pullback weakness, among others. In chief I quote Richard Wyckoff's theory, which said about the importance of looking price and volume. However, there are several possibilities to filter what is volume that should be noticed. PVRSA/PVA users use an indicator with specific colors, which assist in identifying the volume and type of movement that the price has made. Will the high volume
Color Histogram Volume Set
Ricardo Almeida Branco
Do you use volume in your reading of the market? Certainly many traders use it, and do not imagine operating without it. The Color Histogram Volume Set indicator allows the user to choose the value that he considers interesting to monitor. When you pass this you will have visual confirmation and if you want you will also have the audible alert that is given by the indicator. Of course, there are other ways to try to find a high volume, such as assessing whether the volume is above av
Color Candle Volume Set
Ricardo Almeida Branco
Do you use volume in your reading of the market? Certainly many traders use it, and do not imagine operating without it. The Color Candle Volume Set indicator allows the user to choose the value that he considers interesting to monitor. When you pass this you will have visual confirmation on the price chart and if you want you will also have the audible alert that is given by the indicator. Of course, there are other ways to try to find a high volume, such as assessing whether the vol
WT Vwap Bands
Ricardo Almeida Branco
The WT Vwap Bands indicator is an indicator that combines price and volume, helping to show whether the price is within the "fair price", overbought or oversold. The indicator code was designed for performance and has already been tested in a real trading account. In addition to the visual inputs (color, thickness and line style), the user can define a% value that depends on the price. The default values work with the most distant band at 1% of the price and then dividing this distance in
Fibo Z
Ricardo Almeida Branco
5 (1)
With it, you leave pre-configured two expansion settings and one fibo retraction configuration to use via keyboard shortcut and mouse click. That is, the Fibo_Z utility facilitates the use of MT5's native functions. The shortcut keys are: "Z" configuration 1 of the expansion. "X" expansion setting 2 "Z" retraction configuration. "V" clears objects from the screen. It is. Success and good trades!
Color HLC Bars and Candles
Ricardo Almeida Branco
Want to make the graph cleaner? Don't you use the opening price in your analysis? Want to use a chart model that was used by Richard Wyckoff? Then you need to know the Color HLC Candles and Bars indicator. In the same indicator you can switch to the display of candles or bars. Take a look at the other volume indicators to complement your operating. And don't forget to look at the best Vwap Custom (Midas)! Leave your comment! Success and good trades!
Vwap Freeze
Ricardo Almeida Branco
5 (1)
The previous day's vwap is used by some traders as a support and resistance point, after all it is one of the ways to consider the fair price of that asset or that pair the day before. Possible defenses can occur in this region indicating a reversal, or triggering stops starting a new, more directional movement. It is a matter of analyzing how it will add to your operational. To avoid manually drawing the previous day's vwaps and saving time for your analysis, use the Vwap Freeze indicator, as
Start Display N Bars
Ricardo Almeida Branco
5 (1)
Do you already know Display N Bars? Do you already know the Start tool (from Midas indicators)? In this indicator, we unified the two tools, allowing you to define which candle will start counting, or use the automatic numbering that was already available in the previous version. Description of the utility follows: Display N Bars The Display N Bars utility is a simple tool that aims to help identify candles. If a trader tries to share the knowledge with a colleague but it is difficult t
WT Vwap 5 Bands
Ricardo Almeida Branco
WT Vwap 5 Bands The WT Vwap Bands indicator is an indicator that combines price and volume, helping to show whether the price is within the "fair price", overbought or oversold. The indicator code was designed for performance and has already been tested in a real trading account. In addition to the visual inputs (color, thickness and line style), the user can define a% value that depends on the price. The default values work with the most distant band at 1% of the price and then dividing
WT Candle Color by Volume
Ricardo Almeida Branco
The White's Candle Color indicator (by volume) will color the candles based on the current candle's volume compared to the moving average of the volume. This will allow you to see clearly if the volume (real or tick) is within the normal range, whether it is high or low and bring very important information about the market. I hope that this indicator can help in your operational. Success and good trades!
Haos MT5
Ricardo Almeida Branco
5 (1)
The Haos oscillator coded for the MT5! This oscillator allows to verify overbought / oversold regions in two periods (14 and 96, for example), making it possible to anticipate a reversal. Possibility to activate an audible alert when it reaches a defined level. Possibility to choose the alert sound by placing a .wav song in each asset or timeframe. (save a .wav file to the MQL5 \ Files folder) Possibility to activate / deactivate histogram and levels to make the screen cleaner. Customizable col
Initial Balance MT5
Ricardo Almeida Branco
The Initial Balance (Initial Balance / Initial Balance) is a concept related to the study of volume (to learn more, study about Market Profile and Auction Market Theory. You can find some videos in English when searching for "Initial Balance Market Profile"). The IB defines a range in which prices were negotiated in the first hour of trading.The amplitude of the range is important and the break in the range defined by the Initial Balance may have occurred due to the movement of several players
VTC Volatility
Ricardo Almeida Branco
The VTC Volatility indicator was written to support a Brazilian stock market strategy in the WDO (USDBRL), but it can be adapted to other strategies and markets. In the new indicator update, it is now allowed to choose up to 4 levels to determine the range, and thus be more versatile. The Brazilian stock exchange (B3) has the VTC which is a "Structured Exchange Rate Volatility Transaction" (more information on the B3 website). At around 10:00 am, the VTC "Call" comes out and Brazilian broker
Vwap Standard Deviation
Ricardo Almeida Branco
O indicador Vwap Deviation Bands segue na mesma linha dos outros indicadores da White Trader, que buscam leveza, personalização e qualidade, para entregar o que há de melhor para o trader. Isto, além de combinar preço e volume (informações importantes para o trader) com uma medida estatística do desvio padrão. Este indicador já foi utilizado e testado por outros traders que deram sugestões, inclusive, para chegarmos nesta versão final (embora ainda esteja aceitando sugestões, sempre :)   ). O de
Midas is the acronym for Market Interpretation / Data Analysis System is a trade approach started in 1995 by technical analyst Paul Levine and later developed by Andrew Coles, PhD and David Hawkins. Learn more in the book MIDAS Technical Analysis: A VWAP Approach to Trading and Investing in Today's Markets , (I saw that it is possible buy via Amazon). The positive points in relation to the Midas-based indicators are the prediction of movement reversal points, the negative point is the subjectivi
Vwap Bands Auto
Ricardo Almeida Branco
The Vwap Bands Auto indicator seeks to automatically map the maximum market frequency ( automatic update of the outermost band ) and has two intermediate bands that also adjust to daily volatility. Another tool from White Trader that combines price and volume, in addition to mapping the daily amplitude. The external band is updated automatically when the daily maximum or minimum breaks the current frequency, and can be an input signal, seeking a return to the daily vwap. Thus, in addition t
Start Midas SD Channel
Ricardo Almeida Branco
5 (1)
Do you already know the Start Midas indicator? What about the Vwap Standard Deviation indicator? And I need to speak again in the book MIDAS Technical Analysis ... The Start Midas SD Channel indicator combines the two in one, bringing the practicality and efficiency of Midas with the statistical calculation of the standard deviation. All of this with the practicality of the White Trader Start indicators, where you can plot the indicator and move them on the screen using keyboard shortcuts
Start Midas Fibo Bands
Ricardo Almeida Branco
Here we have the Start Midas Fibo Bands , I confess that it is an indicator that excited me enough to operate because I was able to find more defined rules. Well, the indicator has the functions of the other indicators of the Start line , which is a possibility to plot several Midas on the screen, you can move the anchor point using keyboard shortcuts and use the legend to differentiate one anchor from another. The rules that I have analyzed for my possible setup are recommended to the entry, st
Prior Lines
Ricardo Almeida Branco
This indicator shows on the current day some lines of interest, such as maximum, minimum and closing of the previous day, as well as the opening, maximum and minimum price of the current day. It can also show the GAP (closing of the previous day and opening of the current day) and projections of the amplitude of the previous day, according to the value you choose in the multiplier. Oh, I was going to forget. It is also possible to determine the time frame, which is daily by default. If this i
Auto Zig HTF Vwap Midas
Ricardo Almeida Branco
5 (1)
The best Vwap Midas coding for Metatrader 5 you can find in White Trader indicators. The indicator has been optimized not to recalculate (improving performance) and has several visual settings for you to adapt in your own way. TRY IT FOR FREE by clicking the free demo button Where and why to use Vwap Midas (and Auto Zig Vwap Midas) can be used on a variety of indices, currencies, forex, cryptocurrencies, stocks, indices and commodities. Many successful traders use price and volume to get the
Danko Trend Color
Ricardo Almeida Branco
The Danko Trend Color indicator is actually a candle coloring to bring practicality, ease and information to your charts. Danko Trend Color combines PRICE AND VOLUME indicators to define the prevailing trend, so the colors are: Blue (indicates an uptrend) Orange (indicates a downtrend) White (indicates undefined trend) I don't like to promise anything with my indicators, I ask you to download, test it for free (for use in backtesting) and see if the indicator can, in some way, help your oper
필터:
리뷰 없음
리뷰 답변