Home/Dovee/Function reference

connorsrsi

Connors RSI

Reference/Oscillators/Function

connorsrsi(source, rsiLength, streakLength, rankLength)

Average of RSI(3), streak RSI(2) and 100-bar percent rank of 1-bar ROC. Short form `connorsrsi(3)` uses close.

Parameters

NameTypeDescription
sourceoptionalseries
default close
Series to use. Omit it when the first argument is a number — ema(9) means ema(close, 9).
lengthint
default 3
Lookback in bars. Default 3.

Return value

series

Short form: if the first argument is a number, Dovee uses close as the source.

Example

oscillator
plot connorsrsi(close, 3, 2, 100) as "CRSI"
level 10 as "Oversold" green
level 90 as "Overbought" red

See also