Hi everyone!
I am seeing all of these complex ways to scan by using prorealtime and I am simply looking for a code/codes to help me find stocks with certain criterias.
I want to scan to find these three things:
1. Stocks that are up 20% or more on the day.
2. Stocks that have 3 000 000 shares in dollars.
3. Stocks that cost at about 10-15$.
Would highly appreciate any help on this.
The number of shares cannot be known, but I wrote this code using VOLUME, instead (I have used +10% for testing, as +20% did not report any asset):
c1 = close >= (close[1] * 1.10) //+10% (1.20 to scan for +20%)
c2 = volume > 3000
c3 = close >= 10 AND close <= 15
SCREENER[c1 AND c2 AND c3]