TradingView
KivancOzbilgic
14 de Ago de 2018 22:29

WILDER'S Moving Average by fr3762 KIVANC 

Bitcoin / DollarBitfinex

Descrição

The Wilder’s Moving Average indicator (Wilder’s Smoothed Moving Average ) was developed by Welles Wilder and introduced in his 1978 book, “New Concepts in Technical Trading Systems.” Mr. Wilder did not use the standard EMA formula; instead, the following formula is used: EMA = Input * K + EMA * (1-K), where K = 2 / (N+1). Then to find the Wilder’s Moving Average, the following calculation is performed: Input * K + EMA * (1-K), where K =1/N.

Type to use

Moving averages are commonly used to identify trends and reversals as well as identifying support and resistance levels. Moving averages such the WMA and EMA , which are more sensitive to recent prices (experience less lag with price) will turn before an SMA . They are therefore more suitable for dynamic trades, which are reactive to short term price movements. Moving averages such as the SMA move more slowly providing valuable information on the long dominant trend. They can however be prone to giving late signals causing the trader to miss significant parts of the price movement.

Trade Signals

Moving Average Crossovers: Moving average crossovers is a term applied when more than one moving average is used to generate a trade signal where traders will act when the shorter term moving average crosses the longer term moving average. A bullish crossover occurs when the shorter term moving average crosses above the longer term moving average (golden cross). A bearish crossover occurs where the shorter term moving average crosses below the longer term moving average (dead cross).

Price crossovers: A Price crossover is a term applied when a signal is generated where the price crosses a moving average. Bullish signals are given when the price moves above the moving average, bearish signals are given when the price moves below the moving average. Crossover trades are more likely to enjoy success when the moving average slopes are in the direction of the trade.

Support and Resistance: Moving averages can also act as a support level in an uptrend and resistance levels in a downtrend. If the average is widely followed orders in favour of the trend often cluster around the average. As markets are often driven by emotion and many players trade counter to the trend expect overshoots, to this extent the average should be used to identify support and resistance zones rather than exact levels.

from: mahifx.com/mfxtrade/indicators/wilders-moving-average


Developed by WELLES WILDER
Comentários
iancujianu67
Hi! Can you make a script for MACD with Wilder's Moving Averages instead of EMA? Thank you. That would be very interesting.
Halberstram
@iancujianu67, I would also be very interested in a MACD indicator with Wilder's. @KivancOzbilgic is this something that can be done easily? Thank you.
clusterTrade
can you insert alert "once" , so it alert only when verify condition buy or sell and not every minute or close of the bar , Thanks!!!
masteryoda65
Can an alert be created when Wilders moving average changes color. Going from downtrend to uptrend and vice versa.
ltkhai
hi. interested in the script.

can you help to convert to version 4 pine script?
MVPMC
@ltkhai,
//@version=4
//WELLES WILDER SMOOTHING / WILDER'S MOVING AVERAGE
//author: @fr3762 KIVANÇ
study("WILD MA", overlay=true)

malength = input(14, "length", minval=1)
float wild=na
wild :=nz(wild[1])+(close-nz(wild[1]))/malength

col1= wild>wild[1]
col3= wild<wild[1]
wildcolor = col1 ? color.green : col3 ? color.red : color.yellow

plot(wild, color=wildcolor, linewidth=2, title="WILD")
burgercrisis
@MVPMC, Thanks! This will help me convert other scripts as well!! You're a god! We miss you at Autoview!
mobby
Merhaba hocam öncelikle emekleriniz için çok teşekkür ediyorum, çok faydanız dokunuyor gerçekten. Bu indikatör yeşile dönünce, 1saatlik için altcoinlerde(binance'da) görmek istiyorum. Screener-Filters'de en yakın sonucu elde etmek için nasıl ayarlamalıyız acaba ?
Mais