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.
Рекомендуем также
BTC Trend Scalper MT5 Trend Capture Edition — Точный моментный трейдинг для BTCUSD Привет, трейдеры! Я — BTC Trend Scalper MT5, интеллектуальный советник для торговли Биткоином, созданный для захвата импульсных движений с дисциплинированным управлением рисками. Я   не   мартингейл. Я   не   сеточная система. Я   не   робот-игроман. Я — скальпер, следующий за трендом, созданный специально для трейдеров, которые понимают, что сохранение капитала важнее погони за каждым ценовым движением. Моя сп
Устали от построения линий поддержки и сопротивления? Сопротивление поддержки - это мульти-таймфреймовый индикатор, который автоматически обнаруживает и отображает линии поддержки и сопротивления на графике с очень интересным поворотом: поскольку ценовые уровни тестируются с течением времени и его важность возрастает, линии становятся более толстыми и темными. [ Руководство по установке | Руководство по обновлению | Устранение неполадок | FAQ | Все продукты ] Повысьте технический анализ в одноч
Гармонические паттерны наилучшим образом используются для прогнозирования точек разворота рынка. Они обеспечивают высокую вероятность успешных сделок и множество возможностей для торговли в течение одного торгового дня. Наш индикатор идентифицирует наиболее популярные гармонические паттерны, основываясь на книгах о Гармоническом трейдинге. ВАЖНЫЕ ЗАМЕЧАНИЯ: Индикатор не перерисовывается, не отстает (он обнаруживает паттерн в точке D) и не изменяется (паттерн либо действителен, либо отменен). КАК
Индикатор строит текущие котировки, которые можно сравнить с историческими и на этом основании сделать прогноз ценового движения. Индикатор имеет текстовое поле для быстрой навигации к нужной дате. Параметры : Symbol - выбор символа, который будет отображать индикатор; SymbolPeriod - выбор периода, с которого индикатор будет брать данные; IndicatorColor - цвет индикатора; Inverse - true переворачивает котировки, false - исходный вид; Далее идут настройки текстового поля, в которое можно ввес
LT Support Resistance — Автоматическое определение уровней поддержки и сопротивления на 100% Вы устали тратить время на ручное построение линий поддержки и сопротивления? Или расстраиваетесь из-за того, что постоянно упускаете важный уровень? Индикатор LT Support Resistance разработан для того, чтобы избавить вас от этой рутины: он автоматически определяет и отмечает наиболее значимые зоны вашего актива одновременно на нескольких таймфреймах. == УМНАЯ АВТОМАТИЗАЦИЯ КРИТИЧЕСКИХ УРОВНЕЙ == Вместо
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 — это профессиональный торговый индикатор, основанный на концепциях Smart Money Concepts (SMC), анализе структуры рынка и уровнях Fibonacci. Индикатор автоматически определяет свинги рынка и строит уровни Fibonacci по последнему импульсному движению. Также индикатор определяет ключевые изменения структуры рынка: BOS — Break Of Structure CHOCH — Change Of Character Дополнительно отображаются сигнальные стрелки BUY / SELL при пробое структуры. Индикатор подход
HAS RSI Signal — Профессиональный трендовый индикатор с расчетом SL/TP HAS RSI Signal — это мощный торговый инструмент, объединяющий проверенную классику и современные алгоритмы фильтрации шума. Индикатор анализирует рынок через призму сглаженных свечей Heiken Ashi и осциллятора RSI, предоставляя трейдеру четкие сигналы на вход в моменты разворота тренда или выхода из зон перекупленности/перепроданности. Основные преимущества: Двойная фильтрация: Использование Heiken Ashi Smoothed позволяет искл
Trend Master Chart – это индикатор тренда, который вам нужен. Он накладывает диаграмму и использует цветовое кодирование для определения различных рыночных тенденций/движений. Он использует алгоритм, который объединяет две скользящие средние и разные осцилляторы. Периоды этих трех элементов можно изменить. Работает на любом таймфрейме и любой паре. С первого взгляда вы сможете определить восходящий или нисходящий тренд и различные точки входа в этот тренд. Например, во время заметного восходяще
RBreaker Gold Indicators — это краткосрочная внутридневная торговая стратегия для фьючерсов на золото, которая сочетает в себе два подхода: трендовое следование и внутридневные развороты. Она позволяет не только получать прибыль при трендовом движении, но и своевременно фиксировать прибыль при развороте рынка, открывая позиции в новом направлении. Данная стратегия на протяжении 15 лет подряд входила в десятку самых прибыльных торговых стратегий по версии американского журнала Futures Truth. Она
# 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   — это умный и простой в использовании стрелочный индикатор, созданный для точной торговли. Он автоматически определяет наиболее эффективные уровни покупки и продажи по RSI для выбранного символа и таймфрейма, используя симуляции на основе исторических данных. Индикатор может использоваться как самостоятельная торговая система, так и как часть вашей существующей стратегии. Особенно полезен для внутридневной торговли. В отличие от классических индикаторов RSI, которые использу
Обзор продукта KMB Smart Pattern Analyzer PRO — это продвинутый индикатор технического анализа, предназначенный для обнаружения и ранжирования рыночных паттернов с высокой степенью соответствия внутри выбранного пользователем диапазона графика. Индикатор объединяет несколько аналитических механизмов в одном профессиональном инструменте: Анализ свечных паттернов Распознавание классических графических моделей Обнаружение гармонических структур Анализ структуры рынка / SMC Вместо отображения случай
Price Magnet — Индикатор зон плотности цены и уровней притяжения Price Magnet — это профессиональный аналитический инструмент, который определяет ключевые уровни поддержки и сопротивления на основе статистической плотности распределения цены (Price Density). Индикатор анализирует заданный исторический период и находит ценовые значения, на которых рынок находился дольше всего. Эти зоны выступают в роли «магнитов» — они притягивают цену или служат фундаментом для разворота. В отличие от стандартны
Premium level - это уникальный индикатор с точностью правильных прогнозов  более 80%!  Данный индикатор тестировался более двух месяцев лучшими Специалистами в области Трейдинга!  Индикатор авторский такого вы больше не где не найдете!  По скриншотах можете сами увидеть точностью данного инструмента!  1 отлично подходит для торговли бинарными опционами со временем экспирации на 1 свечу. 2 работает на всех валютных парах, акциях, сырье, криптовалютах Инструкция: Как только появляется красная стре
META TREND PRO   — это трендовый инструмент, который убирает догадки из торговли и показывает, где рынок уже принял решение. Индикатор выявляет ключевые точки, в которых происходит смена тенденции, тренда и структуры, а также подсвечивает зоны, куда возвращается цена для набора позиций крупными игроками. Вы видите не просто движение — вы понимаете логику, стоящую за ним. Все сигналы фиксируются после закрытия свечи, не перерисовываются и сохраняются на графике, позволяя уверенно анализировать си
Индикатор кумулятивной дельты Как считает большинство трейдеров, цена движется под давление рыночных покупок или продаж. Когда кто-то выкупает стоящий в стакане оффер, то сделка проходит как "покупка". Если же кто-то наливает в стоящий в стакане бид - сделка идет с направлением "продажа". Дельта - это разница между покупками и продажами. А кумулятивная дельта - разница между покупками и продажами накопленным итогом за определенный период времени. Она позволяет видеть, кто в настоящий момент конт
Бесплатная версия ProEngulfing - это QualifiedEngulfing с ограничением на один сигнал в день и меньшим количеством функций. Присоединяйтесь к каналу Koala Trading Solution в сообществе mql5, чтобы быть в курсе последних новостей о всех продуктах Koala. Ссылка для присоединения ниже: https ://www .mql5 .com /en /channels /koalatradingsolution Версия для MT4 этого продукта доступна по следующей ссылке: https ://www .mql5 .com /en /market /product /52023 Представляем ProEngulfing – ваш профессиона
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,
Данный индикатор показывает свечную комбинацию, основанную на додж, додж и пин-бар. Логика паттерна состоит в том, чтобы стать на стороне силы, после неопределенности. Индикатор универсален и пригодится для торговли бинарными опционами, форекс, ETF, криптовалютой, акциями. Индикатор поддерживает таймфреймы от М5 до МN включая нестандартные ТФ, представленные в МТ5.(М5,М6,М10,М12, М15, М20, М30, Н1, Н2, Н3, Н4, Н6, Н8, Н12, D1, W1, MN). Реализована возможность включения и отключения ТФ. Звуковые
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" создан для того, чтобы помочь трейдерам ориентироваться в рыночной ситуации. Индикатор показывает мультитаймфреймовые восходящие и нисходящие импульсы ценовых движений. Эти импульсы служат основой для определения "Базы" , состоящей из зон "Коррекции" ценовых движений, а также имеет "Потенциальные" зоны для возможных сценариев движения цены. Восходящие и нисходящие импульсы определяются на основе модифицированной формулы индикатора "Фракталы" Билла Вильямса. Последни
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
Усовершенствованная Мультитаймфреймовая версия скользящей средней Хала (Hull Moving Average - HMA). Особенности Две линии индикатора Халла разных таймфреймов на одном графике. Линия HMA старшего таймфрейма определяет тренд, а линия HMA текущего таймфрейма - краткосрочные ценовые движения. Графическая панель с данными индикатора HMA на всех таймфреймах одновременно. Если на каком-либо таймфрейме HMA переключил свое направление, на панели отображается вопросительный или восклицательный знак с текс
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 ,
Мультивалютный сканер Среднего Направленного Индекса(ADX) MT5 — это продвинутый торговый индикатор, предназначенный для одновременного анализа нескольких валютных пар. Он приносит пользу трейдерам, стремящимся улучшить процесс принятия решений, предоставляя сигналы в реальном времени на основе Среднего Направленного Индекса, что позволяет эффективно анализировать рыночные тренды. Этот инструмент упрощает торговый опыт, облегчая определение силы тренда и направленного движения, что делает его нез
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. Данный индикатор использует алгоритм математических вычислений . Данный алгоритм вычисляет остаток между обновленной моделью и
CleanTrend by NeuralTick  — индикатор тренда, который НИКОГДА не меняет прошлое. Устали от индикаторов, которые красиво рисуют историю, но перерисовывают сигналы в реальной торговле? Три причины, почему CleanTrend выбирают трейдеры, уставшие от шума и обмана: 100% НЕТ ПЕРЕРИСОВКИ. Цвет линии фиксируется навсегда. Ни один бар не изменится задним числом — проверьте в тестере. ДВОЙНОЙ ФИЛЬТР ШУМА. Сигнал появляется только когда цена прошла заданный порог (MinMove) и удержала направление неско
С этим продуктом покупают
Trend Sniper X
Sarvarbek Abduvoxobov
5 (10)
Trend Sniper X — это индикатор следования за трендом с несколькими таймфреймами для MetaTrader 5, который помогает трейдерам четко и точно определять направление тренда и потенциальные точки разворота. Информация о цене: Текущая цена является промо-ценой и может измениться по мере выпуска обновлений и новых функций. Канал Code2Profit Освойте рынок с помощью анализа нескольких таймфреймов! Технические характеристики Платформа MetaTrader 5 Тип индикатора Трендовый индикатор с несколькими таймфрейм
Время от времени я торгую по этой системе лично.  Оцени, мой мануальный BOMBER трейдинг на реальном счету - LIVE SIGNAL Каждый покупатель этого индикатора получает дополнительно Бесплатно: Авторскую утилиту "Bomber Utility", которая автоматически сопровождает каждю торговую операцию, устанавливает уровни Стоп Лосс и Тейк профит и закрывает сделки согласно правилам этой стратегии, Сет-файлы для настройки этого индикатора на различных активах, Сет-файлы для настройки Bomber Utility в режимы: "Мин
Neuro Poseidon - новый индикатор от Дарьи Резуевой. Он сочетает точные торговые сигналы с адаптивными уровнями TP/SL , в результате создавая максимально выгодные сделки! TO SWITCH TO   ENG   PLEASE CHOOSE IT IN THE UPPER-RIGHT CORNER OF THE WEBSITE Напишите мне и получите  Neuro Poseidon Assistant  в подарок для автоматизации вашей торговли! Что отличает его от других индикаторов? 1. Доказанная прибыльность на всех активах и таймфреймах 2. На графике присутствуют только подтвержденные сигналы н
Легенда возвращается! Entry Points Pro 10. Перезапуск легендарного индикатора, который 3 года держался в Топ-3 MQL5 Market. Сотни восторженных отзывов (589 на две версии), тысячи трейдеров торгуют с его помощью каждый день, 31 000+ скачиваний демо MT4+MT5. Я прочитал каждый ваш отзыв за пять лет — и вместо обещаний встроил в версию 10 ответы. От автора, который в рынке с 1999 года и ценит честность, свою репутацию и своих клиентов . Стартовая цена $99 действует только на первые 10 копий.   Сразу
Superhero
Ihor Otkydach
5 (3)
SUPERHERO индикатор - это мультивалютная торговая система, которая создана по принципу "Все включено". Индикатор самостоятельно анализирует рынок и дает сигналы когда открывать и когда закрывать сделки. Используются ордера Стоп Лосс и Тейк профит. Соотношение R:R = 1:1 Время от времени я торгую по сигналам этого индикатора лично, и вот какие результаты я получаю - LIVE SIGNAL Эта система может присылать на смартфон PUSH-уведомления, так что вы сможете делать сделки "на ходу" без привязки к ПК. О
UZFX {SSS} Scalping Smart Signals v4.0 MT5 — это высокопроизводительный торговый индикатор без перерисовки, разработанный для скальперов, дейтрейдеров и свинг-трейдеров, которым требуются точные сигналы в режиме реального времени на быстро меняющихся рынках. Разработанный компанией (UZFX-LABS), этот индикатор сочетает в себе анализ ценового действия, подтверждение тренда и интеллектуальную фильтрацию для генерации высоковероятных сигналов на покупку и продажу, предупреждающих сигналов и возможно
M1 SNIPER   — это простая в использовании торговая система. Это стрелочный индикатор, разработанный для тайм фрейма M1. Индикатор можно использовать как отдельную систему для скальпинга на тайм фрейме M1, а также как часть вашей существующей торговой системы. Хотя эта торговая система была разработана специально для торговли на M1, ее можно использовать и с другими тайм фреймами. Первоначально я разработал этот метод для торговли XAUUSD и BTCUSD. Но я считаю этот метод полезным и для торговли на
SR Liquidity   — это торговый индикатор, предназначенный для выявления скрытых зон, где концентрируется рыночная ликвидность и наблюдается наиболее сильная реакция цены. Эти особые зоны ликвидности выступают в качестве мощных уровней поддержки и сопротивления, предоставляя вам четкую картину того, где с наибольшей вероятностью произойдет разворот рынка. Вместо построения стандартных линий поддержки и сопротивления, индикатор SR Liquidity анализирует реальное поведение цены, выявляя зоны концентр
M1 Quantum MT5
Hamed Dehgani
4.27 (11)
Торговые сигналы в реальном времени с использованием M1 Quantum: Сигнал  (Сделка выполнена автоматически с помощью Quantum Trade Assistant , бесплатно включённого в этот продукт.) Последние новости : Выпущена версия 1.64. Теперь для всех сделок Stop Loss размещается за соответствующими зонами поддержки/сопротивления. Функция Smart Close также была улучшена для повышения производительности EA в этой версии. С 9 августа live-сигнал работает на версии 1.64. План цен: Текущая цена: $169 (Предложени
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: синтетический мульти-таймфрейм движок направленного смещения для MT5 ️ Летнее предложение к запуску — получите The Oracle Pro за 199 USD (для ранних покупателей). Цена растёт по мере спроса; финальная цена 399 USD. The Oracle Pro — это премиальный мульти-таймфрейм движок направленного смещения (bias) для MetaTrader 5, созданный для требовательных и профессиональных трейдеров. Он дисциплинированно отвечает на один вопрос: каково направленное смещение на каждом таймфрейме прямо се
Currency Strength Wizard   — очень мощный индикатор, предоставляющий вам комплексное решение для успешной торговли. Индикатор рассчитывает силу той или иной форекс-пары, используя данные всех валют на нескольких тайм фреймах. Эти данные представлены в виде простых в использовании индексов валют и линий силы валют, которые вы можете использовать, чтобы увидеть силу той или иной валюты. Все, что вам нужно, это прикрепить индикатор к графику, на котором вы хотите торговать, и индикатор покажет вам
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Представляем   Quantum TrendPulse   , совершенный торговый инструмент, который объединяет мощь   SuperTrend   ,   RSI   и   Stochastic   в один комплексный индикатор, чтобы максимизировать ваш торговый потенциал. Разработанный для трейдеров, которые ищут точность и эффективность, этот индикатор помогает вам уверенно определять рыночные тренды, сдвиги импульса и оптимальные точки входа и выхода. Основные характеристики: Интеграция SuperTrend:   легко следуйте преобладающим рыночным тенденциям и п
Bill Williams Advanced предназначен для автоматического анализа графика по системе " Profitunity " Билла Уильямса. Индикатор анализирует сразу четыре таймфрейма. Инструкция/Мануал ( Обязательно читайте перед приобретением ) Преимущества 1. Анализирует график по системе "Profitunity" Билла Уильямса. Сигналы помещает в таблицу в углу экрана и на график цены. 2. Находит все известные сигналы АО и АС, а также сигналы зон. Оснащён трендовым фильтром по Аллигатору. 3. Находит "Дивергентный бар", а та
Этот индикатор является уникальным, качественным и доступным инструментом для торговли, включающим в себя наши собственные разработки и новую формулу. В обновленной версии появилась возможность отображать зоны двух таймфреймов. Это означает, что вам будут доступны зоны не только на старшем ТФ, а сразу с двух таймфреймов - таймфрейма графика и старшего: отображение вложенных зон. Обновление обязательно понравится всем трейдерам, торгующим по зонам спроса и предложения. Важная информация Для макс
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: Синтетический фрактальный структурный анализ и подтверждённые входы для MT5 Обзор Azimuth Pro — многоуровневый индикатор свинговой структуры от Merkava Labs . Четыре вложенных уровня свингов, привязанный к свингам VWAP, определение ABC-паттернов, трёхтаймфреймная структурная фильтрация и подтверждённые входы на закрытой свече — один график, один рабочий процесс от микро-свингов до макро-циклов. Это не слепой сигнальный продукт. Это рабочий процесс, основанный на структуре, для т
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 и TP SkyHammer Signal Pro — это структурированный индикатор тренда и momentum, созданный для трейдеров, которым нужны четкие, зафиксированные и проверяемые торговые сигналы. Лучше всего он работает на младших таймфреймах, таких как M1 и M5 . Индикатор не пытается предсказывать вершины или основания рынка. Вместо этого он ожидает подтвержденную рыночную структуру, направление тренда, силу
Gartley Hunter Multi - Индикатор для поиска гармонических моделей одовременно на десятках торговых инструментов и на всех возможных ценовых диапазонах. Инструкция/Мануал ( Обязательно читайте перед приобретением ) | Версия для МТ4 Преимущества 1. Паттерны: Гартли, Бабочка, Акула, Краб. Летучая мышь, Альтернативная летучая мышь, Глубокий краб, Cypher 2. Одновременный поиск паттернов на десятках торговых инструментов и на всех возможных таймфреймах 3. Поиск паттернов всех возможных размеров. От са
Представляем       Quantum Breakout PRO   , новаторский индикатор MQL5, который меняет ваш способ торговли в зонах прорыва! Разработан командой опытных трейдеров со стажем торговли более 13 лет,       Квантовый прорыв PRO       разработан, чтобы поднять ваше торговое путешествие к новым высотам с его инновационной и динамичной стратегией зоны прорыва. Quantum Breakout Indicator покажет вам сигнальные стрелки на зонах прорыва с 5 целевыми зонами прибыли и предложением стоп-лосса на основе поля
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 Pro GEM Signal Pro — это трендовый индикатор для MetaTrader 5, созданный для трейдеров, которым нужны более понятные сигналы, более структурированные торговые сетапы и более практичное управление рисками прямо на графике. Вместо того чтобы показывать только простую стрелку, GEM Signal Pro помогает представить всю торговую идею в более наглядной и удобной форме. Когда условия подтверждены, индикатор может отображать на графике цену входа, stop loss и цели take profit, помогая трейдеру
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 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: Квантовая Рыночная Операционная Система СКИДКА 70% ПОЖИЗНЕННЫЙ ДОСТУП (ОГРАНИЧЕНО) - ПРИСОЕДИНЯЙТЕСЬ К 2000+ ТРЕЙДЕРАМ Почему большинство трейдеров теряют деньги даже с «идеальными» индикаторами? Потому что они торгуют Единичными Концепциями в вакууме. Сигнал без контекста — это лотерея. Чтобы выигрывать стабильно, вам нужна КОНФЛЮЭНЦИЯ . RelicusRoad Pro — это не простой стрелочный индикатор. Это полная Количественная Рыночная Экосистема . Она отображает «Дорогу Справедливой Сто
Berma Bands
Muhammad Elbermawi
5 (11)
Индикатор Berma Bands (BBs) является ценным инструментом для трейдеров, стремящихся определить и извлечь выгоду из рыночных тенденций. Анализируя взаимосвязь между ценой и BBs, трейдеры могут определить, находится ли рынок в фазе тренда или диапазона. Посетите [ Блог Berma Home ], чтобы узнать больше. Berma Bands состоят из трех отдельных линий: Upper Berma Band, Middle Berma Band и Lower Berma Band. Эти линии наносятся вокруг цены, создавая визуальное представление движения цены относительно об
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
Другие продукты этого автора
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
Фильтр:
Нет отзывов
Ответ на отзыв