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 趋势捕捉版 — 针对 BTCUSD 的精准动量交易 大家好,交易者们! 我是   BTC Trend Scalper MT5   — 一个智能的比特币交易专家顾问,旨在通过纪律严明的风险管理捕捉动量行情。 我 不是 马丁格尔策略。 我 不是 网格系统。 我 不是 赌博机器人。 我是一个 趋势跟踪型 scalper ,专为那些明白保护资本比追逐每一根蜡烛更重要的交易者而设计。 我的专长是什么? 比特币 (BTCUSD) 我的使命是什么? 在严格控险的同时,捕捉高概率的方向性行情。 为什么叫“趋势捕捉”? 许多比特币 EA 试图预测顶部和底部。 许多 scalper 对市场的每一次波动都过度交易。 我采取不同的方法。 我等待。 我通过蜡烛结构识别动量,通过趋势分析确认方向,然后仅在市场条件一致时入场。 当动量出现时,我参与。 当动量消失时,我离开。 没有情绪。 没有犹豫。 我的三层智能系统 第一层:动量蜡烛识别 我的入场系统刻意简单而有效。 对于买入: 前一根蜡烛收盘看涨。 对于卖出: 前一根蜡烛收盘看跌。 如果启
PZ Support Resistance MT5
PZ TRADING SLU
3.71 (7)
厌倦了绘制支撑线和阻力线? 支撑阻力 是一个多时间指标,可以自动检测并绘制图表中的支撑线和阻力线,并具有非常有趣的变化:随着时间的推移测试价格水平及其重要性的提高,线变得越来越粗。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 一夜之间增强您的技术分析 无需浏览图表即可检测重要的价格水平 一目了然地识别所有价格水平的相对优势 每次交易最多可节省半小时的绘图线 指标显示所有价格水平的期限 指示器不重涂 过去和现在的价格水平因接近程度而崩溃,并根据当前的市场行为进行了调整。在动作发生的地方绘制了线条,而不一定在峰值处绘制了线条。 价格水平随着时间的推移而被拒绝,变得越来越暗 定期清除不重要的价格水平以避免噪音 可自定义的时间范围选择和崩溃因子 它实现了电子邮件/声音/推送警报的突破 输入参数 指标设置:指标将从当前时间段读取价格,但您可以选择另一个。例如,您可以在H4图表中显示D1支撑线和阻力线。您还可以使用 价格水平密度 参数选择在图表上显示多少价格水平。 颜色设置:根据重要性输入所需的支撑线和阻力线颜色。 标签设置:(可选)可以在指示器中显示用于
和谐图案最适合预测市场转折点。和谐图案为您提供高胜率和一天内的高交易机会。 该指标识别了最受欢迎的和谐图案,这些图案预测市场反转点。 基于和谐交易书籍。 重要说明: 该指标不会重绘或滞后(它在D点检测到模式);它不会重新绘制(模式要么有效,要么取消)。 使用方法: 将指标拖放到您的MT5图表上。 将模式检测设置为TRUE(ABCD; Gartley)。 根据您的喜好调整偏差(较大的偏差=更多的模式;较小的偏差=更少的模式)。 根据您的喜好自定义颜色。 根据需要启用或禁用关于入场点、TP和SL的警报。 检测到模式时: 该算法在D点检测到模式。 如果启用了警报,它将通知您检测到的模式。 如果模式无效,则触发一个带有“模式已取消”消息的警报。 成功的模式在蜡烛关闭时触发“入场警报”。 如果价格达到TP1、TP2、TP3、TP4或SL,则会发出带有终端消息的警报。 价格现在为40美元,仅剩下几份副本,最终价格将为70美元。 发展计划: 该指标的当前版本(1.1)将检测Gartley和ABCD模式。 版本1.1将包括Butterfly、Bat和Crab模式。 未来版本将包括其他模式、潜在PRZ检
该指标建立当前报价,可以与历史报价进行比较,并在此基础上进行价格走势预测。指示器有一个文本字段,用于快速导航到所需日期。 选项: 符号 - 选择指标将显示的符号; SymbolPeriod - 选择指标从中获取数据的时段; IndicatorColor - 指示器颜色; HorisontalShift - 由指标绘制的报价移动指定的柱数; Inverse - true 反转引号,false - 原始视图; ChartVerticalShiftStep - 图表垂直移动(键盘上的向上/向下箭头); 接下来是文本字段的设置,您可以在其中输入日期,您可以通过按“回车”立即跳转到该日期。 接下来是文本字段的设置,您可以在其中输入日期,您可以通过按“回车”立即跳转到该日期。
LT Support Resistance - 100% 自动识别支撑位与阻力位 您是否厌倦了在手动绘制支撑线和阻力线上浪费时间?或者因为总是错过某个关键位置而感到沮丧?LT Support Resistance 的开发正是为了消除这一繁琐的工作,它能同时在多个时间周期(Timeframe)内,自动识别并标注出对您交易资产最具价值的区域。 == 关键位置的智能自动化 == 相比手动绘制线条(既主观又耗时),该指标能够通过分析历史价格,识别出显著的反转点,并绘制出价格“真实”尊重的支撑线与阻力线。为您带来更客观、更高效且基于数据支撑的盘面分析。 == 核心特性 == 100% 自动检测: 无需手动分析,自动识别支撑/阻力 多时间周期 (MTF): 直接在 M5 图表上直观查看 H1、H4、D1、W1 的关键位置 智能警报: 当价格触及、突破或在某一水平位盘整时发送通知 动态区域: 创建的是“区域”而非简单的“线条”,更加贴合价格行为(Price Action)的真实市场 兼容任何资产: 外汇、指数、股票、加密货币、大宗商品 视觉完全自定义: 颜色、样式、粗细、透明度均可自由配置 == 运
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 FIBO
Kirils Subins
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
Evgenii Savinov
HAS RSI Signal — 带有止损/止盈计算的专业趋势指标 HAS RSI Signal 是一款强大的交易工具,结合了经典指标与现代噪声过滤算法。该指标通过 Heiken Ashi Smoothed (HAS) 平滑蜡烛图和 RSI 震荡指标进行市场分析,在趋势反转或价格退出超买/超卖区域时,为交易者提供清晰的人场信号。 主要优势: 双重过滤: 使用 Heiken Ashi Smoothed 算法消除市场“噪音”,同时通过 RSI 确认动能强度。 自动计算点位: 指标不仅提供信号,还会根据当前市场波动率 (ATR) 自动计算 止损 (Stop Loss) 和 止盈 (Take Profit) 点位。 视觉直观: 信号以彩色蜡烛图的形式直接显示在主图表上,保持交易界面的整洁有序。 多维度通知: 内置终端弹窗警报、声音提示以及手机推送通知 (Push),确保您不会错过任何交易机会。 核心原理: 指标持续监控 RSI 的极端区域。当价格离开临界区且 HAS 算法确认方向转变时,即生成交易信号。ATR 参数允许止损和止盈根据市场当前的波动性进行动态调整。 核心参数设置: InpPeri
Trend Master Chart MT5
Frederic Jacques Collomb
Trend Master Chart。 它覆盖图表并使用颜色编码来定义不同的市场趋势/走势。 它使用结合了两个移动平均线和不同振荡器的算法。 这三个元素的周期是可以修改的。 它适用于任何时间范围和任何货币对。 您一眼就能识别出上升或下降趋势以及该趋势的不同切入点。 例如,在明显的上升趋势(浅绿色)期间,该趋势中的不同市场冲动将通过深绿色蜡烛显示。 可配置的警报将使您永远不会错过这些冲动之一。 MT4版本。 输入参数: Period 1: 快速周期移动平均线。 Period 2: 慢周期移动平均线。 Oscillator period :振荡器周期。 Sell/Buy alert: 市场冲动警报、趋势切入点。 Bullish/Bearish: 趋势变化时发出警报。 可以通过弹出/邮件和推送通知方式发出警报。 完全可配置的警报文本。 想要查看其他免费 SPARTACUS 指标, 请点击此处 SPARTACUS2024
RBreaker
Zhong Long Wu
RBreaker Gold Indicators 是黄金期货一种短线日内交易策略,它结合了趋势跟踪和日内反转两种交易方式,既能捕捉趋势行情的利润,又能在行情反转时及时止盈并顺势反手。 该策略曾连续15年被美国《Futures Truth》杂志评选为前十大最赚钱的交易策略之一,具有很长的生命周期,至今仍在国内外普遍使用与研究。 本指标结合了2026年期货黄金的走势,依据14日ATR指标,分别定义了突破系数A,观察系数B,反转系数R更合理的数值,非常不错的指标,已实现年稳定盈利,值得推荐~ 以上指标适合高波动品种,参数适合期货黄金,股指期货等,如果需要其他品种行情,需要单独设定 突破系数A,观察系数B,反转系数R,进行回测才能使用。 欢迎指标售后有问题可以加+V:504282029
# 回撤指标 V4.0 - 掌控交易的必备工具 ## 通过完整的实时绩效概览改变您的交易 在要求严苛的外汇和差价合约交易世界中,**了解您的实时绩效**不是奢侈品,而是**绝对必需**的。**回撤指标 V4.0** 不仅仅是一个简单的指标:它是您的**专业仪表板**,为您提供清晰、精确和即时的交易账户状态视图。 --- ## 为什么这个指标将永远改变您的交易 ### 90% 交易者面临的问题 您是否曾经遇到过以下情况之一? **您不确切知道自己的状况** - 您的 MT5 平台显示数字,但您必须心算您的真实表现。 **您发现回撤为时已晚** - 当您意识到已经损失了 15% 的资金时,已经太晚了,无法有效应对。 **您缺乏历史可见性** - 无法快速知道本周、本月或今年是否盈利。 **您浪费时间分析交易** - 您必须打开多个窗口、进行计算,并失去对市场的关注。 **您没有概览** - 有多少持仓?我的全局盈亏是多少?我今天的表现如何? ### 解决方案:一体化专业仪表板 **回撤指标 V4.0** 通过提供一个**完整的控制面板*
Auto Optimized RSI   是一款智能且易于使用的箭头指标,旨在实现精准交易。它利用基于历史数据的模拟,自动识别当前品种和时间周期中最有效的 RSI 买入和卖出水平。 该指标既可以作为独立的交易系统使用,也可以结合您的其他交易策略一起使用。尤其适合日内交易者使用。 与传统 RSI 指标使用固定的 70/30 水平不同, Auto Optimized RSI   会根据真实的价格行为和回测结果动态调整水平。它会跟踪胜率、回撤和平均盈亏等关键指标,从而适应市场当前的走势,并基于“实际有效”的逻辑发出信号。 当 RSI 穿越经过优化的关键区域时,指标会在图表上显示 Buy 和 Sell 箭头,帮助交易者找到成功率更高的进场机会。 购买后请务必联系我,以获取额外赠送的工具和专属交易建议! 祝您交易顺利,稳步盈利!
KMB Smart Pattern Analyzer PRO
Karwan Msto Mohammed Mohammed
产品概述 KMB Smart Pattern Analyzer PRO 是一款高级技术分析指标,旨在用户自定义的图表区间内识别并排序高匹配度的市场形态。 该指标将多个分析引擎整合到一个专业工具中: K线形态分析 经典图表形态识别 谐波结构识别 智能市场结构 / SMC 分析 与在整个图表上显示随机信号不同,该指标允许用户专注于特定的市场区域,并获得最强形态匹配、预期方向、突破水平、失效水平以及预测目标区域的结构化分析。 这使其非常适合希望以更清晰、更专业的方式分析价格行为和形态结构的交易者。 主要功能 识别并排序 Top 3 最佳匹配形态 支持: K线形态 经典图表形态 谐波形态 市场结构 / SMC 逻辑 用户自定义区间分析 显示: 形态类型 市场方向 Score 动量 突破水平 T1 / T2 / T3 目标水平 失效水平 市场结构信息 在图表上显示所选分析区域 可拖动并移动分析区域 清晰专业的信息面板 支持浅色和深色图表主题 适用于主观交易者、形态交易者和技术分析师 工作方式 将指标添加到图表。 选择或移动分析区域。 指标扫描所选区域。 对最强的形态候选进行排序。 面板显示最佳匹
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
Meta Trend PRO MT5
Roman Podpora
5 (1)
元趋势专业版     — 是一款趋势跟踪工具,它能消除交易中的猜测成分,并显示市场已经做出决定的位置。该指标能够识别趋势、趋势线和结构发生变化的关键点,并突出显示价格回升的区域,以便主要参与者进行建仓。 您不仅能看到价格走势,还能理解其背后的逻辑。所有信号均在K线收盘后记录,不会重绘,并保存在图表上,让您能够自信地分析形势并做出决策。交易目标(止盈)也会显示出来。 为了确保您对该指标的有效性完全有信心,我们为您提供自动统计数据。 每次方向改变后,该指标还会显示止损位及其智能渐进移动(Move SL),这至关重要。     减少   风险   按位置。 止损/止盈/风险回收 右侧内置面板显示当前全球趋势方向的市场入场点,并显示这些信号的历史数据。 任何时间范围/工具 该指标适用于所有时间间隔 -     从 M1 到 MN,也适用于所有仪器。 全球趋势统计 这有助于更好地理解。     最有利可图的机会究竟在哪里形成   以及如何根据真实的历史数据提取更多收入。 信号强度水平 并非所有反转信号都具有相同的强度,该指标充分考虑了这一点。这使您能够立即了解走势的强度并过滤掉微弱的信号。 SH
Cumulative Delta NG
Anton Polkovnikov
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
ProEngulfing的免费版本是QualifiedEngulfing,每天仅限一个信号并具有较少的功能。 加入mql5社区的Koala Trading Solution频道,了解所有Koala产品的最新消息,加入链接如下: https ://www .mql5 .com /en /channels /koalatradingsolution 此产品的MT4版本可通过以下链接下载: https ://www .mql5 .com /en /market /product /52023 介绍ProEngulfing - 您的专业吞没形态指标,适用于MT4。 通过ProEngulfing,体验精准度的力量。此前沿指标专为识别和突出外汇市场中的高质量吞没形态而设计。ProEngulfing适用于MetaTrader 4,采用精确的形态识别方法,确保您仅接收最可靠的交易信号。 ProEngulfing如何运作: 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,
FDP Strong Point new
Yauheni Dashevich
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
Maximum Trend Arrows OT MT5
Mulweli Valdaz Makulana
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 ,
平均方向指数(ADX) 多货币扫描仪 MT5 是一种先进的交易指标,旨在同时分析多个货币对。它为希望通过基于平均方向指数提供实时信号来增强决策过程的交易者带来了好处,从而实现高效的市场趋势分析。 该工具通过简化趋势强度和方向移动的识别,优化了交易体验,使其成为采用 ADX 基础策略的交易者的重要资产。借助实时警报和用户友好的仪表板,交易者可以快速评估市场状况并做出明智的交易选择。 MQL产品安装指南 | 在 MT4/MT5 上更新已购买的MQL产品 | 常见故障排除指南 | 指标设置/指南 主要特点 缓冲区集成:将指标值暴露为可访问的缓冲区,允许 Expert Advisor 使用信号数据进行自动交易。 可视化箭头信号:在信号蜡烛上直接在图表上显示清晰的买入/卖出箭头,便于快速视觉分析。 快速且可回测:基于 MetaTrader 的本地 OnCalculate() 引擎构建,确保快速计算并与历史回测兼容。 弹出警报:在信号事件期间触发 MetaTrader 警报弹出窗口,确保交易者不会错过潜在的交易设置。 推送通知:向移动设备发送即时推送通知,使交易者能够在移动中监控信号。 电子邮件警
This indicator uses a mathematical calculation algorithm . This algorithm calculates the remainder between the updated model and the actual values and produces the possible progress of the graph on the graph. It is not a super prophet in trading, but it is very good for the trader when entering the market and to analyze it before entering. Applicable for all currencies. Данный индикатор использует алгоритм математических вычислений . Данный алгоритм вычисляет остаток между обновленной моделью и
来自 NeuralTick 的 CleanTrend — 这是一款绝不重绘历史的趋势指标。厌倦了那些在历史上看起来完美,但在实盘交易中却重绘信号的指标吗? 厌倦了市场噪音与欺骗的交易者选择 CleanTrend 的三大理由: 100% 无重绘。 线条颜色一经确定便永久固定。没有任何一根K线会事后改变 — 您可在策略测试器中亲自验证。 双重噪音过滤。 仅当价格移动超过设定的阈值 (MinMove) 并且 在若干根K线内保持方向 (ConfirmBars) 时,信号才会出现。告别盘整行情中的「锯齿」假象。 让您随时掌握行情的警报系统。 弹出窗口、声音、日志记录以及发送到您智能手机的推送通知 (MetaTrader 5 应用)。即使终端已关闭,您也能即时获知趋势变化。 CleanTrend 不会用繁杂的面板让图表变得混乱 — 只有干净的彩色线条:蓝色 (买入) 或 红色 (卖出)。它计算入场价格,并严格过滤每一次价格波动。 点击「更多」,查看与普通指标的全方位对比、现成的趋势入场策略以及所有配置建议。  CleanTrend 与 98% 的「趋势」指标有何不
该产品的买家也购买
Trend Sniper X
Sarvarbek Abduvoxobov
5 (10)
Trend Sniper X 是一款适用于 MetaTrader 5 的多时间周期趋势跟踪指标,帮助交易者以清晰、精确的方式识别趋势方向和潜在的反转点。 价格信息: 当前价格为促销价,随着未来更新和新功能的发布,价格可能会有所变动。 Code2Profit 频道 通过多时间框架分析掌握市场! 技术规格 平台 MetaTrader 5 指标类型 多时间周期趋势指标 运行时间周期 任何图表时间周期,可独立选择更高的时间周期 (M1–MN1) 主要交易品种 外汇、黄金 (XAUUSD) 及其他差价合约 (CFD) 推荐账户 任何账户类型 可视化 彩色趋势蜡烛 (买入/卖出/微弱/变化) + 买入/卖出箭头 附加模块 交易时段方框 (悉尼、东京、伦敦、纽约) 主要功能 多时间周期趋势分析: 直接在当前图表上投射更高时间周期的趋势方向,提供清晰的宏观视角。 弱势/不确定柱检测: 高亮显示趋势条件不明朗的柱线,让交易者避开震荡区域。 买入/卖出信号箭头: 在确认趋势变化后的柱线上自动绘制箭头,支持警报、推送和电子邮件通知。 一键开启/关闭面板: 图表上的按钮可切换指标,下拉菜单可立即切换分析时间周
Divergence Bomber
Ihor Otkydach
4.89 (93)
我偶爾會親自使用這個系統進行交易。 請評估我在真實帳戶上進行的手動 BOMBER 交易—— LIVE SIGNAL 购买该指标的每位用户将额外免费获得以下内容: 原创工具“Bomber Utility”,该工具会自动跟踪每一笔交易,设置止损和止盈点,并根据策略规则自动平仓; 适用于不同交易品种的指标设置文件(Set 文件); 三种不同风险模式下的 Bomber Utility 设置文件:“最低风险”、“平衡风险” 和 “观望策略”; 一套详细的 视频操作手册,帮助您快速完成安装、配置并开始使用本交易系统。 注意: 要获取以上所有赠品,请通过 MQL5 的私人消息系统联系卖家。 我为您介绍原创的自定义指标 “Divergence Bomber”(背离轰炸机),它是一套基于 MACD 背离交易策略 的“全功能”交易系统。 该技术指标的主要任务是识别 价格与 MACD 指标之间的背离,并发出交易信号(包括推送通知),指示未来价格可能的运动方向。平均而言,这些信号的准确率超过 98%。有关该指标如何工作的详细说明,请观看本页面上的视频演示。 该系统使用 止损订单 和 动态回撤平仓机制 来管理
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
Entry Points Pro for MT5
Yury Orlov
4.51 (148)
传奇回归:Entry Points Pro 10。 这款传奇指标曾 3 年稳居 MQL5 Market 前三,如今全面重启。 数百条热情好评(两个版本合计 589 条),每天有数千名交易者用它交易,演示版下载 31,000+   MT4+MT5  次。 五年来我读过你们的每一条评价——在第 10 版里,我没有给出许诺,而是把答案直接做进了产品。指标作者自 1999 年入市, 珍视诚信、自己的声誉和自己的客户 。 Entry Points Pro 给出的入场信号严格不重绘。 而且这一次不再只是作者的一面之词,而是可验证的事实:确认信号只在 K 线收盘后标出,自动化测试记录到 零重绘 (在 EURUSD、XAUUSD 和 BTCUSD 上共 2,486,568 次不变量检查——0 次违规)。测试方法完全公开——您可以在策略测试器中自行复现。 购买后请务必第一时间给我发私信。 我会发给您 扩展版说明书《交易者圣经》 ——使用本指标交易的完整指南——并告诉您如何免费获得 赠品:市场扫描器 ,它能同时分析多个品种和多个时间周期,并在一个界面上显示 Entry Points Pro 此刻在哪里表现
Superhero
Ihor Otkydach
5 (3)
SUPERHERO 指標是一款基於「全方位」原則設計的多貨幣交易系統。該指標能獨立分析市場,並提供開倉與平倉的交易訊號。它採用止損與獲利了結訂單,風險報酬比(R:R)為 1:1。 我偶爾會根據這個系統的訊號親自進行交易,以下是我獲得的結果—— 即時訊號 此系統可向您的智慧型手機發送推播通知,讓您無需綁定電腦,即可「隨時隨地」進行交易。這對於自營交易公司而言再適合不過了。 每位顧客皆可享額外好禮: 每位購買此指標的買家,都將收到我贈送的一項特別實用工具,該工具: 自動下達止損與獲利了結訂單 當價格達到目標水準時,系統會自動平倉 支援待執行訂單交易 支援均值交易模式 如果您希望將這款優秀且極為便利的工具作為禮物獲贈,請在購買 SUPERHERO 指標後,立即透過 MQL5 平台的私訊與我聯繫。此外,您還將獲得培訓課程「如何安裝與設定 SUPERHERO 並開始穩定獲利」的存取權限。 關於「超級英雄」策略 SUPERHERO 策略是利用價格回調時,順應趨勢方向進行盤中交易。 「超級英雄」程式碼內含數個強大的技術指標,用以分析價格通道的趨勢方向與波動範圍,並能識別在修正性回調後形成的盤中波段反
UZFX {SSS} 超短线智能信号 v4.0 MT5 是一款无重绘的高性能交易指标,专为在快速波动的市场中需要精准、实时信号的超短线交易者、日内交易者和波段交易者设计。该指标由 (UZFX-LABS) 开发,融合了价格行为分析、趋势确认和智能过滤技术,可在所有货币对和时间周期内生成高概率的买卖信号、预警信号以及趋势延续机会。 别再对交易犹豫不决了,开始遵循这一专为追求清晰、精准和纪律性市场执行的交易者设计的结构化信号系统吧。 我的建议* 最佳时间周期:15分钟及以上。 {H1} 是我的最爱。而且效果令人惊叹……!! 更新后的主要功能 • 自动买入和卖出信号检测 • 先进的反转识别逻辑 • 潜在市场反转前的早期预警信号 • 趋势延续确认信号 • 内置风险管理功能,包含入场点、止损点、TP1、TP2和TP3水平 • 完全可自定义的风险回报比 • 实时警报、声音提醒和移动端推送通知 • 带交易建议的专业信息面板 • 适用于所有MT5交易品种和时间周期 • 界面简洁、轻量且用户友好 为什么交易者选择 UZFX SSS? 大多数交易者亏损的原因在于入场过晚、平仓过早,或者缺乏明确的交
M1 Sniper MT5
Oleg Rodin
5 (5)
M1 SNIPER   是一款易于使用的交易指标系统。它是一个专为 M1 时间框架设计的箭头指标。该指标可以作为独立的系统在 M1 时间框架下进行剥头皮交易,也可以作为您现有交易系统的一部分使用。虽然该交易系统专为 M1 时间框架交易而设计,但它也可以用于其他时间框架。我最初设计此方法是为了交易 XAUUSD 和 BTCUSD。但我发现这种方法在其他市场交易中也同样有用。 指标信号既可以顺势交易,也可以逆势交易。我教授一种特殊的交易技巧,帮助您利用指标信号进行双向交易。该方法基于使用特殊的动态支撑位和阻力位区域。 购买后,您可以立即下载 M1 SNIPER 箭头指标。此外,我还为所有 M1 SNIPER 工具用户免费提供下方屏幕截图所示的 Apollo Dynamic SR 指标!这两个指标的组合可以帮助您更轻松、更准确地利用 M1 时间框架进行交易。 购买后请联系我,免费获取交易提示和奖励指标! 祝您交易成功!
SR Liquidity MT5
Oleg Rodin
5 (2)
SR Liquidity   是一款旨在揭示市场流动性高度集中且价格反应最剧烈的隐蔽区域的交易指标。这些特殊的流动性区域充当着强有力的支撑位与阻力位,为您清晰呈现市场最可能发生反转的位置。 SR Liquidity 指标并非简单地绘制常规的支撑/阻力线,而是通过分析实际的价格行为,识别买卖压力积聚的区域。这些区域实际上是推动市场真实波动的流动性池。通过在图表上直观呈现这些区域,该指标能助您在价格反应发生前预判走势——这意味着它实际上能够预测价格方向可能发生的变化。它将原始的价格行为转化为清晰且具实操价值的市场蓝图,标示出那些可能成为市场转折点的关键价位。 该指标适用于任何交易品种和时间周期——包括外汇、指数、金属、加密货币等。支持任意时间周期。 购买后请联系我,以获取交易指南及免费赠送的优质附加指标!
M1 Quantum MT5
Hamed Dehgani
4.27 (11)
使用 M1 Quantum 的实盘交易信号 : 信号 (交易由 Quantum Trade Assistant 自动 执行,并作为本产品 免费 提供。) 最新消息: 版本 1.64 已发布。现在所有交易的止损都会设置在相应的支撑位/阻力位之后。Smart Close 功能也进行了改进,以提升此版本 EA 的性能。 自 8 月 9 日起,实盘信号一直运行在版本 1.64 上。 价格计划: 当前价格: $169 (早期用户优惠) 下一阶段计划价格: $189 计划零售价: $299 开发者提示: 购买后请联系我,以获取 最新推荐的参数设置文件(Set File) 、交易建议,以及加入 VIP 支持群组 ,与其他 M1 Quantum 用户交流经验。 常见问题 - 设置文件 - 安装指南 M1 Quantum 是一款专业的 M1 交易系统,提供快速且精准的交易信号,并内置止损(Stop Loss)、止盈(Take Profit)以及智能资金管理功能。 M1 Quantum 包含专业的资金管理系统,通过专注于 连续盈利交易 ,帮助交易者更快地增长账户资金。 M1 Quantum 指标 的主
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 的合成多周期偏向引擎 ️ 夏季上市优惠 — 早期买家可以 199 USD 获得 The Oracle Pro。价格将随关注度上升;最终价格 399 USD。 The Oracle Pro 是一款面向高要求与专业交易者的 MetaTrader 5 高级多周期 偏向引擎 。它以纪律回答一个问题:当前每个周期的方向偏向是什么、强度如何、各周期之间的一致程度如何?一切仅在已收盘的 K 线上计算——绝不重绘。 The Oracle Pro 是一套多因子共识系统。它将专有指标与优化算法整合为单一而精密的共识向量,并在单个指标实例内,跨当前周期与更高周期的堆栈进行读取——而不是在多个图表上堆叠互不相关的工具。 它是 Oracle 共识方法的专业进化版:完整重建为高级操作控制台,面向希望在一个纪律化工作流中获得深度、多周期背景与背离洞察的交易者。 是偏向引擎,而非信号生成器 The Oracle Pro 明确自身定位。它是一款提供纪律化方向背景的 多周期多因子偏向指标 。它 不是 信号生成器:不承诺入场、出场或盈利。偏向是背景——你在其方向上交易自己的设置
货币强度向导是一个非常强大的指标,为您提供成功交易的一体化解决方案。该指标使用多个时间范围内所有货币的数据来计算这个或那个外汇对的力量。此数据以易于使用的货币指数和货币电力线的形式表示,您可以使用它们来查看这种或那种货币的力量。 您所需要的只是将指标附加到您要交易的图表上,该指标将向您显示您交易的货币的真实强度。该指标还向您显示买卖量压力的极值,您可以在顺势交易时利用这些压力。该指标还显示了基于斐波那契的可能目标。该指标可用于各种交易时间范围。该指标支持各种货币对的交易。   该指标为您提供所有类型的警报,包括推送通知。 购买后请联系我。我将与您分享我的交易技巧,并免费为您提供丰厚的红利指标! 祝您交易愉快,获利丰厚!
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
介绍 Quantum TrendPulse   ,这是一款终极交易工具,它将 SuperTrend   、   RSI 和 Stochastic 的强大功能整合到一个综合指标中,以最大限度地发挥您的交易潜力。该指标专为追求精准和效率的交易者而设计,可帮助您自信地识别市场趋势、动量变化以及最佳进入和退出点。 主要特点: 超级趋势整合: 轻松跟随当前的市场趋势并乘上盈利浪潮。 RSI 精度: 检测超买和超卖水平,非常适合把握市场逆转时机,可用作 SuperTrend 的过滤器 随机精度: 利用随机振荡在波动的市场中寻找隐藏的机会, 用作超级趋势的过滤器 多时间范围分析: 从 M5 到 H1 或 H4,在不同时间范围内关注市场动态。 可定制的警报: 当您的自定义交易条件得到满足时收到通知,这样您就不会错过任何交易。 无论您是新手还是经验丰富的交易员,   Quantum TrendPulse 都能为您提供所需的优势,帮助您增强策略并自信地进行交易。借助这一强大的指标,将洞察力转化为利润 — 掌控您的交易! ***购买 Quantum TrendPulse,即可免费获得 Quantum Tr
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)
任何新手或专业交易者的最佳解决方案! 该指标是一款独特、高质量、且价格合理的交易工具,因为我们已经整合了许多专有功能和新公式。 依据此更新,您将能够显示双重时间帧区域。 您不仅可以显示一个较高的时间帧,还可以同时显示图表时间帧,加上更高的时间帧:显示嵌套时区。 供需双方所有交易者都会喜欢它。 :) 重要信息披露 高级供需的最大潜力,请访问 https://www.mql5.com/zh/blogs/post/720245   想象您的交易如何得以改善,是因为您能够精准定位入场或目标位吗? 构建于新的底层算法,它可以更轻松地识别出买卖双方之间的潜在失衡。 这是因为它以图形方式展示供需最强劲区域,及其过去的表现(显示旧区域)。 这些功能旨在帮助您更轻松地发现最佳入场区域和价位。 现在您可以针对您的交易品种和时间帧来优化和编辑区域强度! 高级供需指标适用于所有产品和时间帧。 它是一个新的公式,非常新的功能是两个区域强度函数可由用户输入进行调整! 这在交易中是一大优势。 当您学习如何使用专有功能,例如带有价格游离最小 X 因子的区域强度时,您能够判断该区域强劲与否。 供需区域用作警报触发器。
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:MT5合成分形结构分析与确认入场 概述 Azimuth Pro 是 Merkava Labs 推出的多层级波段结构指标。四层嵌套波段层级、锚定波段的VWAP、ABC形态识别、三时间框架结构过滤以及收盘确认入场——一个图表,一个从微观波段到宏观周期的完整工作流程。 这不是盲目的信号产品。它是一个以结构为先的工作流程,专为重视位置、背景和时机的交易者打造。 ️ 夏季促销 — 庆祝夏至与 The Oracle Pro 上市:Azimuth Pro 七折优惠,现价 279 美元(原价 399 美元)。限时夏季优惠。 1. V2的变化 合成多时间框架引擎 高时间框架分析从零开始重建,采用与Meridian Pro相同的专有合成架构。更清晰的HTF背景、稳定的实时行为、无经典MTF同步问题。合成引擎还解锁了 固定比率时间框架级联 (x2、x3、x4、x6)——不再在经纪商的固定时间框架之间任意跳转,您可以按图表时间框架的固定倍数分析结构,在每个尺度上保持相同的分形关系。 确认入场箭头 作为稳定且可恢复的执行层而设计的收盘确认箭头。当ABC设置形成且自适应确认逻辑
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
Shengzu Zhong
5 (4)
SkyHammer Signal Pro Professional No-Repaint Trend Signal Indicator with Locked Entry, SL and TP Levels SkyHammer Signal Pro is a structured trend and momentum signal indicator designed for traders who want clear, fixed, and verifiable trading signals. It works best on lower timeframes such as M1 and M5 . The indicator does not try to predict tops or bottoms. Instead, it waits for confirmed market structure, trend direction, momentum strength, volatility quality, and target space before generati
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
介绍     Quantum Breakout PRO   ,突破性的 MQL5 指标,正在改变您交易突破区域的方式!由拥有超过13年交易经验的资深交易员团队开发,     量子突破 PRO     旨在通过其创新和动态的突破区域策略将您的交易之旅推向新的高度。 量子突破指标将为您提供带有 5 个利润目标区域的突破区域的信号箭头,以及基于突破框的止损建议。 它既适合新手交易者,也适合专业交易者。 量子 EA 通道:       点击这里 重要的!购买后请私信我领取安装手册。 建议: 时间范围:M15 货币对:GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD 账户类型:ECN、Raw 或 Razor,点差极低 经纪商时间:GMT +3 经纪商:IC Markets、Pepperstone with Raw 和 Razor 的点差最低 规格: 不重漆! 最多 5 个建议利润目标区域 建议止损水平 可定制的盒子。您可以设置自己的 Box Time Start 和 Box Time End。 接触 如果您有任何疑问或需要帮助,请通过私人消息与我联系。
CRT Multi-Timeframe Market Structure & Liquidity Sweep Indicator Non-Repainting | Multi-Asset | MT4 Version Available MT4 Version: https://www.mql5.com/en/market/product/162556 Full Setup Guide: https://www.mql5.com/en/blogs/post/767525 Indicator Overview CRT Ghost Candle HTF Fractal is a complete institutional-grade market structure toolkit for MetaTrader 5. It projects higher-timeframe candle structure, CRT trap levels, session levels, previous period highs and lows, pivot points, and a real
Ziva LSE Pro
Hassan Abdullah Hassan Al Balushi
ZIVA LSE Pro: Trade the Flow, Not the Noise ZIVA LSE Pro was developed around a simple belief: professional traders do not need more random signals; they need better context. This workflow reflects the ZIVA approach to filtering market noise and focusing on the liquidity and structural mechanics that influence price behavior. Most indicators treat the market like a static picture. ZIVA LSE Pro is built to read it as a dynamic environment where liquidity, structure, volatility, and execution con
Gem SIGNAL
Shengzu Zhong
5 (1)
GEM Signal Pro GEM Signal Pro 是一款適用於 MetaTrader 5 的趨勢跟隨指標,專為希望在圖表上獲得更清晰訊號、更有結構的交易設定,以及更實用風險管理的交易者而設計。 它不僅僅顯示一個簡單的箭頭,GEM Signal Pro 還能以更清晰、更易讀的方式呈現完整的交易思路。當條件確認完成後,指標可在圖表上顯示進場價、止損價與止盈目標,幫助交易者更有效率地評估交易設定。 運作方式 該指標首先根據其內部邏輯識別有效的初始訊號。 當確認條件滿足後,GEM Signal Pro 會在圖表上顯示完整的交易設定。這讓交易者可以更清楚地看到交易結構,並減少手動分析與計算的工作量。 圖表上的交易價位 對於已確認的訊號,GEM Signal Pro 可顯示: 進場價 止損價 止盈 1 止盈 2 止盈 3 風險報酬比 這讓交易設定更容易理解,也有助於讓圖表分析更有條理。 內建風險管理 風險管理是此指標設計的重要部分。 止損位基於近期市場結構,結合附近的擺動高低點與可選的 ATR 緩衝距離。這能讓交易價位更貼近當前市場條件,而不只是依賴固定距離。 圖表資訊面板 GEM Si
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: 量化市场操作系统 终身访问限时 70% 折扣 - 加入 2,000+ 交易员社区 为什么大多数交易者即使拥有“完美”指标也会失败? 因为他们在真空中交易 单一概念 。没有背景的信号是赌博。要持续获胜,您需要 共振 (CONFLUENCE) 。 RelicusRoad Pro 不是一个简单的箭头指标。它是一个完整的 量化市场生态系统 。它描绘价格运行的“公允价值之路”,区分市场噪音和真实的结构性突破。 停止猜测。开始用机构级“路”逻辑进行交易。 核心引擎:“Road” (路) 算法 系统的核心是 Road Algo ,一个实时适应市场条件的动态波动率通道。它投射出 安全线 (平衡) 和价格可能反转的 扩展水平 。 Simple Road: 典型市场的标准结构映射。 Smooth Road: 针对震荡盘整的降噪计算。 Breakout Road: 专为识别波动率扩张和爆发性走势而调整。 1. 算法动量与确认 我们的“剥头皮箭头”不只是简单的交叉。它们利用 高阶多项式逻辑 过滤噪音,确保信号与主周期一致。我们检测动量、价格行为和 Road 结构汇聚的精确入场
Berma Bands
Muhammad Elbermawi
5 (11)
Berma 波段 (BBs) 指标对于寻求识别和利用市场趋势的交易者来说是一种有价值的工具。通过分析价格与 BBs 之间的关系,交易者可以辨别市场是处于趋势阶段还是区间波动阶段。 访问[ Berma Home Blog ] 了解更多信息。 Berma 带由三条不同的线组成:上 Berma 带、中 Berma 带和下 Berma 带。这些线围绕价格绘制,直观地表示价格相对于整体趋势的变动。这些带之间的距离可以洞察波动性和潜在的趋势逆转。 当 Berma Bands 线相互分离时,通常表明市场正在进入横盘或区间波动时期。这表明缺乏明确的方向性。交易者可能会发现在这些时期内很难识别趋势,因此可能需要等待更清晰的趋势出现。 当 Berma Bands 线汇聚成一条线时,通常表示趋势环境强劲。这种汇聚表明存在明显的方向性偏差,因为价格波动性足以随趋势而变化。交易者可能会发现在这些时期更容易识别潜在的入场点和出场点,因为趋势的势头可以提供有利的交易机会。然而,重要的是要注意整体趋势中的潜在回调或修正。 Berma 带根据价格蜡烛图与上带和下带的相互作用提供明确的买入和卖出信号。当价格蜡烛图首
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
Haruki Sumiyoshi
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
筛选:
无评论
回复评论