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.
Produits recommandés
BTC Trend Scalper MT5 Trend Capture Edition — Trading de Momentum de Précision pour BTCUSD Bonjour, traders ! Je suis le   BTC Trend Scalper MT5   — un Expert Advisor intelligent pour le trading du Bitcoin, conçu pour capturer les mouvements de momentum avec une gestion des risques disciplinée. Je ne suis   pas   un martingale. Je ne suis   pas   un système en grille. Je ne suis   pas   un robot de jeu. Je suis un   scalpeur suiveur de tendance   construit spécifiquement pour les traders qui c
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
Les motifs harmoniques sont les mieux adaptés pour prédire les points de retournement du marché. Ils offrent un taux de réussite élevé et de nombreuses opportunités de trading en une seule journée de trading. Notre indicateur identifie les motifs harmoniques les plus populaires en se basant sur les principes énoncés dans la littérature sur le trading harmonique. REMARQUES IMPORTANTES : L'indicateur ne repeint pas, ne prend pas de retard (il détecte un motif au point D) et ne redessine pas (le mo
L'indicateur construit les cotations actuelles, qui peuvent être comparées aux cotations historiques et, sur cette base, faire une prévision de l'évolution des prix. L'indicateur dispose d'un champ de texte pour une navigation rapide jusqu'à la date souhaitée. Option : Symbole - sélection du symbole que l'indicateur affichera ; SymbolPeriod - sélection de la période à partir de laquelle l'indicateur prendra des données ; IndicatorColor - couleur de l'indicateur ; HorisontalShift - décalage
LT Support Resistance - Identifiez les supports et les résistances de manière 100% automatique Êtes-vous fatigué de perdre du temps à tracer des lignes de support et de résistance manuellement ? Ou frustré parce que vous laissez toujours passer ce niveau crucial ? LT Support Resistance a été développé pour éliminer cette corvée, en identifiant et en marquant automatiquement les zones les plus pertinentes de votre actif sur plusieurs unités de temps (timeframes) simultanées. == L'AUTOMATISATION I
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 — Indicateur de Tendance Professionnel avec Calcul SL/TP HAS RSI Signal est un outil de trading puissant combinant des classiques éprouvés et des algorithmes modernes de filtrage du bruit. L'indicateur analyse le marché à travers le prisme des bougies Heiken Ashi Smoothed (HAS) et de l'oscillateur RSI , offrant au trader des signaux d'entrée clairs lors des retournements de tendance ou des sorties de zones de surachat/survente. Principaux Avantages : Double Filtrage : L'utilisatio
Trend Master Chart MT5
Frederic Jacques Collomb
Trend Master Chart est l'indicateur de tendance qu'il vous faut. Il se superpose au graphique et utilise un code couleur pour définir les différentes tendances/impulsions du marché. Il utilise un algorithme qui combine deux moyennes mobiles et différents oscillateurs. Les périodes de ces trois élément sont modifiables. Il fonctionne sur n'importe quel time-frame et n'importe quelle Pair. D'un coup d’œil vous pourrez identifier une tendance haussière ou baissière et les différents points d'entrée
RBreaker
Zhong Long Wu
RBreaker Gold Indicators est une stratégie de trading intraday à court terme pour les contrats à terme sur l'or, qui combine deux approches : le suivi de tendance et le retournement intraday. Elle permet non seulement de capturer les profits dans les marchés en tendance, mais aussi de prendre des bénéfices en temps opportun lors des retournements de marché et d'ouvrir une position en sens inverse. Cette stratégie a été classée pendant 15 années consécutives parmi les dix stratégies de trading l
# DRAWDOWN INDICATOR V4.0 - L'Outil Essentiel pour Maîtriser Votre Trading ## Transformez Votre Trading avec une Vision Complète de Vos Performances en Temps Réel Dans le monde exigeant du trading Forex et CFD, **connaître vos performances en temps réel** n'est pas un luxe, c'est une **nécessité absolue**. Le **Drawdown Indicator V4.0** est bien plus qu'un simple indicateur : c'est votre **tableau de bord professionnel** qui vous donne une vision claire, précise et instantanée de l'état de vo
Auto Optimized RSI   est un indicateur fléché intelligent et facile à utiliser, conçu pour fournir des signaux d’achat et de vente précis. Il utilise des simulations de trading sur des données historiques pour déterminer automatiquement les niveaux RSI les plus efficaces pour chaque instrument et période. Cet indicateur peut être utilisé comme un système de trading autonome ou intégré dans votre stratégie existante, et il est particulièrement utile pour les traders à court terme. Contrairement a
KMB Smart Pattern Analyzer PRO
Karwan Msto Mohammed Mohammed
Présentation du produit KMB Smart Pattern Analyzer PRO est un indicateur avancé d'analyse technique conçu pour détecter et classer les configurations de marché présentant un fort niveau de correspondance dans une zone du graphique définie par l'utilisateur. L'indicateur combine plusieurs moteurs d'analyse dans un seul outil professionnel : Analyse des configurations de chandeliers Reconnaissance des figures chartistes classiques Détection des structures harmoniques Analyse de structure de marché
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
Le niveau Premium est un indicateur unique avec une précision de plus de 80 % des prédictions correctes ! Cet indicateur a été testé par les meilleurs Trading Specialists depuis plus de deux mois ! L'indicateur de l'auteur que vous ne trouverez nulle part ailleurs ! À partir des captures d'écran, vous pouvez constater par vous-même la précision de cet outil ! 1 est idéal pour le trading d'options binaires avec un délai d'expiration de 1 bougie. 2 fonctionne sur toutes les paires de devises
Meta Trend PRO MT5
Roman Podpora
5 (1)
META TREND PRO       — est un outil de suivi de tendance qui élimine les conjectures en matière de trading et indique les décisions déjà prises par le marché. Cet indicateur identifie les points clés de changement de tendance et de structure, et met en évidence les zones de retournement des prix, offrant ainsi aux principaux acteurs l'opportunité de se positionner. Vous ne vous contentez pas d'observer le mouvement : vous en comprenez la logique. Tous les signaux sont enregistrés après la clôtur
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 For MT5
Ashkan Hazegh Nikrou
Version gratuite de ProEngulfing : QualifiedEngulfing, avec une limitation d'un signal par jour et des fonctionnalités réduites. Pour suivre les dernières actualités sur tous les produits Koala, rejoignez le canal Koala Trading Solution dans la communauté mql5 en cliquant sur le lien ci-dessous : https ://www .mql5 .com /en /channels /koalatradingsolution La version MT4 de ce produit est téléchargeable via le lien suivant : https ://www .mql5 .com /en /market /product /52023 Présentation de Pro
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 ,
L'Indice Directionnel Moyen (ADX) Scanner Multidevises MT5 est un indicateur de trading avancé conçu pour analyser simultanément plusieurs paires de devises. Il bénéficie aux traders cherchant à améliorer leur processus de prise de décision en fournissant des signaux en temps réel basés sur l'Indice Directionnel Moyen, permettant une analyse efficace des tendances du marché. Cet outil simplifie l'expérience de trading en facilitant l'identification de la force des tendances et du mouvement direc
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 par NeuralTick est un indicateur de tendance qui ne repeint JAMAIS le passé. Fatigué des indicateurs qui semblent parfaits sur l'historique mais qui repeignent leurs signaux en trading réel ? Trois raisons pour lesquelles les traders, lassés du bruit et de la tromperie, choisissent CleanTrend : 100 % PAS DE REPEINTURE. La couleur de la ligne est fixée pour toujours. Aucune barre ne changera rétroactivement — vérifiez-le dans le Strategy Tester. DOUBLE FILTRE À BRUIT. Un signal
Les acheteurs de ce produit ont également acheté
Trend Sniper X
Sarvarbek Abduvoxobov
5 (10)
Trend Sniper X est un indicateur de suivi de tendance multi-période pour MetaTrader 5 qui aide les traders à identifier la direction de la tendance et les points de retournement potentiels avec clarté et précision. Informations sur le prix : Le prix actuel est un prix promotionnel et est sujet à changement à mesure que les futures mises à jour et nouvelles fonctionnalités seront publiées. Canal Code2Profit Maîtrisez le marché grâce à l'analyse multi-période ! Spécifications techniques Plateforme
Divergence Bomber
Ihor Otkydach
4.89 (93)
De temps en temps, je trade moi-même selon ce système. Découvrez mon trading manuel « BOMBER » sur un compte réel : LIVE SIGNAL Chaque acheteur de cet indicateur reçoit également gratuitement : L’outil exclusif « Bomber Utility », qui accompagne automatiquement chaque opération de trading, fixe les niveaux de Stop Loss et de Take Profit, et clôture les positions selon les règles de la stratégie Des fichiers de configuration (set files) pour adapter l’indicateur à différents actifs Des set files
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
La légende est de retour : Entry Points Pro 10. La relance de l'indicateur légendaire qui s'est maintenu 3 ans dans le Top-3 du MQL5 Market. Des centaines d'avis enthousiastes (589 sur les deux versions), des milliers de traders l'utilisent chaque jour, 31 000+ téléchargements de la démo   MT4+MT5 . J'ai lu chacun de vos avis publiés en cinq ans — et au lieu de promettre, j'ai intégré les réponses directement dans la version 10. Par un auteur présent sur les marchés depuis 1999, qui tient à l'ho
Superhero
Ihor Otkydach
5 (3)
L'indicateur SUPERHERO est un système de trading multidevises conçu selon un principe « tout compris ». Cet indicateur analyse le marché de manière autonome et fournit des signaux indiquant quand ouvrir et clôturer des positions. Il utilise des ordres Stop Loss et Take Profit. Le rapport R:R est de 1:1. De temps en temps, je passe moi-même des ordres en me basant sur les signaux de ce système, et voici les résultats que j'obtiens — SIGNAL EN DIRECT Ce système peut envoyer des notifications push
L'indicateur UZFX {SSS} Scalping Smart Signals v4.0 MT5 est un indicateur de trading haute performance sans « repaint », conçu pour les scalpers, les day traders et les swing traders qui recherchent des signaux précis et en temps réel sur des marchés très volatils. Développé par (UZFX-LABS), cet indicateur combine l'analyse de l'action des prix, la confirmation de tendance et un filtrage intelligent pour générer des signaux d'achat et de vente à forte probabilité, des signaux d'alerte et des opp
M1 Sniper MT5
Oleg Rodin
5 (5)
M1 SNIPER   est un système d'indicateurs de trading facile à utiliser. Il s'agit d'un indicateur à flèche conçu pour l'unité de temps M1. Cet indicateur peut être utilisé seul pour le scalping sur l'unité de temps M1 ou intégré à votre système de trading existant. Bien que conçu spécifiquement pour le trading sur l'unité de temps M1, ce système peut également être utilisé avec d'autres unités de temps. Initialement, j'avais conçu cette méthode pour le trading du XAUUSD et du BTCUSD. Cependant, j
SR Liquidity   est un indicateur de trading conçu pour révéler les zones cachées où se concentre la liquidité du marché et où le prix réagit avec le plus d'intensité. Ces zones de liquidité spécifiques agissent comme de puissants niveaux de support et de résistance, vous offrant une cartographie claire des points où le marché est le plus susceptible de se retourner. Plutôt que de tracer des lignes de support et de résistance classiques, l'indicateur SR Liquidity analyse le comportement réel des
M1 Quantum MT5
Hamed Dehgani
4.27 (11)
Signaux de Trading en Direct avec M1 Quantum : Signal   (L’opération est exécutée automatiquement par le Quantum Trade Assistant , inclus gratuitement avec ce produit.) Dernières nouvelles : La version 1.64 a été publiée. Toutes les transactions disposent désormais d’un Stop Loss placé derrière les zones de support/résistance correspondantes. La fonction Smart Close a également été améliorée afin d’augmenter les performances de l’EA dans cette version. Depuis le 9 août, le signal en direct fonc
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   est un indicateur très puissant qui vous offre une solution tout-en-un pour un trading réussi. L'indicateur calcule la puissance de telle ou telle paire de devises en utilisant les données de toutes les devises sur plusieurs périodes. Ces données sont représentées sous la forme d'un indice de devise facile à utiliser et de lignes électriques de devise que vous pouvez utiliser pour voir la puissance de telle ou telle devise. Tout ce dont vous avez besoin est d'attacher
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Présentation de   Quantum TrendPulse   , l'outil de trading ultime qui combine la puissance de   SuperTrend   ,   RSI   et   Stochastic   dans un seul indicateur complet pour maximiser votre potentiel de trading. Conçu pour les traders qui recherchent précision et efficacité, cet indicateur vous aide à identifier les tendances du marché, les changements de dynamique et les points d'entrée et de sortie optimaux en toute confiance. Caractéristiques principales : Intégration SuperTrend :   suivez f
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)
La meilleure solution pour tout commerçant débutant ou expert ! Cet indicateur est un outil de trading unique, de haute qualité et abordable car nous avons intégré un certain nombre de fonctionnalités propriétaires et une nouvelle formule. Avec cette mise à jour, vous pourrez afficher des zones à double horaire. Vous pourrez non seulement afficher un TF plus élevé, mais afficher les deux, le graphique TF, PLUS le TF supérieur : AFFICHAGE DES ZONES NICHÉES. Tous les traders Supply Demand vont ado
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 Toolkit
Garry James Goodchild
5 (1)
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 Indicateur professionnel de signaux de tendance sans repaint, avec niveaux Entry, SL et TP verrouillés SkyHammer Signal Pro est un indicateur de tendance et de momentum structuré, conçu pour les traders qui recherchent des signaux clairs, fixes et vérifiables. Il fonctionne le mieux sur les timeframes courts, comme M1 et M5 . L’indicateur ne cherche pas à prédire les sommets ou les creux du marché. Il attend plutôt une structure de marché confirmée, une direction de tendance
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
Présentation       Quantum Breakout PRO   , l'indicateur révolutionnaire MQL5 qui transforme la façon dont vous négociez les zones d'évasion ! Développé par une équipe de traders expérimentés avec une expérience commerciale de plus de 13 ans,       Évasion quantique PRO       est conçu pour propulser votre parcours commercial vers de nouveaux sommets grâce à sa stratégie de zone de discussion innovante et dynamique. Quantum Breakout Indicator vous donnera des flèches de signalisation sur les z
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 est un indicateur de suivi de tendance pour MetaTrader 5, conçu pour les traders qui souhaitent des signaux plus clairs, des configurations de trade plus structurées et une gestion du risque plus pratique directement sur le graphique. Au lieu d’afficher simplement une flèche, GEM Signal Pro aide à présenter l’idée complète du trade de manière plus claire et plus lisible. Lorsque les conditions sont confirmées, l’indicateur peut afficher le prix d’entrée, le stop los
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 : Système d'Exploitation Quantitatif du Marché 70% DE RÉDUCTION ACCÈS À VIE (DURÉE LIMITÉE) - REJOIGNEZ 2 000+ TRADERS Pourquoi la plupart des traders échouent-ils même avec des indicateurs "parfaits" ? Parce qu'ils tradent des concepts isolés dans le vide. Un signal sans contexte est un pari. Pour gagner, il faut de la CONFLUENCE . RelicusRoad Pro est un Écosystème Quantitatif complet . Il cartographie la "Fair Value Road", distinguant le bruit des cassures structurelles. Arrête
Berma Bands
Muhammad Elbermawi
5 (11)
L'indicateur Berma Bands (BB) est un outil précieux pour les traders qui cherchent à identifier et à capitaliser sur les tendances du marché. En analysant la relation entre le prix et les BB, les traders peuvent déterminer si un marché est dans une phase de tendance ou de range. Visitez le [ Berma Home Blog ] pour en savoir plus. Les bandes de Berma sont composées de trois lignes distinctes : la bande de Berma supérieure, la bande de Berma moyenne et la bande de Berma inférieure. Ces lignes sont
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
Plus de l'auteur
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
Filtrer:
Aucun avis
Répondre à l'avis