Gunzo_TV

{Gunzo} Trend Sniper (WMA with coefficient)

Gunzo_TV Mis à jour   
Trend Sniper is a trend-following indicator that sticks closer to the trend than others moving averages as it is using an upgraded weighted moving average implementation.

OVERVIEW :
It is typical to use a moving average indicator (SMA, EMA, WMA or TMA) to identify the trend of an asset. Standard moving averages indicators smooth the price and doesn’t stick very closely to the actual price, showing potential lagging information.

CALCULATION :
In order to have a trendline that sticks to the price, we are going to use a weighted moving average as it puts more weight on recent candles and less on past candles. The weight is usually calculated using the distance from current candle to the other candles used in the calculation. We have the following formula for the standard calculation as implemented in TradingView :
WMA_standard = (Price1 * Weight1 + …… + PriceN * WeightN)) / (Weight1 + …… + WeightN)
This “Trend Sniper” indicator uses an additional coefficient to alter even more the weight of each candle.
WMA_with_coefficient = (Price1 * (Weight1 - Coefficient) + …… + PriceN * (WeightN - Coefficient)) / ((Weight1 - Coefficient) + …… + (WeightN - Coefficient))

SETTINGS :
  • MA source : Source used for moving average calculation (ex : “close”)
  • MA length : Length of the moving average. Higher values will give a smoother line, lower values will give a more reactive line.
  • Use extra smoothing : Enable/disable usage of a EMA to extra smooth the line curve. If activated the indicator may be lagging, but it will also avoid many false buy/sell signals.
  • MA extra smoothing length : Length of the moving average of the extra smoothing.
  • Change candle colors : Enable/disable painting the candles of the chart with the colors of the weighted moving average.
  • Display buy/sell signals : Display buy/sell signals (circles) when the moving average is changing direction

VISUALIZATIONS :
This indicator has 3 possible visualizations :
  • Moving Average line : the line represents the weighted moving average that is following the price of the asset, when the line goes up we are in a uptrend (green line) when the line goes down we are in a downtrend (red line).
  • Candle coloring : the color of the moving average line can be applied to the candles of the chart for better readability.
  • Signals : Buy/Sell signals can be displayed at the bottom of the chart

USAGE :
This indicator can help analyze the trend directional changes :
  • First of all, if the moving average line is under the price (or above the price), then we can assume that the uptrend is strong (or downtrend is strong).
  • If the current candle crosses the moving average line, it is the first sign that the trend is weakening and possibly starting to revert.
  • If the weighted moving average is changing direction, then the trend change is confirmed and the color of the line changes
Notes de version:
Added alerts for trend direction change.
Added signals and alerts for trend weakening
Script open-source

Dans le véritable esprit de TradingView, l'auteur de ce script l'a publié en open-source, afin que les traders puissent le comprendre et le vérifier. Bravo à l'auteur! Vous pouvez l'utiliser gratuitement, mais la réutilisation de ce code dans une publication est régie par le règlement. Vous pouvez le mettre en favori pour l'utiliser sur un graphique.

Clause de non-responsabilité

Les informations et les publications ne sont pas destinées à être, et ne constituent pas, des conseils ou des recommandations en matière de finance, d'investissement, de trading ou d'autres types de conseils fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.

Vous voulez utiliser ce script sur un graphique ?