Hey everyone. I am looking for some stock suggestions. I'm looking for stocks that have a lot of up and downs throughout the day but usually stay around the same price so if I mess up and dont buy right I can just wait for the stock to return.
I am relatively new to this strategy so I'm looking for stocks that can be forgiving.
Here is a list of the 10 stocks with the lowest average absolute open to close movement as a percentage of high-low range over the last ten days. Includes only stocks with average volume over 100000 shares per day, price greater than $10.00, and also excludes warrants and preferred.
DATE Symbol LastClose BuyDipsInd AvgVolume
---- ------ --------- ---------- ---------
20171124, SYRS , 13.75, .2084, 110001
20171124, AVA , 51.93, .2119, 662075
20171124, GCO , 28.75, .2144, 269667
20171124, MUJ , 14.41, .2193, 125606
20171124, AVD , 20.1, .2235, 664831
20171124, MOO , 60.76, .2244, 433174
20171124, GCI , 11.66, .227, 257265
20171124, KORU , 66.5, .2276, 592788
20171124, SHOO , 39.8, .2285, 436551
20171124, MVCB , 25.27, .2313, 286463
Here, if you are interested, is the screen that produced this table:
SELECT sdate,symbol,close,round(BuyDipsNow,4),round(AvgVolume,0) FROM
( SELECT sdate,symbol,close,avg(abs(close-open)/(high-low))
OVER (ORDER BY sdate rows BETWEEN 10 PRECEDING AND CURRENT ROW) AS BuyDipsNow,
avg(volume) OVER (ORDER BY sdate rows BETWEEN 10 PRECEDING AND CURRENT ROW) AS AvgVolume
FROM stocks where volume > 0 AND (high-low) > 0 AND sdate > '20171101'
) WHERE sdate = '20171124' AND AvgVolume > 100000 AND close >= 10.00
AND symbol NOT LIKE '%_W' AND SYMBOL NOT LIKE '%_P%'
ORDER BY BuyDipsNow FETCH FIRST 10 ROWS ONLY