CLOV is the next short squeeze

From $9 to $12 today. Here is how ballsy boys play it.

old.reddit.com/user/SIR_JACK_A_LOT/

jgb57cjctu371.jpg
 
Also CLNE... Sir Jack switched to CLF. I am not sure what this is about stocks with C....

Ooo I like this one. It filled the previous gap and bounced off the magical line I drew. ~$9.50 would be a great entry if it goes there.

upload_2021-6-7_19-57-57.png
 

Given the vast number of posts every hour and large % of shit posts (ass fucking, dick sucking comments), I feel reading every post and then parsing out the tickers (matching against a pre-gathered ticker table?) can be rather heavy.

How does the logic work in the parsing?

#put all stock tickers into a tuple called tickerList = ("AAPL", "MSFT", "TXN", ...)
#mentionedTickers is a list [0, 0, 0, 0, ...] corresponding to the tickerList
#assuming all ticker mentions are properly capitalized <--too big an assumption?
#read each post individually, post = posts.readLine()
#parse out all capitalized 2-letter, 3-letter, 4-letter words into a list var called potentialTickers
#loop through potentialTickers one by one to check if potentialTickers[j] in tickerList
#find out which ticker matches, then increment the corresponding mentionedTickers by 1
 
Back
Top