Screener version of MavilimW Moving Average : Short-Term Examples (by decreasing 3 and 5 default values to have trading signals from color changes) BUY when MavilimW turns blue from red. SELL when MavW turns red from blue. Long-Term Examples (with Default values 3 and 5) BUY when the price crosses over the MavilimW line SELL when the price crosses below...
This Pine Script code is a trading strategy that uses several indicators such as Fisher Transform (FTR), On-Balance Volume (OBV), Relative Strength Index (RSI), and a Weighted Moving Average (WMA). The strategy generates buy and sell signals based on the conditions of these indicators. The Fisher Transform function is a technical indicator that uses past prices...
The idea of this indicator is very similar to my previous published script called BBAS (Bollinger Bands Alert System). Just with little additions. In this case, we're using a Weighted Moving Average (ta.wma) instead of Simple Moving Average to calculate the basis line. A breakout in trading refers to a situation where the price of a security or asset moves...
Volatility Weighted Moving Average (VAWMA) : The Volatility Weighted Moving Average is a short and long term trend filter that weightes asset price buy "volatility significance" (percentages of total volatility over specified period) unlike that of the WMA which formulates an average based on the product of asset price and a deceding period significance . The...
Plots the first time the close price is above or below the colored portion of the chosen MA. The MA's formula is from TradeStation's indicator: "Colored Moving Averages Can Help You Spot Trends" . I modified that indicator with customizations that include: Buy and Sell signals. Each time the current bar closes above the MA, while it's red (bearish), there's a...
A simple form of recursive filtering using an adjustable gain and a memory length. The filter predicts the next sample based on the previous values and the calculated error.
This simple script creates a moving average system weighted by volatility. The moving averages are less sensitive to price action than the typical moving averages we use, and their crossovers can be used to identify extended trends. I've colored the background depending on trend. Ideally in the future, I'll draw long or short signals on-chart depending on the...
This Pine Script code defines an indicator called "CWTEMA" that plots a custom weighted triple exponential moving average (TEMA) on a chart. The indicator takes two inputs: a source series (usually the close price of a security) and a length parameter that specifies the number of periods over which the moving average is calculated. The code first defines a tema()...
This is a Pine Script for the "Cumulative Weighted Exponential Moving Average" (CWEMA) indicator. The script defines the CWEMA indicator using the ema() and wma() functions, which respectively calculate the exponential moving average and weighted moving average of a given data series. The cwema() function computes the weights for each value in the moving average...
This is a pine script that defines and implements a custom weighted moving average (WMA) indicator. The script first defines a function called wma that calculates the weighted moving average of a given data source (src) with a specified set of weights (weights) over a specified length (len). The wma function first computes the weighted sum of the source data by...
This indicator simply provides a moving average (SMA, EMA, etc. can be selected) which hides itself when touched by the price. Two potential uses: Set the growth rate to be slow, to highlight only very rapid moves on a chart. Use the default settings and change the averaging period until the MA line remains bright. This MA can then act as a good trailing...
A configurable fast and slow moving average combined to help visualize the current trend and potential changes in trend. Allows for specifying a fixed set of minutes or days instead of just bars so that the visualization is similar when changing time-frames.
It's a pretty simple script. Idea is to compute MAs with the length of Fibonacci numbers and then compute an average of them all. In the script, you can choose the type of MAs and how many Fibonacci numbers to use for it. You can also adjust the length of these MAs manually and choose the color of every one of them. Thanks to @MUQWISHI for helping me code...
This brings together a number of variables to produce trend predictions that could be utilized as decision-making tools. Uses the aforementioned price and volume derivatives - A moving average and three weighted moving averages (WMA1, WMA2, WMA3) - Super Trend Line (ST) - Opening Range Breakout on Five Minutes, Resistance Bands Pocket pivots, support, and price...
SOORY FOR MY EINGLISH ITS NOT MY NATIVE AND IM NOT GOING TO GOOGLE TRANSLATE THIS this is a beuaitful indicator that plot EMA that gat is calc from another ma and length for your choise so you will get an = 'ema on ma ' it can plot you more beautiful results and more smoothing results i added golden/death cross for all ma enjoy ! היי חברים זה בעצם אינדיקטור...
The Pivot-Point Weighted MA is very different from other weighted MAs, in the sense that the price weights can achieve negative values. For an example, if a length of 21 is used, the pivot point will be calculated as 13, meaning that the 13th prior candle will have 0 weight, and all prices before it will have a negative weight on the sum, so their impact is...
The Fibonacci Ribbon (FibRib) creates two Fibonacci moving averages: essentially a Fibonacci WMA and a Fibonacci EMA. The ribbon colors based on which is higher and where PA is relative to the ribbon. Optional colored candles shades candles the same color as the ribbon.