This script has tri multiple moving average and timeframe: EMA, SMA, WMA, VWMA, SWMA, SMMA, DEMA, RMA ,HMA, TEMA, THMA, EHMA, Donchian, TMA, LSMA, McGinley, COVWMA, FRAMA, VIDYA and KAMA. It will continually be updated with new moving averages
Base of this Strategy is crossover of 12EMA on 26EMA. Also multiple other criteria has to meet for buy signal, Criterias mentioned below ////////////////////////////////// There two entry option to select. Either one or both can be selected: 1. Only 12/26 Cross over a. 12/26 crossover. b. RSI (14) value to be between a range (RSI is inbuilt, but lower and...
This is my attempt at smoothing the exponential moving average any its cousins. I literally just smoothed the source and alpha and this is what we got. I really like this because you get a nice smooth yet fast acting moving average that works better than a traditional simple moving average. This script also included directional alerts. Smooth EMA Smooth...
Pine Script version=3 Author CryptoJoncis Heikin-Ashi Smoothed The Heikin-Ashi Smoothed study is based upon the standard Heikin-Ashi study with additional moving average calculations. The following is the calculation formula for the bars: 1. The current bar Open, High, Low, Close values are smoothed individually by using the moving average type specified by the...
This is an extension of the Madrid Moving Average Ribbon public script to allow for different kinds of moving averages (the original allows only exponential and simple). Possible entries in the MA Type argument field are: sma (simple moving average) ema (exponential moving average) wma (weighted moving average) trima (triangular moving average) zlema...
Original script from ©akpaswaniitk. I just added MACD to filter out bad trades and alert function so that we get notified whenever indicator gives us an entry signal. Most of the false breakout has been removed but the remaining ones only pop up during consolidation, so it's wait for the retest before entry. Works better in continuous market. Also look at the...
ACTION ZONE-ATR MOD v0.1 DOCUMENTATION Overview This tradingview pine script strategy is mainly created to enrich my coding skill. It is a combination of “CDC-ACTIONZONE” and my personal studies of trading techniques in various sources e.g.book, course or blog. This strategy purposefully built to connect with my automatic trading bot. However, It will be very...
Step Generalized Double DEMA (ATR based) works like a T3 moving average but is less smooth. This is on purpose to catch more signals. The addition of ATR stepped filtering reduces noise while maintaining signal integrity. This one comes via Mr. Tools. Theory: The double exponential moving average (DEMA), was developed by Patrick Mulloy in an attempt to...
Hello, this script was made upon the request of aliergin63, one of my followers. I do not know exactly from whom it is quoted. (It may be author HighProfit.) Long position when 8 dema is over 20 dema and 63 dema, it opens a short position for the vice versa. Alarms have been added. %0.1 comission added. Regards. Note : DEMA = Double Exponential Moving Average
The Double Exponential Moving Average (DEMA) indicator was introduced in January 1994 by Patrick G. Mulloy, in an article in the "Technical Analysis of Stocks & Commodities" magazine: "Smoothing Data with Faster Moving Averages" It attempts to remove the inherent lag associated to Moving Averages by placing more weight on recent values. The name suggests this is...
RSI-Adaptive, GKYZ-Filtered DEMA is a Garman-Klass-Yang-Zhang Historical Volatility Filtered, RSI-Adaptive Double Exponential Moving Average. This is an experimental indicator. The way this is calculated is by turning RSI into an alpha value that is then injected into a DEMA function to output price. Price is then filtered using GKYZ Historical volatility. This...
About: I developed the original as an experiment to potentially replace or augment my BB and RSI based strategies. After some back-testing I could see some really interesting results but it wasn't quite where I wanted it, so after some tweaking and further back-testing, and adding in more MA options, here we are. Mostly tested on 1h and greater time-frames using...
// Fixed error message "Index should not be negative(-8)" // // @author lonestar108 // study(title = "3/9/27/9 Zero Lag EMA / EMA / Pivots / Dynamic Support", shorttitle="3/9/27/9 ZLEMA/EMA/Pivots/Support", overlay=true) src=close lengths=input(3, title="Short Period Length") length=input(9, title="Fast Period Length") length2=input(27, title="Slow Period...
Hello friends, All your popular moving average now in one indicator, also no need to open a lot of tabs to see where is that moving average at that time frame, with multi time frame feature, now u can see up to six multi time frame MA in the same chart with option to show/hide it list of moving averages: SMA Smooth SMA SuperSmooth MA EMA DEMA TEMA Triangular...
Indicator that shows buy/sell signals based on price action and volume as it relates to a double EMA. If the candle is above the double EMA, we look for candles with long wicks on the top indicating selling pressure. If the candle is below the double EMA , we look for candles with a long bottom wick indicating buying pressure. The user defined parameters are the...