# Finds liquid stocks in strong trends with controlled volatility
input fastLength = 20;
input slowLength = 50;
input rsiLength = 14;
input avgVolLength = 30;
input minVolume = 1000000;
def fastMA = Average(close, fastLength);
def slowMA = Average(close, slowLength);
def rsi = RSI(length = rsiLength);
def atr = ATR(14);
def atrPct = atr / close * 100;
def avgVol = Average(volume, avgVolLength);
plot scan =
close > fastMA and
fastMA > slowMA and
rsi > 55 and
rsi < 75 and
atrPct < 4 and
avgVol > minVolume;
https://tos.mx/!KTQn5YtH
I (Znewcar1) do not provide personal investment advice and I am not a qualified licensed investment advisor. I am an amateur investor.
All information found here, including any ideas, opinions, views, predictions, forecasts, commentaries, suggestions, or stock picks, expressed or implied herein, are for informational, entertainment or educational purposes only and should not be construed as personal investment advice. While the information provided is believed to be accurate, it may include errors or inaccuracies.
I will not and cannot be held liable for any actions you take as a result of anything you read here.