This is an adaptive moving average based on a signal noise ratio. It's inspiration is frm Eugene Durenard's book Professional Automated Trading Theory and Practice. Shout out to CryptoStatistical for his implemenation of Durenard's concepts that became the basis for this script. Check out my breakout strategy based on this concept here .
SUMMARY: Standard Pivot (HLC3) with ATR leeway added to make it adaptive to market volatility. DESCRIPTION: Adaptive Pivot is an indicator utilizing the simplicity of HLC3 Pivots as a turning point (and sometimes a trend indicator) while addressing it's fixed and inflexible nature. Because the indicator is just a single line in the chart, the price may go near...
Introduction It is possible to use a wide variety of filters for the estimation of a least squares moving average, one of the them being the Kaufman adaptive moving average (KAMA) which adapt to the market trend strength, by using KAMA in an lsma we therefore allow for an adaptive low lag filter which might provide a smarter way to remove noise while preserving...
This script has been updated to Pine v4. Original script by JustUncleL (link in code)
Introduction I have been asked by @Coppermine and @Verbena to make bands that use volume to provide adaptive results. My first approach was to use exponential averaging, in order to do so i needed to quantify volume movement using rescaling with the objective to make the bands go away from each others when there is low volume, this approach is efficient and can...
Introduction This is a modification of an old indicator i made. This filter aim to adapt to market trend by creating a smoothing constant using highest and lowest functions. This filter is visually similar to the edge-preserving filter, this similarity can make this filter quite good for MA cross strategies. On The Filter Code a = nz(a ) + alpha*nz(error )...
@ChartArt got my attention to this idea. This type of moving average was originally developed by Michael R. Bryant (Adaptrade Software newsletter, April 2014). Mr. Bryant suggested a new approach, so called Variable Efficiency Ratio (VER), to obtain adaptive behaviour for the moving average. This approach is based on Perry Kaufman' idea with Efficiency Ratio...
The last of Ehlers Instantaneous Frequency Measurement methods. This is a more robust version of this script. I wrote it as a function, so you can simply copy and paste it into any script to add an adaptive period setting capability. Cheers, DasanC
Adapt To The Right Situation There are already some Adaptive Stochastic scripts out there, but i didn't see the concept of using different periods highest/lowest for their calculations. What we want for such oscillator is to be active when price is trending and silent during range periods. Like that the information we will see will be clear and easy to...
Another Adaptive Filter This indicator share the same structure as a classic adaptive filter using an exponential window with a smoothing constant. However the smoothing constant used is different than any previously made (Kalman Gain, Efficiency ratio, Scaled Fractal Dimension Index) , here the smoothing constant is inspired by the different formulations for...
An adaptive filtering technique allowing permanent re-evaluation of the filter parameters according to price volatility. The construction of this filter is based on the formula of moving ordinary least squares or lsma , the period parameter is estimated by dividing the true range with its highest. The filter will react faster during high volatility periods and...
This is the Adaptive Ehlers Filter. I had to unroll the for loops and array because TV is missing crucial data structures and data conversions (Arrays and series to integer conversion for values). I'm in the process of releasing some scripts. This is a very old script I had. This contains volatility ranges and can be used as trading signals. You can also see...
Ahrens Moving Average indicator script. This indicator was originally developed by Richard D. Ahrens (Stocks & Commodities V.31:11 (26-30): Build A Better Moving Average).
Sharp Modified Moving Average indicator script. This indicator was originally developed by Joe Sharp (Stocks & Commodities, V.18:1, More Responsive Moving Averages).
The KAMA will not change when the interval changes from day to something like 5 minutes or 30 minutes. Allows for more precise trading with the same indicator on a different interval.
Coders, I am working on this adaptive SMA. It has its pros and cons. It is a work in progress and I welcome any one that wants to add or change it. If you add or make positive changes please let me know. It is based off of daily range. Currently it is set to the open three days prior to the current open.