1583浏览
Combined plot of RSI and StochRSI
版本注释:
Adjusted colors for better darkmode compatibility.
版本注释:
Updated labels/descriptions.
版本注释:
Added an option to allow locking STOCHS length to RSI length.
版本注释:
Updated input descriptions.
版本注释:
Republished @ to improve searchability.
Note: No updates further will be made here.
Note: No updates further will be made here.
版本注释:
Please check out my other indicators sets and series, e.g.
- LIVIDITIUM (dynamic levels),
- AEONDRIFT (standard deviation bands),
- FUSIONGAPS (MA based oscillators),
- MAJESTIC (Momentum/Acceleration/Jerk Oscillators),
- PRISM (PSAR based oscillator, with RSI/StochRSI as well as Momentum/Acceleration/Jerk indicators),
- and more to come.
版本注释:
Retracted 25Aug19 comment. Maintenance of this script will resume.
Introduced a number of new features: i.e. plots rescaling options & auto-normalisation, and a couple of tweaks.
Introduced a number of new features: i.e. plots rescaling options & auto-normalisation, and a couple of tweaks.
版本注释:
Introduced bar color indicator of oscillator states (can be Enabled/Disabled).
版本注释:
Swapped bullish/bearish candles color-tint (blue<>yellow) such that now:
- Yellow tint = Bullish
- Blue tint = Bearish
版本注释:
Allows Custom Stochs Source.
版本注释:
Added volume weighted options.
版本注释:
- Allows selection of resolution.
版本注释:
- Introduced divergence for both RSI and STOCHs (can be manually enabled/disabled).
- Note: Stochs can be modulated by RSI, candle closing, or other user selectable inputs.
版本注释:
Fixed typos.
版本注释:
Introduced k-d crossover indicator (can be Enabled in the settings).
Invite only scripts access info: https://steemit.com/tradingview/@aeondrift/tv-scripts
{PM me in TradingView to arrange subscription access}
{PM me in TradingView to arrange subscription access}
评论
IT´S 2 INDICATOR IN ONE
REGARDS
//@version=4
study(title="CCI+RSI", shorttitle="CCI+RSI")
// CCI
length = input(20, minval=1)
src = input(close, title="Source")
ma = sma(src, length)
cci = (src - ma) / (0.015 * dev(src, length))
plot(cci, color=color.olive)
band1 = hline(175, color=color.gray)
band0 = hline(-175, color=color.gray)
fill(band1, band0, color=color.olive)
// FIN CCI
// RSI
srcRSI = close, lenRSI = input(14, minval=1, title="Length")
up = rma(max(change(srcRSI), 0), lenRSI)
down = rma(-min(change(srcRSI), 0), lenRSI)
rsi = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 / (1 + up / down))
plot(rsi, color=color.purple)
bandRSI1 = hline(70)
bandRSI0 = hline(30)
fill(bandRSI1, bandRSI0, color=color.purple, transp=90)
// FIN RSI