This is experimental moving average doesn't use a period/length but instead buffers the price per share and transfers that price per share at a given ratio per bar while also releasing the previous values at a decay ratio. The idea is that volume is the engine by which the price moves but spikes in volume can cause noise. By having a buffer of price per share...
Library "MovingAverages" Contains utilities for generating moving average values including getting a moving average by name and a function for generating a Volume-Adjusted WMA. vawma(len, src, volumeDefault) VAWMA = VWMA and WMA combined. Simply put, this attempts to determine the average price per share over time weighted heavier for recent values. Uses a...
Uses two SuperTrend+ indicators to signal when a change in trend is confirmed. By using a minor trend within the major, a pullback after a turning point can signal a more optimal entry. See SuperTrend+ for more details.
Based upon popular SuperTrend (AKA: ATR Trailing Stop) indicator with the following differences and improvements: Defaults to using Volume-Adjusted WMA ( VAWMA ) for ATR. (Can still be configured to behave exactly like classic SuperTrend.) Can use SMA, EMA, WMA, VWMA, and VAWMA instead of just SMA. Confirmation close bars for avoiding false breaks. ...
VAWMA = VWMA and WMA combined. Simply put, this attempts to determine the average price per share over time, weighted heavier for recent values. Uses triangular algorithm to taper off values in the past (same as WMA does). Why use this? Let's say the earliest bar of the VWMA has a huge amount of volume. That means that when the next bar arrives, there will be...