TradeXray TrendAutoLines

TradeXray TrendAutoLines

What it does. It draws trend lines from one fixed geometric rule, and it never moves a line after that line has been drawn.

What it does not do. It does not tell you when to buy or when to sell, and it does not claim that these lines have any statistical edge. We have not measured one, so we do not say that one exists.

What has been checked. The no-repaint behaviour is not just a sentence in this description. It is checked by an automated verification harness, and the harness reports zero mismatches. The central check is that placing the as-of axis at a past time T produces exactly the same picture as physically cutting the data at T.

Why this description has no numbers in it

This description contains no win rate, no profit figures and no backtest results. That is not a formality. We have not tested whether these lines have any predictive value, so there is nothing to report. What is offered here is a drawing rule that is written down in full, and a machine check that the tool follows that rule.

The drawing rule

Pivots are 5-bar fractals: the middle bar is higher than the two bars on each side, or lower than the two bars on each side. The half-width is an input, so 5 bars is the default and not a fixed constant.

Inside a scan window the indicator takes the high of the interval and the low of the interval. If the high comes first, the leg is a down leg from that high A to that low B. If the low comes first, the leg is an up leg.

For a down leg, the three lines are the first three edges of the upper convex hull walked from A. In plain words: start horizontal at A, rotate downward, and draw to the first high you hit. From that point, rotate again. Then once more. That is the outer, middle and inner line. For an up leg the same procedure runs on the lower hull, mirrored.

Three lines per set, and no more. If you want finer structure, move to a lower timeframe. The outer line always has a smaller slope than the middle line, and the middle line a smaller slope than the inner line. That ordering is a property of the hull, not a setting.

Anchors can be taken from wicks or from bodies. The default is wicks, that is highs and lows. Setting the anchor price to bodies uses opens and closes instead, for pivots, for the hull and for the state tests alike. Which of the two is the correct reading of the method is not something we have settled, so both are offered and neither is presented as the right one.

What no repaint means here, and how it is checked

A line is anchored to two bars at the moment the set is created, and those two anchors are frozen. The indicator never rewrites them. New market highs and lows add new sets; they do not edit old ones.

Three things make this possible. The forming bar is never used. A pivot does not exist until the bars to the right of it have closed. And by default the indicator waits for an opposite confirmed pivot after B before it draws anything at all.

The verification harness runs the same drawing logic outside the terminal over synthetic series and random walks, and checks, at every bar of every series:

- Truncation invariance: the result from an array physically cut to t bars equals the result from the full array reproduced at t. Zero mismatches.
- Monotone addition: sets already recorded are never rewritten, only appended to. Zero violations.
- Edge invariance: the three edges of a recorded set never change afterwards. Zero mismatches.
- As-of invariance: placing the axis at a past time T equals cutting the data at T. Zero mismatches, across both hull modes, both anchor modes, both anchor prices, and with the freeze option on and off.

Please read that claim narrowly, because we state it narrowly. The harness is a port of the same drawing logic into another language. It is not a second, independently designed implementation, and we do not present it as one. What makes the check worth running is the kind of thing it tests: these are mathematical properties of the output, such as invariance under truncation, that logic which looks ahead cannot satisfy. A port of a rule that peeked at future bars would fail these checks, not pass them by family resemblance.

It is a check of the drawing logic, run outside MetaTrader. It is not a statement about market behaviour, and it is not a statement that the lines are useful.

One honest consequence. Lines do not move, but that is not the same as the screen never changing. When price makes a new high or low, a new set is added, and old sets drop off the chart once the display limits are reached. The old lines were not moved; they were retired.

The as-of axis, and the two handles

A vertical line on the chart is the as-of axis. Drag it to the left and the whole chart is redrawn as it stood at that time: the same sets, the same states, the same labels, using nothing that happened afterwards. A second vertical line sets the left edge of the scan range.

Each of the two lines carries a handle, and the handle reads out the value that line controls:

LINES :: AXIS 08.11 21:45 LINES :: RANGE 214

The word in front is a short tag for the indicator the tab belongs to. If a second indicator on the same chart also draws an as-of tab, the tag is how you tell the two apart at a glance.

The handle is one small tab, not a cluster of parts. It is laid out in screen pixels rather than on the price grid, so it keeps the same size and the same shape at every zoom level. It is filled with the same colour as the panel, and the readout is drawn on that fill. A two pixel strip down its left edge carries the colour of the line the tab belongs to, and that strip is how the two tabs are told apart at a glance.

Press the left mouse button anywhere on the tab and drag. The line follows at once. There is no step before that one: you do not select the tab first, you do not double click it, and you do not have to find a smaller target inside it. The indicator does its own hit testing against the rectangle it drew, so the area that responds is the tab you can see, plus a three pixel margin around it.

Three things follow from doing it that way, and they are the reason it is done that way.

- The tab is not a selectable chart object, so MetaTrader never puts selection marks on it.
- The tab has no drag points. It cannot be stretched, tilted or resized by catching it near an edge, so there is no misshapen state to recover from.
- While you hold the tab, horizontal chart scrolling is suspended, so the chart does not slide out from under the cursor while you drag. The indicator reads your existing setting before it changes it and writes that same value back when you let go. It is also written back if the release is missed, on the next click anywhere, on the next object drag, and when the indicator is removed.

Picking the tab up requires the button to go down while the pointer is already on it. Coming onto the tab with the button already held, part way through some other drag, does not hand that drag over.

If a tab would come to rest on top of the panel, it steps below the panel, and only then. When the two are clear of each other the tab does not move at all.

Tabs are placed in lanes. A lane is a row of screen height, and the lane number is an input. Two indicators that both draw an as-of tab are put in different lanes, so the tabs sit one above the other instead of covering each other. With one indicator on the chart the default lane leaves the tab exactly where it would otherwise be.

A tab can also be dragged up and down. Where you drop it is where it stays: the lane offset and the panel dodge are both skipped from then on, because both of those are guesses made before you had looked at the chart. A tab cannot be dropped off the edge, so it can always be picked up again. Moving a tab up or down changes nothing except where the tab is drawn. The height is not kept when the timeframe changes or the indicator is reloaded; it starts again from InpHandleYPct.

By default the vertical lines cannot be picked with the mouse. Clicking one does nothing, so a line cannot be caught by accident while you are drawing on the chart, and moving the axis by accident changes every line the tool draws. The tab and the panel are how the axis is moved. Setting InpAsOfLineSelectable to true restores the ordinary way of moving a chart object: select the line, then drag it. MetaTrader draws small selection marks on a selected object, and InpAsOfKeepSelected keeps the lines selected so that first click is not needed. That input only has an effect while the lines can be selected at all. Marks never appear on the tabs.

The two vertical lines can be drawn in four ways, and the setting exists because we do not know which one you will prefer on your own chart. THIN is the default: each line is drawn as a one pixel line mixed into the chart background, so they are still there but stop competing with the candles. FULL is the lines as described above, the way this indicator drew them before the modes were added. BOTH keeps those faint lines and adds three short tick marks to each one, at the top edge, the middle and the bottom edge of the window. TICKS mixes the lines all the way into the background and leaves only the marks. MetaTrader has no transparency for a vertical line, so faint is made by mixing the line colour into the chart background colour; how far it is mixed is an input. The marks are not faded, so each one keeps the colour of its own line and the axis is still told apart from the range. There are always exactly three marks per line, whatever the chart holds: the count is fixed in the code and does not grow with the number of bars. In every mode, TICKS included, both line objects are still there carrying their times, so a mode is a change in what you see and not in how the axis is dragged or what is drawn from it.

Moving the axis carries the range line with it, so the number of bars between the two lines does not change. The axis answers when you are looking from; the range answers how far back you are looking, and it is moved on its own when you want to change that. Where the range line reaches the oldest bar on the chart it stops there, the axis keeps moving, and the count on the panel follows the distance that is actually left, so the change is visible rather than silent. Moving the axis back to the right opens the range out again to the number you asked for.

This is the same mechanism as the truncation check described above, exposed as a control. It exists to make the tool inspectable, not to prove anything about the market.

The panel

A small flat panel sits in one corner of the chart. It is built from plain rectangles and labels rather than from platform buttons, so it has no bevels and no 3D styling.

It has three rows:

- The as-of time and a marker reading LIVE or PAST.
- The axis row: a button back to live.
- The range row: the range currently in effect, and a button that resets the range to the value in the inputs.

The steps of minus fifty, minus ten, plus ten and plus fifty bars are off by default. With them off the two rows fold into one and the panel is two rows tall rather than three. Switching InpShowAsOfSteps on brings the eight keys back and the panel returns to its earlier shape. The key that resets the range stays either way: with the steps off, the range is changed by dragging the range line, which lands on values such as 214, and that key is the way back to a round number. Its caption is the value in the inputs, so it doubles as a readout of the configured range.

The time on the panel and the time on the axis handle are always the same bar, and it is the bar the tool actually computed from. While the axis is live that is the last closed bar, not the bar still forming, even though the vertical line itself is parked on the forming bar. Anything that speaks in numbers names the bar the numbers came from.

The panel measures its own text before it lays itself out, and widens if a value does not fit, so nothing overlaps at any display scaling. It can sit in any of the four corners, and it keeps the margin you set from whichever corner you choose. The corner, the margins and its two fonts are inputs. It can be switched off entirely, in which case the indicator is always live and draws no control objects at all.

What it writes to the log

Two lines when it starts. The first says that the statistical edge of these lines has not been verified. The second is a one-line summary of the settings actually in force: symbol, timeframes, fractal width, window, anchor mode, hull end, line count, set quotas, anchor price, freeze, whether the controls are on, and which of the four line modes is in use, followed by a one-clause hint that THIN and BOTH make the two vertical lines less intrusive.

That is all, by default. The long-form explanation of each setting, several paragraphs of it, is still there but is printed only when InpDebugEvents is turned on. Nothing was deleted; it was moved behind a switch, because a log that fills up with an indicator explaining itself is a log you stop reading. The first line is not behind the switch and never will be.

Line states, and how to read the colours

Each line carries a short label, for example D OUT T2 (down leg, outer line, touched twice) or D MID BRK T0 (down leg, middle line, broken).

Touches and breaks are judged on closes against an ATR-scaled tolerance, so a wick that pierces a line without a close beyond it is not counted. Both thresholds are inputs. They are working defaults, not calibrated values.

Four things are encoded, and each one has its own channel, so no channel carries two meanings:

- Which of the three lines it is: colour. Outer is a muted yellow, middle a muted red, inner a muted blue.
- Whether the line has been broken: line style. Solid means intact, dashed means broken. Broken lines get no colour of their own.
- Whether the set is the newest one: brightness. Older sets are drawn in a darker version of the same three colours.
- Which timeframe it came from: thickness. Higher timeframes are drawn thicker.

All six colours are inputs, and the fading of older sets can be switched off.

Timeframes

Up to three timeframes can be drawn on one chart. By default only the chart timeframe is used. Higher timeframe bars are used only after they have closed, and closure is judged against the chart's own last closed bar rather than against the terminal clock, so the behaviour is the same in the strategy tester as it is live. Higher timeframe lines are drawn thicker and their labels carry the timeframe.

The scan window is counted in bars of the timeframe being processed, not converted. On H4, 120 bars is 20 days. Confirmation lag is likewise counted in bars of that timeframe.

Inputs

There are 62 inputs, in seven groups in the properties dialog. They are listed below in eight short lists rather than seven, because the panel settings are easier to read on their own; in the dialog they sit inside the as-of group. Every default listed here is the shipping default.

Drawing rule:
- InpDirMode: draw down legs, up legs, or decide automatically from which extreme comes first.
- InpFractalN: half-width of the pivot in bars. 2 means a 5-bar fractal.
- InpScanBars: length of the scan window, in bars of the timeframe being processed. Default 120.
- InpAnchorMode: where the interval starts. Fixed window edge, or the end point of the previous leg.
- InpMaxSpanBars: upper limit on interval length in previous-leg mode, before falling back to a fixed window.
- InpLineCount: how many of the three lines to draw, from 1 to 3.
- InpRequireTurnPivot: wait for an opposite confirmed pivot after B before drawing.
- InpHullEnd: right edge of the interval used to build the hull. Up to the current closed bar, or up to B.
- InpFreezeOnBreak: once a leg's outer line is broken by a close, stop redrawing that leg.
- InpAnchorPrice: wicks (highs and lows) or bodies (opens and closes).

As-of axis and range:
- InpShowAsOfControls: show the two vertical lines, their handles and the panel. Off means always live.
- InpAsOfLineColor, InpFromLineColor: colours of the axis line and of the range line.
- InpAsOfLineWidth: width of the two vertical lines in pixels. Thicker is easier to grab.
- InpAsOfLineFront: draw the vertical lines in front of the candles rather than behind them.
- InpAsOfLineMode: how the two vertical lines are drawn. THIN is the default: one thin line each, mixed into the chart background. FULL is the lines as they were drawn before the modes were added. BOTH is that faint line plus three tick marks. TICKS is the marks only. The axis and the range work the same way in all four.
- InpAsOfLineFadePct: how far THIN and BOTH mix a line into the chart background, from 0 to 100. 65 by default. Values outside that range are brought back inside it and the log says so.
- InpAsOfTickPx: the length of one tick mark in pixels, used by BOTH and TICKS. 18 by default, and brought inside 2 to 400. There are always three marks per line, whatever this is set to.
- InpAsOfLineSelectable: allow the vertical lines themselves to be picked and dragged. Off by default, so a line cannot be caught by accident. The tabs and the panel still move the axis.
- InpAsOfKeepSelected: keep the two vertical lines selected. Off by default, and it only has an effect while InpAsOfLineSelectable is on, because marks are only drawn on selectable objects.
- InpHandleLane: which lane the tabs are placed in, counting from the top. Give a second indicator that draws its own as-of tab a different lane and the tabs stop covering each other. Dragging a tab up or down overrides both the lane and the panel dodge until the chart is reloaded.
- InpShowAsOfSteps: show the minus fifty, minus ten, plus ten and plus fifty keys on the panel. Off by default, which folds the panel into two rows. NOW and the range reset key are always shown.
- InpShowAsOfHandles, InpHandleFontSize, InpHandleYPct: show the handles, their text size, and how high up the chart they sit. The font size also sets the smallest width a tab may have, so it is the setting to raise if you want a larger area to grab.
- InpAsOfHandleFill: draw the filled tab. Off leaves the readout as plain text, and the text is then not a grab target, so the axis is moved by the lines and the panel keys instead.
- InpDebugEvents: print the long-form setting description and every chart event to the log. Off by default. This is a diagnostic switch, for sending us something to read when a chart looks wrong.

Panel:
- InpUiCorner: which corner the panel sits in.
- InpUiX, InpUiY: panel margins from that corner, in pixels.
- InpUiSafeBottom: space always kept free at the bottom edge, for the time scale.
- InpHudFontStamp, InpHudFontNum: the label font and the number font of the panel.
- InpKeyAffordance: tell the parts of the panel you can press apart from the parts you only read. RAISED is the default: only the keys keep a face and a border, and the top of a key is lifted one step lighter, so a reading such as LIVE or PAST is plain text. MARK marks the keys with the border alone. OFF is the older panel, where a key and a reading looked the same.

Timeframes:
- InpTF1, InpTFEnable2, InpTF2, InpTFEnable3, InpTF3: up to three timeframes on one chart.
- InpTFWidthStep: extra line width in pixels per step up in timeframe. Zero keeps widths equal.
- InpMaxSetsHTF: sets kept per higher timeframe in the current direction.
- InpMaxSetsOppHTF: sets kept per higher timeframe in the opposite direction. Zero keeps none.

How much stays on screen:
- InpReplayBars: how many bars back the sequential replay runs, so that older sets are shown too.
- InpMaxSets: sets kept on the chart timeframe in the current direction.
- InpMaxSetsOpp: sets kept on the chart timeframe in the opposite direction. Zero keeps none.
- InpMaxHistoryBars: upper limit on bars scanned. Zero means all of them.

State thresholds:
- InpTouchTolATR: distance in ATR within which a close counts as touching the line.
- InpBreakTolATR: distance in ATR beyond the line at which a close counts as a break.
- InpATRPeriod: ATR period used by the touch and break tests.

Line appearance:
- InpOuterColor, InpMiddleColor, InpInnerColor: the three lines of the newest set.
- InpOuterColorOld, InpMiddleColorOld, InpInnerColorOld: the same three lines for older sets.
- InpLineWidth: line width in pixels, before the timeframe step is added.
- InpLineStyle: style for lines that have not been broken.
- InpBrokenStyle: style for broken lines. Must differ from InpLineStyle.
- InpFadeOldSets: draw older sets in the darker colours.

Labels:
- InpShowLabels: show the state label at the right end of each line.
- InpShowAB: mark the start A and the end B of the interval.
- InpLabelFontSize: font size of the state labels.

Every numeric input that has a range is examined at start-up, and the indicator refuses to run rather than draw something misleading. A single value outside its range is enough: start-up stops and the log names the input, its range and the value you gave. A contradictory pair does the same, for example a break tolerance smaller than the touch tolerance, or a broken line style identical to the normal line style. InpAsOfLineFadePct and InpAsOfTickPx are the only two inputs that behave differently, and they are the two described above: a value outside their range is brought inside it and the log says so, rather than stopping start-up.

What you install

One compiled indicator file. There is nothing else to copy, no include files to place by hand, no library to install, no DLL call, and no external connection of any kind. Drop it on a chart and it runs.

Limitations

- No entry or exit signals, no arrows, no alerts, no trading. It draws lines and labels them.
- No claim of statistical edge. Whether these lines have predictive value has not been tested by us.
- Lines appear late, by design. A pivot needs its right-hand bars to close, and by default the tool waits for an opposite pivot after B. Until then nothing is drawn. This lateness is the price of not repainting, and it cannot be removed without looking ahead.
- Closes only. A wick touch or a wick break is not counted.
- Ties are not handled. If the interval high or low is equal across bars, the pivot requirement is not met and no lines are drawn at that moment. This is the safe direction, not a workaround.
- Higher timeframes need history. If your broker does not supply enough history for a selected timeframe, nothing is drawn for that timeframe and a message is written to the log.
- The first draw grows with the length of the chart, and it has not been timed on a real terminal. On that first pass the indicator reads every bar the chart holds. InpMaxHistoryBars and InpReplayBars cap the detection and the replay; they do not cap that first read.
- Work done after the first draw. A tick that does not open a new bar draws nothing at all. When a bar does open, the work is bounded by InpMaxHistoryBars rather than by the length of the chart, and the same bound applies while you drag the axis across bars. None of this has been timed on a real terminal; it is a count of the work asked for, not a measurement of how long it takes, and it says nothing about the first draw above. The higher timeframe paths are not bounded this way and still read their whole series.
- The four ways of drawing the vertical lines are offered because we do not know which one will suit your chart, and we have not decided one for you. Faint is made by mixing the line colour into the chart background colour, so how faint a given setting looks depends on your background.
- Memory grows with the number of bars on the chart, and it is not capped by any setting. The indicator keeps its own copy of the chart series so that dragging the axis never has to re-read it: eight arrays of eight bytes per bar plus two of one byte, which is 66 bytes for every bar the terminal hands it. That is arithmetic from the source, not a measurement: on a chart with three million bars it works out at roughly a quarter of a gigabyte, and we have not observed the figure on a running terminal. If that matters to you, lower "Max bars in chart" in the terminal settings; the indicator's own history settings do not change it.
- Defaults were chosen for XAUUSD. The indicator runs on other symbols, but the defaults were not adjusted for them and a note is written to the log at start-up.
- The thresholds and the window length are working defaults. They are not calibrated values, and this description does not pretend otherwise.
- The panel uses Bahnschrift and Consolas by default. MetaTrader substitutes a different font silently when one is not installed and gives no way to ask which font it actually used, so on a machine without those fonts the panel will still work but will not look as intended. Both fonts are inputs.
- The panel needs room. On a chart window narrower than about 250 pixels, or shorter than about 100 pixels, it cannot fit and will be clipped rather than hidden, because a hidden panel cannot be clicked.
- The axis line, the range line and the handles are chart objects owned by the indicator. Deleting them by hand does not disable the feature; they are recreated. Use the input to switch the controls off instead.
- The two vertical lines are ordinary chart objects. By default they cannot be picked at all, and with InpAsOfLineSelectable on they are left unselected, so MetaTrader draws no selection marks on them, and they are moved the ordinary way: select, then drag. Whether selecting takes one click or two is a terminal setting, not something an indicator can read or change. InpAsOfKeepSelected keeps them selected instead, which saves that click and puts the marks on screen. Either way the marks never appear on the handles.
- Dragging a handle depends on the terminal delivering mouse move events to the indicator. The indicator asks the chart for them at start-up and stops asking when it is removed. If another indicator on the same chart turns that chart setting off, the handles stop responding, and the lines and the panel keys remain as ways to move the axis.
- Suspending chart scrolling while a handle is held is a chart-wide setting, so loading two indicators that both do it means whichever one restores last decides the value that is left.
- The handle is drawn as a filled screen-space panel, in the same way the indicator's own panel is drawn. How much of a candle a handle covers when it happens to sit over price is not something we have measured on a live chart, and we make no claim about it.
- With InpAsOfHandleFill off there is no tab, and the readout becomes plain text that is not a grab target. The axis is then moved with the panel keys, or with the vertical lines after switching InpAsOfLineSelectable on.
- The verification harness reimplements the drawing logic outside the terminal, and is a port of that logic rather than an independent design. It checks the logic, not the compiled file.

Who this is probably not for

- Anyone looking for entry signals, arrows, alerts or an automated system.
- Anyone who wants a chart where the set of lines never changes at all, rather than a chart where individual lines never move.
- Anyone who needs evidence that the lines have an edge before buying. We do not have that evidence and we will not invent it.

Support

Please use the product comments section or the mql5.com message system. Questions about what a specific input does, or about a chart where the output looks wrong, are welcome. Please include the symbol, the timeframe, and your input settings.
Önerilen ürünler
BTC Trend Scalper MT5 Trend Capture Edition — BTCUSD için Hassas Momentum Ticareti Merhaba yatırımcılar! Ben   BTC Trend Scalper MT5   — disiplinli risk yönetimi ile momentum hareketlerini yakalamak için tasarlanmış akıllı bir Bitcoin ticaret uzman danışmanıyım. Martingale değilim. Izgara sistemi değilim. Kumar robotu değilim. Her mumun peşinden koşmaktan sermayeyi korumanın daha önemli olduğunu anlayan yatırımcılar için özel olarak oluşturulmuş,   trend takip eden bir scalper'ım . Uzmanlık al
Unlock key market insights with automated support and resistance lines Tired of plotting support and resistance lines? This is a multi-timeframe indicator that detects and plots supports and resistance lines in the chart with the same precision as a human eye would. As price levels are tested over time and its importance increases, the lines become thicker and darker, making price leves easy to glance and evaluate. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  ] Boo
Harmonik desenler, piyasa dönüm noktalarını tahmin etmek için en uygun olanlardır. Yüksek başarı oranı ve bir günde birçok işlem fırsatı sunarlar. Göstergemiz, harmonik ticaret literatürüne dayanarak en popüler harmonik desenleri tanımlar. ÖNEMLİ NOTLAR: Gösterge yeniden çizmez, gecikmez (D noktasında bir desen algılar) ve yeniden çizilmez (desen ya geçerli ya da iptal edilir). NASIL KULLANILIR: Göstergenizi MT5 grafiğinize sürükleyip bırakın. Desen algılama ayarını TRUE (ABCD; Gartley) olarak a
Gösterge, tarihsel olanlarla karşılaştırılabilecek güncel teklifler oluşturur ve bu temelde bir fiyat hareketi tahmini yapar. Gösterge, istenen tarihe hızlı navigasyon için bir metin alanına sahiptir. Seçenekler: Sembol - göstergenin göstereceği sembolün seçimi; SymbolPeriod - göstergenin veri alacağı dönemin seçimi; GöstergeRenk - gösterge rengi; Ters - doğru tırnakları tersine çevirir, yanlış - orijinal görünüm; Sonraki, tarihi girebileceğiniz ve 'enter' tuşuna basarak hemen atlayab
LT Support Resistance - Destek ve Direnç Seviyelerini %100 Otomatik Olarak Belirleyin Destek ve direnç çizgilerini manuel olarak çizerek zaman kaybetmekten bıktınız mı? Ya da o önemli seviyeyi her seferinde gözden kaçırdığınız için hayal kırıklığı mı yaşıyorsunuz? LT Support Resistance, bu zahmetli işi ortadan kaldırmak için geliştirilmiştir; birden fazla zaman diliminde (timeframe) eş zamanlı olarak varlığınızın en ilgili bölgelerini otomatik olarak tanımlar ve işaretler. == KRİTİK SEVİYELERİN
Mine Farm
Maryna Kauzova
Mine Farm is one of the most classic and time-tested scalping strategies based on the breakdown of strong price levels. Mine Farm is the author's modification of the system for determining entry and exit points into the market... Mine Farm - is the combination of great potential with reliability and safety. Why Mine Farm?! - each order has a short dynamic Stop Loss - the advisor does not use any risky methods (averaging, martingale, grid, locking, etc.) - the advisor tries to get the most
CosmiCLab SMC FIBO CosmiCLab SMC FIBO is a professional trading indicator designed for traders who use Smart Money Concepts (SMC), market structure analysis and Fibonacci retracement levels. The indicator automatically detects market swings and builds Fibonacci levels based on the latest impulse movement. It also identifies market structure changes such as BOS (Break of Structure) and CHOCH (Change of Character), helping traders understand the current market direction. CosmiCLab SMC FIBO also pr
HAS RSI Signal — Otomatik SL/TP Hesaplamalı Profesyonel Trend Göstergesi HAS RSI Signal , kanıtlanmış klasik yöntemleri modern gürültü filtreleme algoritmalarıyla birleştiren güçlü bir ticaret aracıdır. Gösterge, piyasayı Heiken Ashi Smoothed (HAS) mumları ve RSI osilatörü merceğinden analiz ederek, trend dönüşlerinde veya aşırı alım/satım bölgelerinden çıkışlarda yatırımcıya net giriş sinyalleri sağlar. Temel Avantajlar: Çift Filtreleme: Heiken Ashi Smoothed kullanımı piyasadaki "gürültüyü" ort
Trend Master Chart MT5
Frederic Jacques Collomb
Trend Master Chart ihtiyacınız olan trend göstergesidir. Grafiği kaplar ve farklı pazar trendlerini/hareketlerini tanımlamak için renk kodlamasını kullanır. İki hareketli ortalamayı ve farklı osilatörleri birleştiren bir algoritma kullanır. Bu üç elementin periyotları değiştirilebilir. Herhangi bir zaman diliminde ve herhangi bir Çiftte çalışır. Bir bakışta yükseliş veya düşüş trendini ve bu trende farklı giriş noktalarını tespit edebileceksiniz. Örneğin, belirgin bir yükseliş eğilimi sırasında
RBreaker
Zhong Long Wu
RBreaker Gold Indicators is a short-term intraday trading strategy for gold futures that combines trend following and intraday reversal approaches. It not only captures profits during trending markets but also enables timely profit-taking and counter-trend trading during market reversals. This strategy has been ranked among the top ten most profitable trading strategies by the American magazine   Futures Truth   for 15 consecutive years. It boasts a long lifecycle and remains widely used and st
# DRAWDOWN INDICATOR V4.0 - The Essential Tool to Master Your Trading ## Transform Your Trading with a Complete Real-Time Performance Overview In the demanding world of Forex and CFD trading, **knowing your real-time performance** isn't a luxury—it's an **absolute necessity**. The **Drawdown Indicator V4.0** is much more than a simple indicator: it's your **professional dashboard** that gives you a clear, precise, and instant view of your trading account status. --- ## Why This Indicator
Auto Optimized RSI , doğru alım ve satım sinyalleri vermek için tasarlanmış, kullanımı kolay ve akıllı bir ok göstergesidir. Geçmiş verilere dayalı işlem simülasyonları kullanarak, her enstrüman ve zaman dilimi için en etkili RSI seviyelerini otomatik olarak belirler. Bu gösterge, bağımsız bir işlem sistemi olarak veya mevcut stratejinize entegre edilerek kullanılabilir ve özellikle kısa vadeli işlem yapanlar için faydalıdır. Geleneksel RSI’nin sabit seviyeleri (örneğin 70/30) yerine,   Auto Opt
KMB Smart Pattern Analyzer PRO
Karwan Msto Mohammed Mohammed
Ürün Genel Bakış KMB Smart Pattern Analyzer PRO , kullanıcı tarafından seçilen grafik aralığında güçlü piyasa formasyonlarını tespit etmek ve sıralamak için geliştirilmiş ileri seviye bir teknik analiz indikatörüdür. İndikatör birden fazla analiz motorunu tek bir profesyonel araçta birleştirir: Mum formasyonu analizi Klasik grafik formasyonu tespiti Harmonik yapı analizi Akıllı piyasa yapısı / SMC tarzı analiz Tüm grafikte rastgele sinyaller göstermek yerine, kullanıcı belirli bir piyasa alanını
Price Magnet — Price Density and Attraction Levels Indicator Price Magnet is a professional analytical tool designed to identify key support and resistance levels based on statistical Price Density. The indicator analyzes a specified historical period and detects price levels where the market spent the most time. These zones act as “magnets,” attracting price action or forming a structural base for potential reversals. Unlike traditional Volume Profile tools, Price Magnet focuses on price-time d
Premium seviye, %80'den fazla doğru tahmin doğruluğuna sahip benzersiz bir göstergedir! Bu gösterge en iyi Ticaret Uzmanları tarafından iki aydan uzun süredir test edilmiştir! Yazarın göstergesini başka hiçbir yerde bulamazsınız! Ekran görüntülerinden bu aracın doğruluğunu kendiniz görebilirsiniz! 1, sona erme süresi 1 mum olan ikili opsiyon ticareti için harikadır. 2 tüm döviz çiftleri, hisse senetleri, emtialar, kripto para birimleri üzerinde çalışır Talimatlar: Kırmızı ok göründüğü an
META TREND PRO       — Piyasa hareketlerini takip eden ve alım satım işlemlerinde tahmini ortadan kaldıran, piyasanın kararını çoktan vermiş olduğu noktaları gösteren bir araçtır. Bu gösterge, trendlerin, eğilimlerin ve yapıların değiştiği kilit noktaları belirler ve fiyatın büyük oyuncuların pozisyon alması için geri döndüğü alanları vurgular. Sadece hareketi görmüyorsunuz, arkasındaki mantığı da anlıyorsunuz. Tüm sinyaller mum çubuğu kapandıktan sonra kaydedilir, yeniden çizilmez ve grafiğe ka
Cumulative delta indicator As most traders believe, the price moves under the pressure of market buying or selling. When someone redeems an offer standing in the cup, the deal is a "buy". If someone pours into the bid standing in the cup - the deal goes with the direction of "sale". The delta is the difference between purchases and sales. A cumulative delta - the difference between the cumulative sum of purchases and sales for a certain period of time. It allows you to see who is currently contr
ProEngulfing'in ücretsiz versiyonu, QualifiedEngulfing, günde bir sinyal sınırlaması ve daha az özellik sunmaktadır. Koala Trading Solution kanalına MQL5 topluluğunda katılmak için, tüm Koala ürünleri hakkında en son haberleri öğrenmek için aşağıdaki bağlantıyı kullanın: https ://www .mql5 .com /en /channels /koalatradingsolution Bu ürünün MT4 versiyonu aşağıdaki bağlantıdan indirilebilir: https ://www .mql5 .com /en /market /product /52023 ProEngulfing Tanıtımı – MT4 için Profesyonel Engulfing
PriceMagnet Volume Profile Stop guessing where the smart money is sitting. See it. PriceMagnet Volume Profile is a precision volume-analysis indicator built for MetaTrader 5 traders who want to trade with institutional context instead of guesswork. Rather than plotting volume as a flat bar under your chart, PriceMagnet reconstructs a full horizontal volume histogram directly on price — showing you exactly which price levels attracted the most trading activity over your selected lookback window,
This indicator shows a candle combination based on dodge, dodge and pin bar. The logic of the pattern is to stand on the side of strength, after uncertainty. The indicator is universal and is useful for trading binary options, forex, ETFs, cryptocurrency, stocks. The indicator supports timeframes from M5 to MN, including non-standard TF presented in MT5. (М5,М6,М10,M12, M15, M20, M30, H1, H2, H3, H4, H6, H8, H12, D1, W1, MN). The ability to enable and disable TF is implemented. Sound alerts and
Tethys Pullback Compass – Non-Repainting Pullback Signals for MT5 Tethys Pullback Compass is a MetaTrader 5 indicator designed to identify potential bullish and bearish trend-continuation setups after a pullback . Instead of chasing extended moves, Tethys waits for price to retrace and evaluates multiple conditions before displaying a signal. Trend → Pullback → Confirmation → Signal 100% Non-Repainting Closed-Bar Signals Signals are confirmed only after the candle has closed. Once a signal is co
STRICTLY FOR BOOM INDEX ONLY!!!!! Here I bring the Maximum Trend Arrows OT1.0 MT5 indicator. This indicator is made up of a combination of different trend indicators for entries and exits, for entries an orange arrow will paint on the chart below the current market and a red flag for closing of trades and it produces buy arrows only. When the orange arrow appears, it will appear along with it's sound to notify you. The 1H timeframe is recommended, don't use it anywhere else than on the 1H timefr
"Impulses and Corrections 5" is created to help traders navigate the market situation. The indicator shows multi-time frame upward and downward "Impulses" of price movements. These impulses are the basis for determining the "Base" , which is composed of zones of corrections of price movements, as well as "Potential" zones for possible scenarios of price movement. Up and down impulses are determined based on a modified formula of Bill Williams' "Fractals" indicator. The last impulse is always "U
Overview The Market Perspective Structure Indicator is a comprehensive MetaTrader indicator designed to provide traders with a detailed analysis of market structure across multiple timeframes. It identifies and visualizes key price action elements, including swing highs and lows, Break of Structure (BOS), Change of Character (CHOCH), internal structures, equal highs/lows, premium/discount levels, previous levels from higher timeframes, and trading session zones. With extensive customization opt
CV Support & Resistance is a professional support and resistance indicator for MetaTrader 5, designed to accurately identify key market and price zones. The indicator helps traders detect potential entry, exit, and reaction areas within the market at an early stage. Features: Automatic support and resistance zone detection Dynamic market structure analysis Professional visualization of key price areas Suitable for scalping, day trading, and swing trading Optimized for multiple symbols and timefr
Double HMA MTF for MT5
Pavel Zamoshnikov
4 (4)
This is an advanced multi-timeframe version of the popular Hull Moving Average (HMA) Features Two lines of the Hull indicator of different timeframes on the same chart. The HMA line of the higher timeframe defines the trend, and the HMA line of the current timeframe defines the short-term price movements. A graphical panel with HMA indicator data from all timeframes at the same time . If the HMA switched its direction on any timeframe, the panel displays a question or exclamation mark with a tex
Short Description Swing Timing Breakout EA is a smart Expert Advisor for MetaTrader 5 that combines trend filtering, momentum timing, and dynamic risk management to capture high-probability swing and breakout opportunities. Full Description Swing Timing Breakout EA is a professional trading robot designed for MetaTrader 5, suitable for traders who want a balance between automation, control, and disciplined risk management. This EA uses a trend-following and momentum confirmation approach ,
Ortalama Yönsel İndeks(ADX) Çoklu Para Birimi Tarayıcı MT5 birden fazla döviz çiftini aynı anda analiz etmek için tasarlanmış gelişmiş bir ticaret göstergesidir. Bu, Ortalama Yönsel İndeks'e dayalı gerçek zamanlı sinyaller sağlayarak, karar verme sürecini geliştirmek isteyen tüccarlara fayda sağlar ve etkili piyasa trend analizi yapmalarına olanak tanır. Bu araç, trend gücünü ve yön hareketini tanımlamayı basitleştirerek ticaret deneyimini kolaylaştırır ve ADX tabanlı stratejileri kullanan tücca
This indicator uses a mathematical calculation algorithm . This algorithm calculates the remainder between the updated model and the actual values and produces the possible progress of the graph on the graph. It is not a super prophet in trading, but it is very good for the trader when entering the market and to analyze it before entering. Applicable for all currencies. Данный индикатор использует алгоритм математических вычислений . Данный алгоритм вычисляет остаток между обновленной моделью и
NeuralTick tarafından CleanTrend — geçmişi ASLA yeniden boyamayan (repaint yapmayan) bir trend göstergesidir. Geçmişte harika görünen ancak canlı işlemlerde sinyalleri yeniden boyayan göstergelerden bıktınız mı? Gürültüden ve aldatmacadan bıkmış yatırımcıların CleanTrend'i seçmesinin üç nedeni: %100 YENİDEN BOYAMA YOK. Çizginin rengi sonsuza kadar sabitlenir. Hiçbir çubuk (bar) sonradan değişmez — Strateji Test Cihazında kendiniz doğrulayın. ÇİFT GÜRÜLTÜ FİLTRESİ. Sinyal, yalnızca fiyat
Bu ürünün alıcıları ayrıca şunları da satın alıyor
Trend Sniper X
Sarvarbek Abduvoxobov
5 (10)
Trend Sniper X , traderların trend yönünü ve potansiyel dönüş noktalarını netlik ve hassasiyetle belirlemelerine yardımcı olan, MetaTrader 5 için çoklu zaman dilimli bir trend takip göstergesidir. Fiyat Bilgisi: Mevcut fiyat promosyon amaçlıdır ve gelecekteki güncellemeler ve yeni özellikler yayınlandıkça değişebilir. Code2Profit Kanalı Çoklu Zaman Dilimi Analizi ile Piyasada Ustalaşın! Teknik Özellikler Platform MetaTrader 5 Gösterge Tipi Çoklu Zaman Dilimli Trend Göstergesi Çalışma Zaman Dilim
Divergence Bomber
Ihor Otkydach
4.89 (93)
Zaman zaman bu sistemle bizzat işlem yapıyorum. Gerçek hesapta yaptığım manuel BOMBER işlemlerimi değerlendir - CANLI SİNYAL Bu göstergeyi satın alan herkese aşağıdaki ekstra içerikler ücretsiz olarak sunulmaktadır: Her işlemi otomatik olarak yöneten, Stop Loss ve Take Profit seviyelerini ayarlayan ve işlemleri strateji kurallarına göre kapatan özel yardımcı araç: "Bomber Utility" Göstergenin farklı varlıklar üzerinde kullanılmasına yönelik ayar dosyaları (set dosyaları) Bomber Utility için 3 f
Neuro Poseidon MT5
Daria Rezueva
4.85 (54)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
Efsane geri dönüyor: Entry Points Pro 10. MQL5 Market'te 3 yıl boyunca ilk 3'te kalan efsanevi indikatörün yeniden lansmanı. Yüzlerce övgü dolu yorum (iki sürümde toplam 589), her gün binlerce trader onunla işlem yapıyor, 31.000+ demo indirmesi   MT4+MT5 . Beş yıl boyunca yazdığınız her yorumu okudum — ve söz vermek yerine yanıtları 10. sürümün içine işledim. 1999'dan beri piyasada olan ve dürüstlüğe, itibarına ve müşterilerine değer veren bir yazardan. Entry Points Pro, işleme giriş sinyallerin
Superhero
Ihor Otkydach
5 (3)
SUPERHERO göstergesi, "her şeyi kapsayan" bir temele dayalı olarak tasarlanmış çoklu para birimli bir işlem sistemidir. Gösterge, piyasayı bağımsız olarak analiz eder ve işlemlerin ne zaman açılıp kapatılacağına dair sinyaller verir. Stop Loss ve Take Profit emirlerini kullanır. R:R oranı 1:1'dir. Zaman zaman ben de bu sistemin sinyallerine göre işlem yapıyorum ve işte elde ettiğim sonuçlar: CANLI SİNYAL Bu sistem akıllı telefonunuza anlık bildirimler gönderebilir; böylece bir bilgisayara bağlı
UZFX {SSS} Scalping Smart Signals v4.0 MT5, hızlı hareket eden piyasalarda doğru ve gerçek zamanlı sinyaller bekleyen scalperlar, günlük işlemciler ve swing işlemciler için tasarlanmış, yeniden çizilmeyen yüksek performanslı bir işlem göstergesidir. (UZFX-LABS) tarafından geliştirilen bu gösterge, fiyat hareketi analizi, trend teyidi ve akıllı filtrelemeyi bir araya getirerek tüm döviz çiftleri ve zaman dilimlerinde yüksek olasılıklı alım ve satım sinyalleri, Uyarı Sinyalleri ve Trend Devam Fırs
M1 Sniper MT5
Oleg Rodin
5 (5)
M1 SNIPER   kullanımı kolay bir işlem göstergesi sistemidir. M1 zaman dilimi için tasarlanmış bir ok göstergesidir. Gösterge, M1 zaman diliminde scalping için bağımsız bir sistem olarak kullanılabilir ve mevcut işlem sisteminizin bir parçası olarak kullanılabilir. Bu işlem sistemi özellikle M1'de işlem yapmak için tasarlanmış olsa da, diğer zaman dilimleriyle de kullanılabilir. Başlangıçta bu yöntemi XAUUSD ve BTCUSD ticareti için tasarladım. Ancak bu yöntemi diğer piyasalarda işlem yaparken de
SR Liquidity , piyasa likiditesinin yoğunlaştığı ve fiyatın en güçlü tepkiyi verdiği gizli bölgeleri ortaya çıkarmak için tasarlanmış bir alım-satım göstergesidir. Bu özel likidite alanları güçlü destek ve direnç seviyeleri işlevi görerek, piyasanın yön değiştirme ihtimalinin en yüksek olduğu yerlere dair size net bir harita sunar. SR Liquidity, sıradan Destek/Direnç çizgileri çizmek yerine, alım ve satım baskısının yoğunlaştığı bölgeleri tespit etmek için gerçek fiyat hareketlerini analiz eder.
M1 Quantum MT5
Hamed Dehgani
4.27 (11)
M1 Quantum ile Canlı İşlem Sinyalleri : Sinyal   (İşlem otomatik olarak Quantum Trade Assistant tarafından gerçekleştirilmiştir ve bu ürüne ücretsiz olarak dahildir.) Son Haberler: Sürüm 1.64 yayınlandı. Artık tüm işlemlerde Stop Loss, ilgili Destek/Direnç bölgelerinin arkasına yerleştiriliyor. Bu sürümde EA'nın performansını artırmak için Smart Close fonksiyonu da geliştirildi. 9 Ağustos'tan bu yana canlı sinyal Sürüm 1.64 üzerinde çalışıyor. Fiyat Planı: Güncel Fiyat: $169 (Erken kullanıcı te
Btmm state engine pro
Garry James Goodchild
5 (4)
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 5. Asian session range, London and New York kill zones, level progression (L1/L2/L3), peak formation detection (PFH/PFL), entry signals, and a multi-pair scanner from one chart. Stop scanning charts one pair at a time. The State Engine tracks the BTMM daily cycle automatically — Asian box, room boundaries, level blocks, peak formations, and filtered entries — while the scanner dashboard shows level, peak status, d
The Oracle Pro
Ottaviano De Cicco
5 (1)
The Oracle Pro: Synthetic Multi-Timeframe Bias Engine for MT5 ️ Summer Launch Offer — Get The Oracle Pro for USD 199 (early buyers). Price rises with traction; final price USD 399. The Oracle Pro is a premium multi-timeframe bias engine for MetaTrader 5, built for demanding and professional traders. It answers one question with discipline: what is the directional bias on each timeframe right now, how strong is it, and how much do the timeframes agree? Everything is computed on closed bars only
Currency Strength Wizard , başarılı ticaret için size hepsi bir arada çözüm sağlayan çok güçlü bir göstergedir. Gösterge, birden çok zaman dilimindeki tüm para birimlerinin verilerini kullanarak şu veya bu forex çiftinin gücünü hesaplar. Bu veriler, şu veya bu para biriminin gücünü görmek için kullanabileceğiniz, kullanımı kolay para birimi endeksi ve para birimi güç hatları biçiminde temsil edilir. İhtiyacınız olan tek şey, işlem yapmak istediğiniz tabloya göstergeyi eklemektir ve gösterge size
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
SuperTrend   ,   RSI   ve   Stochastic'in   gücünü tek bir kapsamlı göstergede birleştirerek işlem potansiyelinizi en üst düzeye çıkaran nihai işlem aracı olan   Quantum TrendPulse'u   tanıtıyoruz. Hassasiyet ve verimlilik arayan yatırımcılar için tasarlanan bu gösterge, piyasa trendlerini, momentum değişimlerini ve en uygun giriş ve çıkış noktalarını güvenle belirlemenize yardımcı olur. Temel Özellikler: SuperTrend Entegrasyonu:   Güncel piyasa trendlerini kolayca takip edin ve karlılık dalgası
Bill Williams Advanced
Siarhei Vashchylka
5 (11)
Bill Williams Advanced is designed for automatic chart analysis using Bill Williams' "Profitunity" system. The indicator analyzes four timeframes at once. Manual (Be sure to read before purchasing) Advantages 1. Analyzes the chart using Bill Williams' "Profitunity" system. Signals are displayed in a table in the corner of the screen and on the price chart. 2. Finds all known AO and AC signals, as well as zone signals. Equipped with a trend filter based on the Alligator. 3. Finds "Divergence Bar
Advanced Supply Demand MT5
Bernhard Schweigert
4.53 (15)
Herhangi bir Acemi veya Uzman Tüccar için En İyi Çözüm! Bu gösterge benzersiz, yüksek kaliteli ve uygun fiyatlı bir ticaret aracıdır çünkü bir dizi tescilli özelliği ve yeni bir formülü bir araya getirdik. Bu güncelleme ile çift zaman dilimi dilimlerini gösterebileceksiniz. Yalnızca daha yüksek bir TF gösteremeyeceksiniz, aynı zamanda TF grafiğini ve ARTIK daha yüksek TF'yi de gösterebileceksiniz: YUVARLAK BÖLGELERİ GÖSTERMEK. Tüm Arz Talebi tüccarları buna bayılacak. :) Önemli Bilgiler Açıkland
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
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2: Synthetic Fractal Structure and Confirmed Entries for MT5 Overview Azimuth Pro is a multi-level swing structure indicator by Merkava Labs . Four nested swing layers, swing-anchored VWAP, ABC pattern detection, three-timeframe structural filtering, and closed-bar confirmed entries — one chart, one workflow from micro-swings to macro-cycles. This is not a blind signal product. It is a structure-first workflow for traders who care about location, context, and timing. ️ Summer Sale
Smart Market Structure Pro by G-Labs — ICT and Smart Money Concepts toolkit with built-in multi-symbol scanner for MetaTrader 5. Break of structure, change of character, order blocks, fair value gaps, liquidity sweeps, premium and discount zones, ICT sessions, confluence scoring, AI trade ideas, and a traffic-light scanner across up to 30 pairs and four timeframes from one chart. Map SMC and ICT on the active chart while the built-in scanner monitors your full watchlist. Each cell shows BUY, S
ZAB Supply Demand MTF automatically detects institutional supply and demand zones across up to 9 timeframes and draws them directly on your chart. Based on Sam Seiden's methodology, this indicator identifies the exact zones where banks and institutions placed their orders. Why This Indicator? Unlike basic support/resistance tools, ZAB Supply Demand MTF classifies every zone by its formation pattern and merges overlapping zones from different timeframes into high-probability confluence areas. Key
SkyHammer Signal Pro Entry, SL ve TP seviyeleri kilitlenen profesyonel no-repaint trend sinyal indikatörü SkyHammer Signal Pro, net, sabit ve doğrulanabilir sinyaller isteyen yatırımcılar için tasarlanmış yapılandırılmış bir trend ve momentum sinyal indikatörüdür. En iyi M1 ve M5 gibi düşük zaman dilimlerinde çalışır. İndikatör piyasanın tepe veya dip noktalarını tahmin etmeye çalışmaz. Bunun yerine sinyal üretmeden önce onaylanmış piyasa yapısı, trend yönü, momentum gücü, sağlıklı volatilite ve
Gartley Hunter Multi
Siarhei Vashchylka
5 (12)
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all possible timeframes. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all possible timeframes 3. Search for patterns of all possible sizes. From the smallest to the largest 4. All fou
Tanıtım       Quantum Breakout PRO   , Breakout Bölgeleri ile ticaret yapma şeklinizi değiştiren çığır açan MQL5 Göstergesi! 13 yılı aşkın ticaret tecrübesine sahip deneyimli tüccarlardan oluşan bir ekip tarafından geliştirilmiştir.       Kuantum Breakout PRO       yenilikçi ve dinamik koparma bölgesi stratejisiyle ticaret yolculuğunuzu yeni zirvelere taşımak için tasarlanmıştır. Kuantum Breakout Göstergesi, size 5 kar hedefi bölgesi ile kırılma bölgelerinde sinyal okları ve kırılma kutusuna da
CRT Multi-Timeframe Market Structure & Liquidity Sweep Indicator Non-Repainting | Multi-Asset | MT4 Version Available MT4 Version: https://www.mql5.com/en/market/product/162556 Full Setup Guide: https://www.mql5.com/en/blogs/post/767525 Indicator Overview CRT Ghost Candle HTF Fractal is a complete institutional-grade market structure toolkit for MetaTrader 5. It projects higher-timeframe candle structure, CRT trap levels, session levels, previous period highs and lows, pivot points, and a real
Ziva LSE Pro
Hassan Abdullah Hassan Al Balushi
ZIVA LSE Pro: Trade the Flow, Not the Noise ZIVA LSE Pro was developed around a simple belief: professional traders do not need more random signals; they need better context. This workflow reflects the ZIVA approach to filtering market noise and focusing on the liquidity and structural mechanics that influence price behavior. Most indicators treat the market like a static picture. ZIVA LSE Pro is built to read it as a dynamic environment where liquidity, structure, volatility, and execution con
Gem SIGNAL
Shengzu Zhong
5 (1)
GEM Signal Pro GEM Signal Pro, MetaTrader 5 için geliştirilmiş bir trend takip göstergesidir ve daha net sinyaller, daha düzenli işlem kurulumları ve daha pratik risk yönetimini doğrudan grafik üzerinde görmek isteyen yatırımcılar için tasarlanmıştır. Sadece basit bir ok göstermek yerine, GEM Signal Pro işlem fikrinin tamamını daha temiz ve daha okunabilir bir şekilde sunmaya yardımcı olur. Koşullar onaylandığında, gösterge giriş fiyatını, stop loss seviyesini ve take profit hedeflerini grafik ü
Turtle Soup Liquidity Sweep is a smart liquidity analysis tool designed to identify Buy-Side Liquidity (BSL), Sell-Side Liquidity (SSL), liquidity sweeps, and potential reversal setups. The indicator detects important swing highs and lows, combines nearby liquidity levels, and waits for price rejection and confirmation after a liquidity grab. It also supports Order Block (OB), Fair Value Gap (FVG), and Inverse Fair Value Gap (IFVG) confluence to help filter potential setups. Entry signals, Stop
PrimeScalping
Temirlan Kdyrkhan
PrimeScalping 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 e
RelicusRoad Pro MT5
Relicus LLC
4.96 (24)
RelicusRoad Pro: Kantitatif Piyasa İşletim Sistemi ÖMÜR BOYU ERİŞİMDE %70 İNDİRİM (SINIRLI SÜRE) - 2.000+ TRADER'A KATILIN Neden çoğu trader "mükemmel" indikatörlere rağmen başarısız olur? Çünkü tekil kavramları boşlukta trade ederler. Bağlamı olmayan bir sinyal kumardır. Sürekli kazanmak için KONFLÜANS (UYUM) gerekir. RelicusRoad Pro basit bir ok indikatörü değildir. Tam bir Kantitatif Piyasa Ekosistemi dir. Tescilli volatilite modellemesini kullanarak fiyatın ilerlediği "Adil Değer Yolu"nu har
Berma Bands
Muhammad Elbermawi
5 (11)
Berma Bantları (BB'ler) göstergesi, piyasa trendlerini belirlemeyi ve bunlardan yararlanmayı amaçlayan yatırımcılar için değerli bir araçtır. Fiyat ile BB'ler arasındaki ilişkiyi analiz ederek, yatırımcılar bir piyasanın trend veya aralıklı fazda olup olmadığını ayırt edebilir. Daha fazla bilgi edinmek için [ Berma Home Blog ] adresini ziyaret edin. Berma Bantları üç belirgin çizgiden oluşur: Üst Berma Bandı, Orta Berma Bandı ve Alt Berma Bandı. Bu çizgiler fiyatın etrafına çizilir ve genel tren
Introducing the South African Sniper Indicator Created by a dedicated team of South African traders with years of profitable experience in the financial markets, the South African Sniper Indicator is designed to give traders a sharp edge — combining simplicity, precision, and power in one tool. This is a plug-and-play indicator for MT5, built to deliver accurate BUY and SELL (Sniper Entry) signals — complete with target levels and automated trailing stops. Whether you trade forex, indice
Yazarın diğer ürünleri
TradeXray TripleMA What it does. It draws three simple moving averages, marks the places where two of them cross, and prints a few measurements of the current geometry on a small panel. Every mark and every number is taken from bars that have already closed. What it does not do. It does not tell you when to buy or when to sell. It does not claim that these lines, these crosses or these numbers have any statistical edge. We have not measured one, so we do not say that one exists. What has been
Filtrele:
Değerlendirme yok
Değerlendirmeye yanıt