Gaussian Signals and Candle MT4

The band on nearly every channel indicator you can download is sized by an ATR, while the line running down the middle of it comes from something else entirely. Two filters, two different lags, stapled together. The join is where the false signals live.

This one runs the true range through the same Gaussian filter as the price, at the same pole count and the same period. The band and the centre line turn on the same delay, because they are the same filter fed different data.

Where the usual versions drift

The theoryWhat most versions implementWhat this does
A Gaussian filter has a pole count, and each pole trades lag for smoothnessPoles fixed at 4, or no setting exposed at allFactor 1 to 9, with the binomial weights computed for whichever one you pick
Band width should react on the same delay as the centre lineATR(14) times a multiplier: a different filter with a different lagTrue range goes through the same filter, same poles, same period
Entering from below is not the same trade as entering from aboveOne fixed threshold in both casesThe threshold moves depending on where the bar opened
A reversal needs more evidence than a continuationSymmetric conditions both waysRed needs the open and the close under the lower band; green needs only the close over the upper

Row two is the one that costs money. When the band comes from ATR and the line comes from a smoother, the two disagree hardest exactly when volatility turns, which is exactly when you're deciding whether to act. You get a band that has already widened while the line hasn't moved, or the reverse.

What it draws

The channel. Three lines: the Gaussian filter itself and a band either side. Width comes from the filtered true range scaled by the Sensitivity input, so it widens in fast markets and tightens in quiet ones with nothing for you to adjust.

No candle colouring, and that's a platform limit rather than a choice. MQL4 has no coloured-candle plot. Faking one means drawing a second set of candles over yours with histogram buffers, which looks worse than it sounds, so this build leaves your candles alone. The channel carries the same reading: above the upper band is an extended trend, a whole body under the lower band is a committed down move, and inside the band the filter has no opinion. The MT5 build colours the candles for it.

Buy and Sell labels. Each sits on its own indicator buffer as well as a text label on the chart, so an EA can read the signal through iCustom without scraping objects. One signal per direction: after a Buy there is no second Buy until a Sell has happened.

It draws no entry, stop or target levels. No zones, no order blocks, no panel, no dashboard, and it reads only the chart it is placed on.

The signal rule worth knowing

The threshold for a Buy is not fixed. If the bar opened below the centre line, a Buy fires when the close crosses the centre line. If the bar opened at or above it, the Buy waits for a close through the upper band.

Coming up from underneath, it takes the midline cross. Already above it, and it wants the extra proof of a band break. Sell is not quite the mirror, and that is the part worth knowing. If the bar opened above the upper band, a Sell fires on a close back through that upper band; otherwise it waits for a close through the lower band. The pivot for a Buy is the centre line, the pivot for a Sell is the upper band, so a Sell triggers a little more readily from stretched territory than a Buy does from the bottom of a range. You can see it on any chart with a decent swing: labels near the bottom of a move sit on the middle line, labels inside a run sit on the outer band.

Settings

InputDefaultWhat it does
Factor6Pole count, 1 to 9. Lower turns faster and rougher, higher is smoother and later
Agility %55Filter period. Sets how wide the whole thing breathes
Sensitivity28Band width multiplier applied to the filtered true range
SourceLowPrice the filter runs on. Close and Median are the usual alternatives
2nd calculation methodoffLag-reduction variant. Faster, noisier, off by default for a reason
Fast response modeoffBlends the N-pole and 1-pole outputs. Same trade-off
Notification typenonePopup, push or email

If it feels late, drop the Factor before you touch the period.

Reading it

On the chartRead it as
Close clear of the upper bandTrend extended
Whole body under the lower bandThe down move has commitment
Price inside the bandNo read, and this is normal
Label on the centre lineCross from the other side of the filter
Label on the outer bandContinuation break while already on that side
Bands flat and narrowRange, and the labels here are the weak ones

Long: wait for a Buy label, check the band is sloping rather than flat, then drop to your execution chart and take your own trigger. The centre line is a reasonable place to trail behind. Short is the same inverted.

Skip it when the bands are horizontal and price is crossing the middle every few bars. It will keep printing labels in that state, alternating Buy, Sell, Buy, Sell as price saws through. That's not a fault to fix, it's a range.

What this version can't do

It's noisy in a range, and you should see the number rather than find out later. Over the last 500 bars of USDJPY H4 it printed 63 labels. XAUUSD H1 over the same span printed 37. Most of the difference comes from two sideways stretches. Trade every label and you'll churn.

There is no correct pole count for every symbol. Factor 6 with period 55 is a fair starting point on H1 and H4 and it's what ships. You'll want to change it per symbol and timeframe, and anyone who tells you their trend setting works everywhere is selling something.

The source defaults to Low, not Close, which sits the channel slightly below where you might expect. That's intentional, and it's an input.

No multi-timeframe. It reads the chart it's on. Nothing else.

No Telegram alerts on MT4. The shared notification library on this platform is older and covers popup, push and email only.

You won't find a win rate table in this listing, and I'd treat any indicator listing that has one with some care.

Honestly, the part that ate the most time wasn't the filter recursion. It was a hard-coded table of nine weights, 36, 84, 126 and so on, that I typed out in full before noticing they were just binomial coefficients. Two lines instead of forty, and I only proved it by running both versions side by side over a few thousand bars and diffing the output.

Questions you'll have

Does Gaussian Signals & Candle repaint? Closed bars, no. Every value comes from finished bars, and the state deciding whether the next label is allowed is stored per bar rather than in a running variable, so a recalculation reproduces the same history. The forming bar moves until it closes, like every trailing calculation ever written.

Gaussian Signals & Candle on M1? You can, and I wouldn't. The band is sized from true range, and on M1 that's mostly spread and noise, so you get labels with no move behind them.

Gaussian Signals & Candle best settings? Factor 6, period 55, sensitivity 28 is the shipped set and a fair start on H1 and H4. The period changes how wide the whole thing breathes; the factor changes how sharply it turns.

Gaussian Signals & Candle vs SuperTrend or a Keltner channel? Both of those size their band from ATR and put a different calculation in the middle. This uses one filter for both, which is the whole design. Whether you prefer that is a real question, and one chart will answer it.

Can an EA read the signals? Yes. Buy and Sell each have their own buffer, non-zero on the signal bar and zero otherwise.

MT5? There's an MT5 build listed separately. Same filter and the same signal rules, with two things this one can't do: it colours the candles green, red or neutral by their position against the band, and its alerts include Telegram as well as popup, push and email.

Support

Message me on MQL5 with a screenshot of the chart, plus symbol, timeframe and your Factor and period. That's normally enough for me to tell you what you're looking at. Updates are free.

Analysis tool. It places no trades and makes no profitability claim. Past price behaviour is not a guide to future price behaviour.

제작자의 제품 더 보기
This indicator presents an alternative approach to identify Market Structure. The logic used is derived from learning material created by   DaveTeaches (on X) Upgrade v1.10: add option to put protected high/low value to buffer (figure 11, 12) When quantifying Market Structure, it is common to use fractal highs and lows to identify "significant" swing pivots. When price closes through these pivots, we may identify a Market Structure Shift (MSS) for reversals or a Break of Structure (BOS) for co
This is addition of  Effective SV squeeze momentum  that add bolliger band and Keltner channel to chart window.  Squeeze momentum introduced by “John Carter”, the squeeze indicator for MT5 represents a volatility-based tool. Regardless, we can also consider the squeeze indicator as a momentum indicator, as many traders use it to identify the direction and strength of price moves. In fact, the Tradingview  squeeze indicator shows when a financial instrument is willing to change from a trending ma
FREE
Bheurekso Pattern with Alert
Minh Truong Pham
2 (1)
The Bheurekso Pattern Indicator for MT5 helps traders automatically identify candlestick pattern that formed on the chart base on some japanese candle pattern and other indicator to improve accurate. This indicator scans all candles, recognizes and then displays any candle patterns formed on the chart. The candle displayed can be Bullish or Bearish Engulfing, Bullish or Bearish Harami, and so on. There are some free version now but almost that is repaint and lack off alert function. With this ve
This script automatically calculates and updates ICT's daily IPDA look back time intervals and their respective discount / equilibrium / premium, so you don't have to :) IPDA stands for Interbank Price Delivery Algorithm. Said algorithm appears to be referencing the past 20, 40, and 60 days intervals as points of reference to define ranges and related PD arrays. Intraday traders can find most value in the 20 Day Look Back box, by observing imbalances and points of interest. Longer term traders c
The liquidity swings indicator highlights swing areas with existent trading activity. The number of times price revisited a swing area is highlighted by a zone delimiting the swing areas. Additionally, the accumulated volume within swing areas is highlighted by labels on the chart. An option to filter out swing areas with volume/counts not reaching a user-set threshold is also included. This indicator by its very nature is not real-time and is meant for descriptive analysis alongside other com
This is a Forex Scalping Trading Sytem based on the Bollinger Bands.  Pairs:Major Time frame: 1M or higher. Spread max:0,0001.  Indicators (just suggestion) Bollinger bands (20, 2); ADX (14 period); RSI   (7 period ). Y ou should only trade this system between 2am to 5am EST, 8am to 12am EST and 7.30pm to 10pm EST. Do not scalp 30 minutes before a orange or red news  report and not for a hour afterwards.   Setup: is for price to move above the lower or lower Bollinger Bands, RSI raise above the
FREE
The Breaker Blocks with Signals indicator aims to highlight a complete methodology based on breaker blocks. Breakout signals between the price and breaker blocks are highlighted and premium/discount swing levels are included to provide potential take profit/stop loss levels. This script also includes alerts for each signal highlighted.   SETTINGS   Breaker Blocks Length: Sensitivity of the detected swings used to construct breaker blocks. Higher values will return longer term break
OVERVIEW K-means is a clustering algorithm commonly used in machine learning to group data points into distinct clusters based on their similarities. While K-means is not typically used directly for identifying support and resistance levels in financial markets, it can serve as a tool in a broader analysis approach. Support and resistance levels are price levels in financial markets where the price tends to react or reverse. Support is a level where the price tends to stop falling and m
All about Smart Money Concepts Strategy: Market struture: internal or swing BOS, CHoCH; Orderblock; Liquity equal; Fair Value Gap with Consequent encroachment, Balanced price range; Level with Previous month, week, day level or in day level (PMH, PWH, PDH, HOD); BuySell Stops Liquidity (BSL, SSL); Liquidity Void Long Wicks; Premium and Discount; Candle pattern ... "Smart Money Concepts" ( SMC ) is a fairly new yet widely used term amongst price action traders looking to more accurately navigate
The indicator   returning pivot point based trendlines with highlighted breakouts . Trendline caculated by pivot point and other clue are ATR, Stdev.   The indicator also includes integrated alerts for  trendlines  breakouts   and foward message to Telegram channel or group if you want. Settings ·            Lookback bar: Default 200 is number of bar caculate when init indicator. ·            Length:  Pivot points  period ·            Slope Calculation Method: Determines how this lope is calcula
This all-in-one indicator displays real-time market structure (internal & swing BOS / CHoCH), order blocks, premium & discount zones, equal highs & lows, and much more...allowing traders to automatically mark up their charts with widely used price action methodologies. Following the release of our Fair Value Gap script, we received numerous requests from our community to release more features in the same category. //------------------------------------// Version 1.x has missing functions + PDAr
Breaker Blocks with Signals
Minh Truong Pham
3 (2)
The Breaker Blocks with Signals indicator aims to highlight a complete methodology based on breaker blocks. Breakout signals between the price and breaker blocks are highlighted and premium/discount swing levels are included to provide potential take profit/stop loss levels. This script also includes alerts for each signal highlighted.   SETTINGS   Breaker Blocks Length: Sensitivity of the detected swings used to construct breaker blocks. Higher values will return longer term break
ICT Concepts in MT4
Minh Truong Pham
The ICT Concepts indicator regroups core concepts highlighted by trader and educator "The Inner Circle Trader" (ICT) into an all-in-one toolkit. Features include Market Structure (MSS & BOS), Order Blocks, Imbalances, Buyside/Sellside Liquidity, Displacements, ICT Killzones, and New Week/Day Opening Gaps. It’s one kind of Smart money concepts.   USAGE:   Please read this   document  !      DETAILS Market Structure Market structure labels are constructed from price breaking a prior extreme
The FollowLine indicator is a trend following indicator. The blue/red lines are activated when the price closes above the upper Bollinger band or below the lower one. Once the trigger of the trend direction is made, the FollowLine will be placed at High or Low (depending of the trend). An ATR filter can be selected to place the line at a more distance level than the normal mode settled at candles Highs/Lows. Some features: + Trend detech + Reversal signal + Alert teminar / mobile app
The ICT Silver Bullet indicator is inspired from the lectures of "The Inner Circle Trader" (ICT) and highlights the Silver Bullet (SB) window which is a specific 1-hour interval where a Fair Value Gap (FVG) pattern can be formed. A detail document about ICT Silver Bullet here . There are 3 different Silver Bullet windows (New York local time): The London Open Silver Bullet (3 AM — 4 AM ~ 03:00 — 04:00) The AM Session Silver Bullet (10 AM — 11 AM ~ 10:00 — 11:00) The PM Session Silver Bullet (2
Sessions by Lux
Minh Truong Pham
This indicator shows when user set sessions are active and returns various tools + metrics using the closing price within active sessions as an input. Users have the option to change up to 4 session times. The indicator will increasingly lack accuracy when the chart timeframe is higher than 1 hour. Settings Sessions Enable Session: Allows to enable or disable all associated elements with a specific user set session. Session Time: Opening and closing times of the user set session in the  
Liquidity Swings
Minh Truong Pham
The liquidity swings indicator highlights swing areas with existent trading activity. The number of times price revisited a swing area is highlighted by a zone delimiting the swing areas. Additionally, the accumulated volume within swing areas is highlighted by labels on the chart. An option to filter out swing areas with volume/counts not reaching a user-set threshold is also included. This indicator by its very nature is not real-time and is meant for descriptive analysis alongside other com
The SuperTrend AI indicator is a novel take on bridging the gap between the K-means clustering machine learning method & technical indicators. In this case, we apply K-Means clustering to the famous SuperTrend indicator.   USAGE Users can interpret the SuperTrend AI trailing stop similarly to the regular SuperTrend indicator. Using higher minimum/maximum factors will return longer-term signals. (image 1) The displayed performance metrics displayed on each signal allow for a deeper interpretat
OVERVIEW A Lorentzian Distance Classifier (LDC) is a Machine Learning classification algorithm capable of categorizing historical data from a multi-dimensional feature space. This indicator demonstrates how Lorentzian Classification can also be used to predict the direction of future price movements when used as the distance metric for a novel implementation of an Approximate Nearest Neighbors (ANN) algorithm. This indicator provide signal as buffer, so very easy for create EA from this indi
An Implied Fair Value Gap (IFVG) is a three candles imbalance formation conceptualized by ICT that is based on detecting a larger candle body & then measuring the average between the two adjacent candle shadows. This indicator automatically detects this imbalance formation on your charts and can be extended by a user set number of bars. The IFVG average can also be extended until a new respective IFVG is detected, serving as a support/resistance line. Alerts for the detection of bullish/be
Consolidation is when price is moving inside a clear trading range. When prices are consolidated it shows the market maker placing orders on both sides of the market. This is mainly due to manipulate the un informed money. This indicator automatically identifies consolidation zones and plots them on the chart. The method of determining consolidation zones is based on pivot points and ATR, ensuring precise identification. The indicator also sends alert notifications to users when a new consolida
Wyckoff sweep and order block detector I got tired of marking the same structure by hand every morning, so I wrote this. It looks for one thing only: the Wyckoff sequence that ends with a liquidity sweep and a pullback into the order block that started the move. When all the pieces line up, it draws them and tells you. That's the whole job. It doesn't predict, it doesn't score setups out of ten, and it won't tell you how much to risk. It marks structure that's already there and saves you the ey
Created by imjesstwoone and mickey1984, this trade model attempts to capture the expansion from the 10:00-14:00 EST 4h candle using just 3 simple steps. All of the information presented in this description has been outlined by its creators, all I did was translate it to MQL4. All core settings of the trade model may be edited so that users can test several variations, however this description will cover its default, intended behavior using NQ 5m as an example. Step 1 is to identify our Price Ra
The Buyside & Sellside Liquidity indicator aims to detect & highlight the first and arguably most important concept within the ICT trading methodology,   Liquidity   levels. SETTINGS Liquidity Levels Detection Length: Lookback period Margin: Sets margin/sensitivity for a liquidity level detection Liquidity Zones Buyside Liquidity Zones: Enables display of the buyside liquidity zones. Margin: Sets margin/sensitivity for the liquidity zone boundaries. Color: Color option for buysid
The   Liquidation Estimates (Real-Time)   experimental indicator attempts to highlight real-time long and short liquidations on all timeframes. Here with liquidations, we refer to the process of forcibly closing a trader's position in the market. By analyzing liquidation data, traders can gauge market sentiment, identify potential support and resistance levels, identify potential trend reversals, and make informed decisions about entry and exit points. USAGE (Img 1)    Liquidation refers
The   ICT Unicorn Model   indicator highlights the presence of "unicorn" patterns on the user's chart which is derived from the lectures of   "The Inner Circle Trader" (ICT) . Detected patterns are followed by targets with a distance controlled by the user.   USAGE (image 2) At its core, the ICT Unicorn Model relies on two popular concepts, Fair Value Gaps and Breaker Blocks. This combination highlights a future area of support/resistance. A   Bullish Unicorn Pattern   consists out of:
Inversion Fair Value Gaps MT4
Minh Truong Pham
4.5 (2)
The Inversion Fair Value Gaps (IFVG) indicator is based on the inversion FVG concept by ICT and provides support and resistance zones based on mitigated Fair Value Gaps (FVGs). Image 1   USAGE Once mitigation of an FVG occurs, we detect the zone as an "Inverted FVG". This would now be looked upon for potential support or resistance. Mitigation occurs when the price closes above or below the FVG area in the opposite direction of its bias. (Image 2) Inverted Bullish FVGs Turn into Potenti
Overview The   Volume SuperTrend AI   is an advanced technical indicator used to predict trends in price movements by utilizing a combination of traditional SuperTrend calculation and AI techniques, particularly the k-nearest neighbors (KNN) algorithm. The Volume SuperTrend AI is designed to provide traders with insights into potential market trends, using both volume-weighted moving averages (VWMA) and the k-nearest neighbors (KNN) algorithm. By combining these approaches, the indicator
Introducing the Reversal and Breakout Signals   This innovative tool is crafted to enhance your chart analysis by identifying potential reversal and breakout opportunities directly on your charts. It's designed with both novice and experienced traders in mind, providing intuitive visual cues for better decision-making. Let's dive into the key features and how it operates: ###   Key Features:   Dynamic Period Settings:   Customize the sensitivity of the indicator with user-def
Introduction One of the patterns in "RTM" is the "QM" pattern, also known as "Quasimodo". Its name is derived from the appearance of "Hunchback of Notre-Dame" from Victor Hugo's novel. It is a type of "Head and Shoulders" pattern.   Formation Method   Upward Trend In an upward trend, the left shoulder is formed, and the price creates a new peak higher than the left shoulder peak . After a decline, it manages to break the previous low and move upward again. We expect the price to
필터:
리뷰 없음
리뷰 답변