OVERVIEW The Normalized Volatility indicator is a technical indicator that gauges the amount of volatility currently present in the market, relative to the average volatility in the market. The purpose of this indicator is to filter out with-trend signals during ranging/non-trending/consolidating conditions. CONCEPTS This indicator assists traders in...
OVERVIEW The Volume Oximeter (VOXI) is a technical indicator that gauges the amount of volume currently present in the market, relative to the historical volume that was present before. The purpose of this indicator is to filter out with-trend signals during ranging/non-trending conditions. CONCEPTS This indicator assumes that trends are more likely to start...
The Fractal Dimension Index is a technical indicator that gauges the amount of volatility currently present in the market. The theory behind this indicator is that a value of 1.5 suggests the market is acting in a completely random fashion. As the market deviates from 1.5, the opportunity for earning profits is increased in proportion to the amount of...
I've edited the normal Bill Williams Alligator indicator to have a color fill that indicates the trend. There is a percentage range filter which checks if the 2 outer lines are enough far away from eachother to indicate a trend. The indicator also checks if the lines are below or above eachother in the right order as a last check to confirm Trend
While coding some filters into another indicator for Long/Short I noticed that ta.nearest.percentile might be the most useful tool in pinescript I've ever encountered. While percentile_nearest can be used for all kind of things I decided to code moving averages from it and made bands for bottom percentage and top percentage. The indicator will calculate the top %...
Purpose: This script shows when price is in a range or trending. When the green line rises above the threshold the price is trending. When the green line falls below the threshold it's ranging. You may try adjusting the lookback way far back to find more areas of resistance. Logic: It shows how many instances the current price has been crossed in the past...
Trend filter created based on donchian channel. I am using my custom donchian channel as base for this indicator: Concept is simple. We count how many times price is hitting donchian channel top or bottom without hitting the other side and keep counter for both. Thus: upCount is the number of times price hits donchian channel top without hitting bottom ...
Hello everybody! I'm not much of a coder but I do make indicators for myself for fun sometimes and found this one super cool. Hope it helps! Basically it's a moving average that changes colors based on the trend. How does it do it, you may ask? Simply put, it checks and makes sure that the open and close price is above the moving average, then it checks...
This is another adoption of Aligned Moving Average index study published earlier: Instead of summing up the aligned moving average strength, here we are checking the max and min values from X bars. If maxValue is above threshold, we show bullish bias by coloring candles lime. Similarly if minValue is below threshold we show bearish bias by coloring candles...
This Indicator is used to smooth the movement of scripts with SMMA and SEMA . Inspired by Chris Moody RSI-EMA . This indicator help to avoid any kind of small correction in trending direction and it filter small kind of correction. Small correction like 2-15 irregular corrective candles is filtered with the help of smooth moving average and Arnaud Legoux Moving...
This script tries to identify trending regions and ranging choppy regions. Green areas are trends; Red areas are consolidation areas. If you are a trend follower trader you should focus on green areas; If you are a harmonic pattern trader you should focus on red areas. I did not play with the parameters extensively, but as a rule of thumb higher parameters...
The indicator colours the candles either Green or Red depending on the following conditions:- If the N Bar Average Close > N Bar Average Open, the Bars are coloured Green. If the N Bar Average Close < N Bar Average Open, the Bars are coloured Red.