Introduction
Pattern identification is the one highest-leverage ability in technical buying and selling. Get it proper and virtually any entry rule produces constructive expectancy; get it incorrect and even essentially the most refined entry system bleeds capital. The problem, nonetheless, is that the most well-liked pattern instruments — transferring averages, MACD, ADX — all have lag constructed into their development. They inform the dealer the place the market has been, not the place the structural stability of provide and demand at the moment sits. A 200-period EMA on a each day chart remains to be pointing up days after a serious reversal has begun.
Magnet Wall Indicator takes a unique method. It builds two adaptive bands above and under value utilizing the Wilder Common True Vary, and treats these bands as magnetic partitions — they maintain value throughout a pattern and flip when value closes outdoors them. The inactive wall freezes throughout noise; the energetic wall solely strikes when the structural aspect of the pattern has been damaged. The result’s a pair of pattern boundaries which are inflexible by means of regular volatility but decisive when a real reversal happens. Bars and bands recolor on each flip, an “L” or “S” label is plotted on the reversal bar, a purchase or promote arrow marks the change, and a whole alert bundle fires by means of popup, push, e mail, and sound channels.
The indicator is out there for each MetaTrader 4 and MetaTrader 5, with 100% equivalent visible and inside logic between the 2 platforms.
Obtain the indicator:Â
The non-repainting structure ensures that each sign printed on the chart is everlasting — bands, bar colours, labels, and arrows on closed bars by no means change as soon as written, and alerts fireplace solely on the just-closed bar after the indicator has completed its initial-load scan. This text explains the underlying algorithm — which is not a typical Supertrend — walks by means of each part of the indicator, and gives a whole parameter reference so merchants can configure it for their very own markets and timeframes.
What Are Pattern Bands and “Magnetic Partitions”
A pattern band is an adaptive line plotted above or under value at a distance proportional to latest volatility. Not like a static assist stage — which is a horizontal line drawn at a hard and fast value — a pattern band strikes with the market. As volatility expands, the band sits farther from value; as volatility contracts, the band tightens. Probably the most recognizable instance is the Bollinger Band, which makes use of a transferring common plus or minus a standard-deviation envelope.
The “magnetic wall” terminology comes from the way in which these specific bands behave throughout an energetic pattern. A genuinely trending market will repeatedly retrace towards the band on the pattern aspect with out breaking by means of it — consumers in an uptrend defend the decrease band, sellers in a downtrend defend the higher band. The band acts as whether it is magnetically attracting value, permitting the market to check it and bounce. When value lastly closes outdoors the wall, that protection has damaged, and the structural stability of the pattern has shifted.
For the dealer, a wall that holds is a trend-continuation sign. A wall that breaks is a reversal sign. The 2 states are mutually unique and collectively cowl each bar of value motion. There isn’t a “impartial” or ambiguous state — at each closed bar, both the wall held or it didn’t, and the indicator commits to that conclusion earlier than the following bar opens.
The Limitation of Static Pattern Indicators
Each common pattern indicator is both a smoothed transferring common or a momentum oscillator (RSI, MACD, ADX). Each share the identical structural flaw: they’re lagging by development. A 50-period EMA can’t flip till sufficient bars shut within the new path to tug the common round. A momentum oscillator can’t register a pattern change till rate-of-change has gathered sufficient directional bars to flip. Attempting to compensate with sooner lookbacks simply will increase noise sensitivity; slower lookbacks scale back noise however enhance the lag the dealer was attempting to keep away from.
Pattern bands sidestep the trade-off. They aren’t derived by averaging value — they’re computed from the vary of latest bars (Wilder ATR) and snapped to the excessive or low excessive on every closed bar. The bands monitor precise excessive factors moderately than a delayed mathematical common of them. When value makes a brand new native excessive, the higher wall strikes to that prime; when value stays contained in the earlier vary, each partitions freeze. No averaging, no momentum integration, no calculation-driven lag.
The Uneven Breakout-Anchor Algorithm
That is the place Magnet Wall Indicator differs from each common trend-band system available on the market, and the mechanism that offers the bands their “magnetic wall” habits. The algorithm is revealed beneath the title fontilab.getTrendBands within the TradingView public library and is essentially completely different from the extra widespread Supertrend. A typical Supertrend recomputes each the higher and decrease bands on each bar, no matter which aspect value is interacting with. The result’s two bands that always drift in lockstep — they by no means “lock” into place throughout a pattern, which suggests they shift at any time when volatility adjustments, even when the precise pattern construction is unbroken.
The Magnet Wall algorithm operates beneath three guidelines that fireside on each closed bar:
Rule 1 — Exterior-up bar. When the supply value closes above the earlier higher band, that is a structural bullish break. The brand new higher band snaps to the upper of the earlier higher band or the utmost of the present and former supply value. The decrease band could transfer all the way down to higher − delta  (the place delta = ATR × multiplier) solely if doing so doesn’t contradict an present structural ground — particularly, if the brand new candidate decrease is under the earlier decrease, or if the higher band itself did not transfer. In any other case the decrease band stays put. The online impact: the higher wall expands to the brand new excessive; the decrease wall holds until the structural ground has loosened.
Rule 2 — Exterior-down bar. Mirror picture. When the supply closes under the earlier decrease band, the brand new decrease band snaps to the decrease of the earlier decrease or the minimal of the present and former supply. The higher band could transfer all the way down to decrease + delta  provided that it doesn’t contradict an present structural ceiling — in any other case the higher holds.
Rule 3 — Inside bar. When the supply closes between the 2 bands (which is the most typical state throughout a pattern), each bands freeze. Neither wall strikes, the pattern studying stays unchanged, and value is allowed to retrace freely towards the trend-side wall with out disturbing the indicator’s state.
The asymmetry is the important thing. In Supertrend, each bands transfer each bar; in Magnet Wall, solely the band that value really broke strikes, and the inactive band freezes. Because of this throughout a pattern, the trend-side wall acts as a steady structural reference that value can repeatedly retrace towards with out flipping the indicator’s studying. The wall is “magnetic” — it attracts value by means of regular pullbacks however solely releases when value closes by means of it.
The pseudocode for the algorithm, with upperb_p , lowerb_p , upp_p , and low_p  denoting the earlier bar’s state values:
delta = Multiplier * Wilder_ATR(AtrLen) if supply > upperb_p: // outside-up upperb = max(upperb_p, max(supply, source_prev)) upp = upp_p low = upperb – delta lowerb = (low < lowerb_p) || (low > lowerb_p && upperb == upperb_p) ? lowerb_p : low else if supply < lowerb_p: // outside-down lowerb = min(lowerb_p, min(supply, source_prev)) upp = lowerb + delta low = low_p upperb = (upp > upperb_p) || (upp < upperb_p && lowerb == lowerb_p) ? upperb_p : upp else: // inside — freeze each upperb = upperb_p; lowerb = lowerb_p upp = upp_p; low = low_p midb = (upperb + lowerb) / 2 trend_up = midb > midb_prev trend_down = midb < midb_prev
The pattern studying is derived from the midline (upperb + lowerb) / 2 . When the midline rises bar-over-bar, the pattern is up; when it falls, the pattern is down. A sign change fires on the primary bar the place the midline reverses path — these are the bars the place the “L” / “S” labels and purchase / promote arrows are plotted on the chart.
Wilder ATR and Why It Issues
The Common True Vary is the band-distance driver. The indicator makes use of Wilder’s ATR — the 1978 J. Welles Wilder formulation: a recursive smoothing the place the present ATR equals the earlier ATR occasions (interval − 1)/interval  plus the brand new true vary divided by interval . This matches Pine Script’s ta.atr()  and MetaTrader’s built-in iATR()  precisely.
True vary captures gap-driven volatility — it’s the bigger of (excessive − low), |excessive − earlier shut|, and |low − earlier shut|. Essential for shares and indices that hole over weekends or information.
The default ATR interval is 5 ( AtrLen = 5 ) — shorter than the usual 14 utilized in most Wilder indicators. Magnet Wall makes use of a brief ATR as a result of the objective is to seize latest volatility for the wall distance, not a long-term common. With a 5-bar ATR, the band-width adapts inside a single session. Mixed with the default multiplier of seven.6, partitions sit 30–80 pips from value on main foreign exchange H1 — vast sufficient to soak up regular noise however tight sufficient that breakouts are decisive.
The multiplier is the first tuning knob: 4.0 produces tight, frequently-flipping bands appropriate for scalping; 12.0 produces vast bands that flip solely on main structural breaks appropriate for each day / weekly place buying and selling. The suitable setting depends upon the timeframe, the instrument’s noise profile, and the dealer’s threat tolerance.
Colour-Coded Bands and Bar Coloring
Magnet Wall attracts two bands on the chart always — the higher and decrease partitions. Every band recolors robotically at any time when the pattern path flips. Throughout an uptrend, each partitions are painted in ColorUp  (default: lime inexperienced); throughout a downtrend, each partitions are painted in ColorDown  (default: pink). On the bar the place the pattern flips, each colours are written to the identical bar in order that the road connects throughout the transition with out a visible hole.
The recoloring is applied beneath the hood with two buffers per band: an “up-color” buffer and a “down-color” buffer, with EMPTY_VALUE  written to whichever buffer is just not at the moment energetic. That is the cleanest method to swap a single visible line between two colours in MetaTrader’s buffer-based plotting mannequin, and it’s bit-identical between MT4 and MT5.
When ColorBars = true  (the default), the indicator moreover paints each candle within the active-trend leg with the pattern colour. That is the equal of Pine Script’s barcolor()  operate, which has no native MetaTrader counterpart. The implementation makes use of paired histogram buffers (a sample borrowed from MetaTrader’s personal built-in Heiken Ashi indicator): 4 buffers per colour, two paired pairs — one pair for the wick (high-to-low vertical line, skinny) and one pair for the physique (open-to-close vertical line, thick). The result’s coloured candles that overlay the chart’s native candles on each active-trend bar, giving an instantaneous visible learn on the prevailing path without having to have a look at the bands themselves.
The bar coloring will be turned off ( ColorBars = false ) for merchants preferring to maintain the chart’s native candle colours and use solely the bands because the pattern reference. Each colours ( ColorUp , ColorDown ) are user-configurable inputs — a dealer who prefers a darker inexperienced or a softer pink for chart aesthetics can set any colour from MetaTrader’s full 16M palette. The default values match the Pine Script supply’s colour.inexperienced  and colour.pink .
Sign Markers — Labels and Arrows
A pattern studying by itself is a steady state — at each bar, the pattern is both up or down. What the dealer must see distinctly is the change — the precise bar on which the pattern reversed. Magnet Wall plots two markers on each signal-change bar to make these moments instantly seen.
The “L” / “S” label is an OBJ_TEXT  marker positioned under the bar’s low (for a purchase / Lengthy sign) or above the bar’s excessive (for a promote / Brief sign). The textual content reads “L” or “S” within the pattern’s colour. The label is offset from the bar by 0.3 × ATR(30)  so it sits in clear area under or above the candle with out touching the wick. The label’s font dimension is configurable ( LabelFontSize , default 10) and the textual content makes use of Arial Daring for crisp rendering at any zoom stage.
The purchase / promote arrow is an OBJ_ARROW  marker (Wingdings character 233 for up, 234 for down) positioned on the bar’s excessive or low — nearer to the bar than the L/S label. Purchase arrows use ANCHOR_TOP , which places the arrow tip on the value stage and the arrow physique extending downward, so the arrow reads as “under the bar pointing up”. Promote arrows use ANCHOR_BOTTOM , which places the tip on the excessive and the physique extending upward — “above the bar pointing down”.
Each markers have impartial toggle inputs ( ShowLabels , ShowArrows ) and their colours are independently configurable — the L/S labels inherit ColorUp  / ColorDown , whereas the arrows have their very own ArrowBuyColor  and ArrowSellColor  inputs. A dealer who needs the bands and bars in a single colour scheme however the arrows in a unique scheme (for instance, neon arrows on a darkish theme) can configure them individually.
A vital implementation element: the purchase and promote arrows do not use OBJ_ARROW_BUY  or OBJ_ARROW_SELL . These object varieties are reserved by MetaTrader for trade-history visualization (exhibiting precise crammed orders on the chart) and incessantly render as nothing when created from inside an indicator. Magnet Wall makes use of the generic OBJ_ARROW  with specific Wingdings codes 233 and 234, which renders reliably on each dealer terminal and each chart configuration.
All marker objects are anchored to bar time (not bar shift), so they continue to be locked to their authentic bar whilst new bars type on the chart and the bar indexing shifts. Object names use the MWI_  prefix and embody the bar’s UNIX timestamp, making them distinctive per sign — re-runs of OnCalculate  are idempotent and don’t create duplicate markers. The OnDeinit  handler cleans up each MWI_  object so the chart is left clear when the indicator is eliminated.
No-Repaint Structure
Repainting is the most typical — and most damaging — flaw in trend-band indicators. An indicator that evaluates situations on the present, still-forming bar can present a sign that disappears when the bar closes at a unique value. Through the bar’s formation, value could briefly breach a band, inflicting the indicator to show a flip. If value then pulls again earlier than the bar closes, the flip vanishes as if it by no means existed. The chart appears to be like good in hindsight as a result of each “incorrect” sign was silently eliminated, however in reside buying and selling the dealer sees indicators that vanish on the following tick.
Magnet Wall eliminates repainting by means of three architectural guidelines:
Sign analysis solely on closed bars. The OnCalculate  loop processes bars from oldest to latest, however the purchase/promote sign logic, label placement, and arrow placement solely fireplace when the bar’s index satisfies shift >= 1  — which means the bar has totally closed. The present forming bar (shift = 0) isn’t the supply of a label or arrow.
Bar-time anchoring for all markers. Each label and arrow is positioned by way of ObjectCreate  with the bar’s UNIX timestamp because the anchor time. When new bars type, the bar shift indices change, however the timestamps don’t — so every marker stays locked to its authentic bar no matter what number of new bars seem after it.
Buffered state with platform-managed shift. The indicator maintains seven inside state buffers (higher band, decrease band, upper-anchor, lower-anchor, midline, final pattern state, and colour state) utilizing MetaTrader’s indicator-buffer system. MT4 and MT5 robotically shift these buffers as new bars type, so the state at any historic bar is preserved for the lifetime of the indicator on the chart.
Alerts have their very own safety: they fireplace solely when shift == 1  (the just-closed bar) and when prev_calculated > 0  (the indicator’s initial-load scan has accomplished). This prevents the indicator from spamming dozens of historical-signal alerts the second it’s hooked up to a chart with a few years of historical past. The primary time the indicator sees a recent sign after the preliminary load, precisely one alert fires per sign bar no matter what number of ticks arrive.
The mixture of those guidelines means the chart’s sign historical past is everlasting. A dealer can depart the indicator working for weeks, scroll again by means of a whole lot of bars of historical past, and each label and arrow they see will likely be on the identical bar the place it was initially plotted. The indicator’s monitor document is verifiable visually — there isn’t a risk {that a} flattering historic sign was retroactively eliminated.
The Alert System
Alerts are the dealer’s connection to the indicator when they don’t seem to be actively watching the chart. Magnet Wall ships with a whole alert bundle overlaying 4 occasion varieties and 4 supply channels.
Occasion varieties (toggled independently):
- Purchase sign — fires when the pattern reverses from all the way down to up. Default: enabled.
- Promote sign — fires when the pattern reverses from as much as down. Default: enabled.
- Pattern flip up — fires on each bar the place the midline rises after being flat or falling. Default: disabled. Helpful for merchants who need a higher-frequency trend-confirmation feed impartial of the purchase/promote sign logic.
- Pattern flip down — mirror of the flip-up occasion. Default: disabled.
Supply channels (additionally toggled independently):
- Popup — MetaTrader’s built-in Alert()  dialog. Default: enabled.
- Push notification — SendNotification()  to the person’s MetaQuotes cellular ID. Requires the dealer to set their MetaQuotes ID in Instruments > Choices > Notifications. Default: disabled.
- E mail — SendMail()  by way of the SMTP credentials configured in Instruments > Choices > E mail. Default: disabled.
- Sound — PlaySound()  with the file laid out in AlertSoundFile  (default: alert.wav , which ships with each MetaTrader set up). Default: disabled.
The alert message consists of the indicator title, the image, the timeframe, the sign value, and the timestamp of the sign bar — all the knowledge the dealer must act on the alert with out opening the chart. Per-bar dedupe ensures every sign fires its alert precisely as soon as: even when a number of ticks arrive on the just-closed bar (which might occur on extremely energetic pairs), the dedupe variable g_lastBuyTime  blocks any additional alerts for that bar.
Merchants who need each fine-grained pattern monitoring and clear reversal indicators can allow each the purchase/promote occasions (for actionable indicators) and the trend-flip occasions (for early-warning notifications). That is particularly helpful in unstable markets the place the pattern can flip a number of occasions inside a single session — the trend-flip alerts fireplace on each change, whereas the purchase/promote alerts solely fireplace on the primary flip after a confirmed prior pattern.
Sensible Buying and selling Workflow
The indicator is designed to be the trend-direction part of a whole buying and selling system, not a standalone trade-entry sign. A typical workflow integrates Magnet Wall with a number of entry-timing instruments.
Step 1 — Decide the pattern on a better timeframe. Drop the indicator on the H4 or D1 chart of the instrument you commerce. The pattern colour seen on the most recent bar — inexperienced or pink — defines the bias for all lower-timeframe entries. Solely think about purchase entries when the higher-timeframe pattern is up; solely think about promote entries when it’s down.
Step 2 — Use a decrease timeframe for entry timing. With the higher-timeframe bias confirmed, swap to your buying and selling timeframe (M15 for intraday merchants, H1 for swing merchants) and use a separate entry instrument — RSI ranges, candlestick patterns, assist/resistance bounces, or a second copy of Magnet Wall with a tighter multiplier — to time the precise entry. Magnet Wall gives the pattern, not the timing.
Step 3 — Pyramid into the pattern, not in opposition to it. When the higher-timeframe pattern is up and value retraces to the decrease wall on the buying and selling timeframe, that may be a high-probability lengthy entry. The wall has held, the bands are nonetheless inexperienced, and the bar coloring remains to be within the pattern colour. Every successive retracement-to-wall is a continuation entry, not a reversal entry.
Step 4 — Exit on a pattern flip. A pink label and down-arrow on the buying and selling timeframe is the exit sign for any open lengthy place. Conversely, a inexperienced label and up-arrow is the exit sign for any open quick. Merchants who need to give the pattern extra room can require affirmation from the upper timeframe earlier than exiting (i.e., await the H4 to additionally flip), accepting bigger drawdown however lowering exit whipsaws.
Step 5 — Keep flat throughout battle. When increased and decrease timeframes present completely different pattern colours, the market is in a transitional state — both a counter-trend retracement that can reverse, or the vanguard of a higher-timeframe flip. That is the lowest-edge surroundings for the indicator and an excellent time to remain flat or scale back place dimension.
This workflow is in line with the indicator’s design intent: it’s a trend-following instrument, not a counter-trend reversal scanner. Trades taken within the path of the pattern colour on the buying and selling timeframe — and aligned with the pattern colour on the upper timeframe — signify the highest-probability subset of all indicators the indicator generates.
Configuration Examples
The default settings ( AtrLen = 5 , Multiplier = 7.6 ) are tuned for H1 foreign exchange on main pairs. Adjusting these for different devices and timeframes is the first tuning job.
Tight bands — scalping and decrease timeframes
Setting Multiplier = 4.0  (and even 3.0) produces slim bands that flip incessantly. Appropriate for M5 and M15 on liquid foreign exchange pairs the place the dealer is focusing on 10–20 pip strikes per sign. The price is extra whipsaws — count on 30–50% of indicators to be reversed inside just a few bars.
| Setting | Worth |
|---|---|
| AtrLen | 5 |
| Multiplier | 4.0 |
| Supply | PRICE_CLOSE |
| ColorBars | true |
| ShowLabels | true |
| ShowArrows | true |
Default — H1 to H4 swing buying and selling
The unique Pine Script defaults. Appropriate for main foreign exchange pairs on H1 or H4. Two to 5 indicators per week per pair on H1, one to a few per week on H4.
| Setting | Worth |
|---|---|
| AtrLen | 5 |
| Multiplier | 7.6 |
| Supply | PRICE_CLOSE |
Vast bands — each day and weekly place buying and selling
Setting Multiplier = 12.0  produces vast bands that seize solely the most important structural shifts. Appropriate for D1 or W1 charts the place the dealer is positioning for multi-week tendencies. Sign frequency drops to some per quarter on most pairs.
| Setting | Worth |
|---|---|
| AtrLen | 5 |
| Multiplier | 12.0 |
| Supply | PRICE_CLOSE |
| AlertOnTrendUp | true |
| AlertOnTrendDown | true |
For cryptocurrency or unstable indices, elevate AtrLen  to 10 or 14 ( Multiplier  stays at 7.6) to easy out micro-volatility whereas conserving the band-distance proportional to the instrument’s typical vary.
Parameter Reference
Bands
| Parameter | Default | Description |
|---|---|---|
| Supply | PRICE_CLOSE | Value supply for band calculation. Selectable from the usual ENUM_APPLIED_PRICE checklist (Shut, Open, Excessive, Low, HL2, HLC3, HLCC4) |
| AtrLen | 5 | Wilder ATR interval — variety of bars for ATR smoothing |
| Multiplier | 7.6 | ATR multiplier — wider worth produces wider bands and fewer flips |
UI
| Parameter | Default | Description |
|---|---|---|
| ColorBars | true | Paint candles within the active-trend colour |
| ShowLabels | true | Present “L” / “S” textual content labels on each signal-change bar |
| ShowArrows | true | Present purchase / promote arrows on each signal-change bar |
| ColorUp | clrLime | Up-trend colour (bands, bars, label textual content) |
| ColorDown | clrRed | Down-trend colour (bands, bars, label textual content) |
| ArrowBuyColor | clrLime | Purchase-arrow colour (impartial of ColorUp) |
| ArrowSellColor | clrRed | Promote-arrow colour (impartial of ColorDown) |
| ArrowSize | 2 | Arrow dimension (1 to five) |
| LabelFontSize | 10 | Font dimension for the L / S textual content labels |
Alerts
| Parameter | Default | Description |
|---|---|---|
| AlertPopup | true | Present MetaTrader’s built-in popup dialog |
| AlertPush | false | Ship push notification (MetaQuotes ID required) |
| AlertEmail | false | Ship e mail (SMTP credentials required) |
| AlertSound | false | Play sound file |
| AlertSoundFile | alert.wav | Sound file — built-in MetaTrader sounds: alert.wav, alert2.wav, information.wav, okay.wav, and so on. |
| AlertOnBuy | true | Hearth alert on purchase (Lengthy) sign |
| AlertOnSell | true | Hearth alert on promote (Brief) sign |
| AlertOnTrendUp | false | Hearth alert on each up-trend midline flip (extra frequent than purchase indicators) |
| AlertOnTrendDown | false | Hearth alert on each down-trend midline flip |
Set up
MT4
The indicator is delivered as a single .ex4  binary bought from the MQL5.com Market. After buy, it installs robotically into the person’s MT4 terminal — discover it beneath Navigator > Indicators > Market and drag onto any chart.
For supply code (supplied to the customer): copy Magnet_Wall_Indicator.mq4  to <Terminal Information Folder>MQL4Indicators  and compile in MetaEditor with F7. Zero errors and 0 warnings anticipated.
MT5
Identical process as MT4 — set up by way of the MQL5.com Marketplace for an automated set up. For supply: copy Magnet_Wall_Indicator.mq5  to <Terminal Information Folder>MQL5Indicators  and compile in MetaEditor.
The MT5 model makes use of handle-based ATR ( iATR + CopyBuffer  into a worldwide array on each OnCalculate ) and creates all chart objects in OnTimer  (each 500 ms) per MT5’s object-rendering guidelines. The MT4 model creates objects immediately in OnCalculate . Each architectures produce equivalent visible output bar-for-bar.
Conclusion
Magnet Wall Indicator is constructed for merchants who need a structural, no-repaint pattern studying with out the lag of moving-average techniques or the fragility of ordinary Supertrend. The uneven breakout-anchor algorithm produces partitions that maintain by means of regular noise and flip decisively on real reversals. Colour-coded bands, optionally available bar coloring, sign labels, purchase/promote arrows, and a whole alert bundle give the dealer each visible cue and notification channel wanted to behave on the pattern.
The indicator is a trend-direction part to be mixed with the dealer’s most well-liked entry-timing instrument. In a multi-timeframe workflow it gives the structural pattern studying that just about each worthwhile buying and selling system depends on as its first enter.
Obtain the indicator:Â
Danger Disclaimer
Buying and selling overseas alternate and CFDs on margin carries a excessive stage of threat and will not be appropriate for all buyers. It’s possible you’ll maintain a loss exceeding your preliminary funding. Pattern Quorum is a technical evaluation instrument and doesn’t assure worthwhile trades. Previous efficiency is just not indicative of future outcomes. The authors settle for no legal responsibility for any loss arising from use of the indicator. Through the use of Pattern Quorum you acknowledge sole duty in your buying and selling selections.







