@Sonny @BenTen Thanks to everyone for their input, knowledge and guidance regarding the RVI watchlist. I agree that the RVI code assists in making strategic choices when trading. I was searching for code that I could manipulate when scanning for RVI instead of a watchlist. I then decided to use @Sonny's code to create a scan for RVI; resulting in two RSI scans. The first code is for tickers with a RVI >=2; and the other is for tickers with a RVI <2. This helps to narrow down my search enabling me to focus on the high RVI. I included low float shares, vol of 1m etc within the scan.
Additionally, as some members indicated, these tickers also appear in my momentum and premarket and gapper's scan. I tend to trade the penny stocks at this time (.05 to 3.00 or 5.00). The scan can be altered if looking to trade large caps, larger floats etc. Upon executing the scan I simply check my watchlist and select the tickers with catalysts. I have the VWAP, 9EMA etc on my chart and these along with the Fibonacci retracement helps a lot.
I also created an alert which alerts when tickers are removed or added to the watchlist/scan.
Please see below the scan as well as a pic of the scanner (this is from today's trading session). Thanks once again to everyone who has contributed to my growth as I continue my trading journey on this forum.
Additionally, as some members indicated, these tickers also appear in my momentum and premarket and gapper's scan. I tend to trade the penny stocks at this time (.05 to 3.00 or 5.00). The scan can be altered if looking to trade large caps, larger floats etc. Upon executing the scan I simply check my watchlist and select the tickers with catalysts. I have the VWAP, 9EMA etc on my chart and these along with the Fibonacci retracement helps a lot.
I also created an alert which alerts when tickers are removed or added to the watchlist/scan.
Please see below the scan as well as a pic of the scanner (this is from today's trading session). Thanks once again to everyone who has contributed to my growth as I continue my trading journey on this forum.
Code:
#Relative Volume High;
def x = Average(volume, 60)[1];
def v = volume;
def r = Round((v/x),1);
def rvi = r >= 2;
plot scan = rvi;
Code:
#Relative Volume Low;
def x = Average(volume, 60)[1];
def v = volume;
def r = Round((v/x),1);
def rvi = r < 2;
plot scan = rvi;