TRI - The Range Indicator by Jack Weinberg TRI - The Range Indicator by Jack Weinberg
Developed by Jack Weinberg, Range indicator compares intraday range with inter-day range
Intraday range is bar’s (high – low) and inter-day range is (Close – Close-1)
Author had a strong belief that crossing of intraday range outside the inter-day range is an indication of end of current trend
It oscillates between 0 to 100 levels
Interpretation
RI crossing above level 80 is a signal to exit
RI below 20 is indication that a new trend is about to take charge
RI is useful to filter signal given by other studies
Cari dalam skrip untuk "股价在8元左右净利润为正市值小于80亿的热门股票有哪些"
%G OscillatorIntroduction
Rescaling often involve bringing a series of values in a certain range, there have been many rescaling methods proposed in technical analysis such as the stochastic oscillator, relative strength index or the William %R to name a few. Rescaling the price allow the user to see when the security is overbought or oversold, in the case of the stochastic oscillator it can also determine the price position relative to the highest and lowest price over a user defined period window.
Computing highest and lowest over a certain period window involve calculating what is called a rolling maximum/minimum, those calculations have tried to be efficient but they can still remain relatively complex. This is why i propose a similar rescaling indicator that don't use rolling maximum/minimum for its calculation, the indicator can be interpreted like the stochastic oscillator since they are similar.
The Indicator
The indicator is based on the current price position relative to past observations, for example, if the indicator is equal to 80, this mean that the current price is greater than 80% of the k past observations, where k = 1, 2, 3...length .
The indicator offer many benefits such as a custom rescaling range, unlike the stochastic oscillator this step is directly integrated in the core calculations of the indicator, this can be done by changing the code in line 7 :
a = src > src ? Max : Min
where Max should be the maximum value of the indicator and Min the minimum value, therefore the indicator would lay in a range of (Max,Min).
here the indicator is in a range of (5,2), this mean that :
a = src > src ? 5 : 2
Conclusion
I proposed an alternative to the stochastic oscillator. Both indicators return similar results, advantages of the proposed indicators are its simple calculation and its ability to return custom ranges. I hope it find its use in the community.
Thanks for reading !
Fischy Bands (multiple periods)Just a quick way to have multiple periods. Coded at (14,50,100,200,400,600,800). Feel free to tweak it. Default is all on, obviously not as usable! Try just using 14, and 50.
This was generated with javascript for easy templating.
Source:
```
const periods = ;
const generate = (period) => {
const template = `
= bandFor(${period})
plot(b${period}, color=colorFor(${period}, b${period}), linewidth=${periods.indexOf(period)+1}, title="BB ${period} Basis", transp=show${period}TransparencyLine)
pb${period}Upper = plot(b${period}Upper, color=colorFor(${period}, b${period}), linewidth=${periods.indexOf(period)+1}, title="BB ${period} Upper", transp=show${period}TransparencyLine)
pb${period}Lower = plot(b${period}Lower, color=colorFor(${period}, b${period}), linewidth=${periods.indexOf(period)+1}, title="BB ${period} Lower", transp=show${period}TransparencyLine)
fill(pb${period}Upper, pb${period}Lower, color=colorFor(${period}, b${period}), transp=show${period}TransparencyFill)`
console.log(template);
}
console.log(`//@version=4
study(shorttitle="Fischy BB", title="Fischy Bands", overlay=true)
stdm = input(1.25, title="stdev")
bandFor(length) =>
src = hlc3
mult = stdm
basis = sma(src, length)
dev = mult * stdev(src, length)
upper = basis + dev
lower = basis - dev
`);
periods.forEach(e => console.log(`show${e} = input(title="Show ${e}?", type=input.bool, defval=true)`));
periods.forEach(e => console.log(`show${e}TransparencyLine = show${e} ? 20 : 100`));
periods.forEach(e => console.log(`show${e}TransparencyFill = show${e} ? 80 : 100`));
console.log('\n');
console.log(`colorFor(period, series) =>
c = period == 14 ? color.white :
period == 50 ? color.aqua :
period == 100 ? color.orange :
period == 200 ? color.purple :
period == 400 ? color.lime :
period == 600 ? color.yellow :
period == 800 ? color.orange :
color.black
c
`);
periods.forEach(e => generate(e))
```
MFI Divergence v2Edited the RSI div indicator by Libertus to use MFI & show on candles. V2 update filters the divs using stochastic oversold & overbought & removes the lagging signals (they were offset back by 1 bar).
Default settings were tuned for xbtusd 1hr; works well if after a signal you wait for a stochastic indicator to stop being oversold or overbought, so if eg. you see a cluster of sell signals at a top, wait for the stoch to cross below 80 before entry. Please backtest before trading with this, DYOR NFA GLHF!
Inverse Fisher Z-Score Introduction
The inverse fisher transform or hyperbolic tangent function is a type os sigmoid function (sometime called squashing function) , those types of functions can rescale a result in a certain range and are widely used in artificial intelligence. More in depth the fisher transform can make the correlation coefficient of a time series normally distributed, in practice if you apply the fisher transform to the correlation coefficient between a time series and a linear function you will end up with an estimate of the z-score of the time series. The inverse transform however can do the contrary, it can take the z-score and transform it into a rough estimate of the correlation coefficient, if your z-score is not smooth then you will have a non-smooth estimate of the correlation coefficient, that's quite nice no ?
The Indicator
The inverse fisher transform of the z-score will produce results in a range of 1/-1, here however i will rescale in a range of 100/0 because its a standard range for oscillators in technical analysis. Values over 80 indicate an overbought market, under 20 an oversold market. The smooth option in the indicator settings will make the indicator use a linearly weighted moving average as input thus resulting in a smoother result.
The indicator with smooth option.
Conclusion
I presented a new oscillator indicator who use the inverse fisher transform of a z-score. Using the fisher transform and its inverse can give a new shape to your indicator, make sure to control the scale of your indicator before applying the fisher transform, the inverse transform should be applied to values in range of 1/-1 but you can use higher limits (2/-2,3/-3...) , however remember that higher limits will approximate an heavy side step function (square shape) . I hope you will find an use to this indicator.
Thanks for reading !
Recursive RsiIntroduction
I have already posted a classic indicator using recursion, it was the stochastic oscillator and recursion helped to get a more predictive and smooth result. Here i will do the same thing with the rsi oscillator but with a different approach. As reminder when using recursion you just use a fraction of the output of a function as input of the same function, i say a fraction because if you feedback the entire output you will just have a periodic function, this is why you average the output with the input.
The Indicator
The indicator will use 50% of the output and 50% of the input, remember that when using feedback always rescale your input, else the effect might be different depending on the market you are in. You can interpret the indicator like a normal rsi except if you plan to use the 80/20 level, depending on length the scale might change, if you need a fixed scale you can always rescale b by using an rsi or stochastic oscillator.
Conclusion
I have presented an rsi oscillator using a different type of recursion structure than the recursive stochastic i posted in the past, the result might be more predictive than the original rsi. Hope you like it and thanks for reading !
BAHbO BB,RSI strategyThis script is using Bollinger Bands in combination with Oversold/Overbought RSI 2(20,80).
Trend Monster HeadquartersADX-DMI enhanced & modified for faster reaction
ADX (black line) above 80 = mega-trend peaked, reversal imminent, rare case scenario
ADX (black line) above 60 = trend topping out, reversal possible, depending on other indicators
ADX (black line) above 25 threshold = trend strenghening
DMI- (red line) - above 25 - bear trend strenghening
DMI+ (green line) - above 25 - bull trend strenghening
DMI- (red line) - coming off the bottom - bull trend weakening
DMI+ (green line) - coming off the bottom - bear trend weakening
Momentum & Williams %R This strategy join 2 power study indicators on the same plot: Willian %R and Momentum.
Willian %R can indicate the good time for you buy or sale. Less than -80 indicate good buying opportunity . Greater than -20 good sale opportunity.
Momentum can indicate the good price for buy or sale, in other words, can indicate the speed the price goes down or goes up.
By Baldasso, March 2019.
CMC Top 5 RSI ScannerScan the RSI for the top 5 cryptos now!
No need to switch between charts anymore. You just need to activate this script and you will have a global view of the current RSI status for your favorite coins. Feel free to edit the source code yourself to add / remove more coins to the scan list.
The transparency will change if the RSI go over the overbuy / oversell zone (default 80/20)
Also, you should display the label names and values on the chart (click on the gear settings at the bottom of your chart > Select "Labels" > Select "Indicator Name label" & "Indicator Last Value Label")
Enjoy!
BossHouse - CCI ExtendedBossHouse - CCI Extended ( An Extended version of the Original CCI ).
The commodity channel index (CCI) is an oscillator originally introduced by Donald Lambert in 1980.
Guideline
________
Lambert's trading guidelines for the CCI focused on movements above +100 and below −100 to generate buy and sell signals. Because about 70 to 80 percent of the CCI values are between +100 and −100, a buy or sell signal will be in force only 20 to 30 percent of the time. When the CCI moves above +100, a security is considered to be entering into a strong uptrend and a buy signal is given. The position should be closed when the CCI moves back below +100. When the CCI moves below −100, the security is considered to be in a strong downtrend and a sell signal is given. The position should be closed when the CCI moves back above −100.
Since Lambert's original guidelines, traders have also found the CCI valuable for identifying reversals. The CCI is a versatile indicator capable of producing a wide array of buy and sell signals.
CCI can be used to identify overbought and oversold levels. A security would be deemed oversold when the CCI dips below −100 and overbought when it exceeds +100. From oversold levels, a buy signal might be given when the CCI moves back above −100. From overbought levels, a sell signal might be given when the CCI moved back below +100.
As with most oscillators, divergences can also be applied to increase the robustness of signals. A positive divergence below −100 would increase the robustness of a signal based on a move back above −100. A negative divergence above +100 would increase the robustness of a signal based on a move back below +100.
Trend line breaks can be used to generate signals. Trend lines can be drawn connecting the peaks and troughs. From oversold levels, an advance above −100 and trend line breakout could be considered bullish. From overbought levels, a decline below +100 and a trend line break could be considered bearish.
Settings
_______
Show 0 line
Lenght
Source
Any help and suggestions will be appreciated.
Marcos Issler @ Isslerman
marcos@bosshouse.com.br
16x VWMACombination of 16 VWMAs to find out where the market makers are.
vwma 10/20/30 - red
vwma 40 - green
vwma 50/60/70/80 - orange
vwma 150/160/180/200 - blue
vwma 300/320/340/389 - black
APEX - RSI with MA [v1]The Relative Strength Index (RSI) is as a momentum oscillator originally developed by J. Welles Wilder. The indicator is calculated as a Ratio of higher closes to lower closes on a scale of 0 to 100.
If the indicator reaches values above 80 (some use 70 or 75) it means the instrument is overbought and if the values are below 20 (25 or 30) it is oversold. But be aware those are just terms oversold/overbought main oversold /overbought for a long time. In general values over 50 mean your instrument is in a bullish state and below 50 it is in a bearish state.
The indicator is most commonly used with the length of 14. Some use RSI in a much more aggressive manner with the length of 2 (also known as Connors RSI). Whereas others have used length up to 20.
Use greater length values on the lower the timeframe to help with the noise. On larger time frames, you should be looking at lower length values.
Williams %R IndicatorDeveloped by Larry Williams, Williams %R is a momentum indicator much like the Stochastic Oscillator and is especially popular
for measuring overbought and oversold levels. The scale ranges from 0 to -100 with readings from 0 to -20 considered overbought,
and readings from -80 to -100 considered oversold. Typically, Williams %R is calculated using 14 periods and can be used on intraday,
daily, weekly or monthly data.
This implementation is enhanced with CCI in the form of background colors as a confirming signal and an indication of a prevailing trend.
The Last 50 Overlaythis indicator will put a mark on the last 50 candle/bar.
for the use of "RSI 80 - 20 Trading Sytem: Learn to Trade Divergence, and Find a Low Risk Way to Sell Near The Top or Buy Near The Bottom " by TradingStrategyGuides.com
You can Free download the PDF here drive.google.com (GDrive)
Stochastic Bollinger StrategyBollinger defaults = 20, close, 2
Stochastic defaults = 13, 5, 5
Buy Signal (GREEN triangle):
BULLISH candle formed
Candle OPEN is LESS than LOWER Bollinger Band
Stochastic (K) is LESS than 20
Sell Signal (RED triangle):
BEARISH candle formed
Candle OPEN is GREATER than UPPER Bollinger Band
Stochastic (K) is GREATER than 80
Read more about the strategy and where to set buy stops and sell stops here: swing-trading-strategies.com
200/100 vs 190/80 EMA [jarederaj]Track the 200/100 EMA cross Vs the 180/90 EMA cross. Also, see the dates when these periods start on the chart.
deviation candleshello friends i built this script based on standard deviatin , but its stil not perfect , need some one to modify it so it has upper and lower boundaries betwwen 20 and 80 just like stochastic oscliato
RSI with Visual Buy/Sell Setup | Corrective/Impulsive IndicatorRSI with Visual Buy/Sell Setup | 40-60 Support/Resistance | Corrective/Impulsive Indicator v2.15
|| RSI - The Complete Guide PDF ||
Modified Zones with Colors for easy recognition of Price Action.
Resistance @ downtrend = 60
Support @ uptrend = 40
Over 70 = Strong Bullish Impulse
Under 30 = Strong Bearish Impulse
Uptrend : 40-80
Downtrend: 60-20
--------------------
Higher Highs in price, Lower Highs in RSI = Bearish Divergence
Lower Lows in price, Higher Lows in RSI = Bullish Divergence
--------------------
Trendlines from Higher/Lower Peaks, breakout + retest for buy/sell setups.
###################
There are multiple ways for using RSI, not only divergences, but it confirms the trend, possible bounce for continuation and signals for possible trend reversal.
There's more advanced use of RSI inside the book RSI: The Complete Guide
Go with the force, and follow the trend.
"The Force is more your friend than the trend"
All in one Moving Averages SIMPLIFIEDSame as All in one Moving Averages, but HMAs used are 55 & 80 and they are combined in just 1 moving average