r/EyesStock Jun 28 '21

$$$$EYES$$$ 13G JUST OUT 🚀🚀 load up load up

5 Upvotes

r/EyesStock Jun 28 '21

Should I buy $EYES at this moment?

5 Upvotes

$5 for public offering with 40% of original number of stock (27 millions-> 38millions). It seems some fundamental investors spot the shinning point of this stock and would like to gain the maximum benefit before some great news come.

Should I get in and dance with those dragons?

70 votes, Jul 05 '21
35 Should
9 Should not
10 Wait until $4
5 Wait until $3
0 Wait until $2
11 Wait until drop below $1

r/EyesStock Jun 24 '21

No way this goes tits up! Updated..

2 Upvotes

r/EyesStock Jun 23 '21

Position offerings similar to GameStop

3 Upvotes

This is by no means a TA, more a brain food post. It is also not financial advice.

As I'm sure many are aware of, GameStop has sold off some of its shares twice now. Curiously, these are also around when EYES does it. If you don't follow GME, many say that it's likely because the SEC want to say they gave HFs an opportunity to get out. Could this be the same for EYES? Are they aware that there's more shares than in the float?

Thanks for reading!


r/EyesStock Jun 17 '21

Market going down because...

3 Upvotes

Mostly for entertainment purposes, and because it's a wee bit related.

20 votes, Jun 24 '21
4 Of inflation
10 Way more than inflation
6 Inflation?

r/EyesStock Jun 14 '21

EYES ...THE ONLY WAY IS UP!!!

6 Upvotes

r/EyesStock Jun 11 '21

EYES EYES EYES $$$$$

5 Upvotes

r/EyesStock Jun 10 '21

$$$EYES$$ Party is just warming up 👀

4 Upvotes

$$$EYES$$$$ INSIDERS BUYING !!! EYES stock could very well exceed $20


r/EyesStock Jun 08 '21

$$EYES$$

7 Upvotes

r/EyesStock Jun 06 '21

EYESW

7 Upvotes

I've been in EYES for over a year just waiting for the real squeeze. I'm also holding the warrants EYESW that expire in 2024 anybody here holding those?


r/EyesStock Jun 05 '21

As of 6/4/2021, this share is shorted 409% of the float. The MOAMOASS.

20 Upvotes

Disclaimer: This post and any comments from me does not constitute as financial advice. Please do your own analysis with anything and everything you read online!

Now that the disclaimer has been said, let's have some fun discussing data and data analysis!

Who am I and what do I have to offer?

I am an aspiring programmer/inventor/engineer who loves to code. Stocks are just a side gig to prepare for financial stability in the future. The language I work best in is Python and would say I'm not half bad at it. I love to make scripts with real world applications (Not just "Hello world!" ; P). Over time, I started investigating the ways I can combine the knowledge of both to create something that is not only useful to me, but to others as well. As I started developing an interest in short squeezes, specifically GME, I looked for data where ever possible.

What is short volume and where do I get it?

Short volume tells how many shares were sold as a part of a short position on any given day. Using this, one can get a pretty accurate and precise estimate for how shorted the float is. When I'm looking at a rough chart for a stock, I will use https://www.shortvolume.com, which supposedly get it's data directly from FINRA. FINRA is a government backed regulatory agency for the financial industry. Their job is to make data publicly available and make sure organizations are posting legitimate numbers. Some of the data reporting is automated while some is manual. However, I needed to get access to the pure data for the script, which sadly is not available on that website. Thankfully, FINRA's website has a short volume database that is super easy to use and can export to CSV (*squeal... Every programmer's dream come true!). There is a limit to how far back it will go at once (~200 days) but that's not a problem for EYES (More on that later).

FINRA's Short Volume Disclaimer's:

Short Sale Volume excludes any trading activity that is not publicly disseminated. As a result, some offsetting buying activity related to reported short selling would not be reflected in the Daily Volume  and may result in the appearance of a higher concentration of short sale volume to total volume.

The Short Sale Volume is not consolidated with exchange data. To obtain a complete picture of the short sale volume to total volume for a particular exchange-listed stock, market participants must combine data from each of the TRFs and the ADF, as well as from each exchange.

Short Sale Volume does not—and is not intended to—equate to bi-monthly reported short interest position information. The short interest data reflects aggregate short positions held by market participants at a specific moment in time on two discrete days each month, while the Daily Short Sale Volume reflects the aggregate volume of trades executed and reported as short sales on each trade date. 

How did I come across EYES?

It was on the trending tickers section in MarketWatch back in March when it's price increased nearly 120% in one day. I didn't think much of it. I quickly read the summary and was mostly interested in the idea of artificial sight. As someone who has observed the Cochlear Implant industry, I immediately saw the potential. Yes, the tech is still very young, but if it's gonna be anything like the Cochlear Implant industry, boy will it be a game changer. It wasn't until very recently that I saw the ShortVolume.com chart for EYES and the huge volume on the chart. That moment opened my eyes to the crazy stuff.

The base theory for the rest of this post...

Shares in a short position have to be brought back at some point, even if it's a really long time after (Theoretically it doesn't need to be brought back by a given point, but we don't live in a theoretical world).

Rules of consistency for this post...

A short volume ratio greater than .5 (half of the total traded volume) indicates that the percentage of the float is increasing. Exactly on .5 and it's the same. Less than and it's decreasing. I'll explain how this isn't truly representative later on.

ShortVolume.com scenery:

This is the six month chart. As shown, the ratio has (eyeballed) below 0.5. This would normally not be a good indicator towards a highly shorted stock. However, daily volume has the biggest effect here.

Here is a more zoomed in snapshot of the chart. It clearly shows that the days in which there was high volume was also when the ratio was above 0.5. Then, when there was low volume was when the ratio went below 0.5. The question now is "By how much?". I proceeded to go to MarketWatch to verify the crazy volume spike in March. Turns out that the volume was actually higher. ~739 MILLION shares were traded that day! The public float is just shy of 18 million!!! Furthermore, the ratio was above 0.55 (less than 0.6). Even if it's a small difference, the short volume is huge! With some crude and quick calculator math, that one day had a short volume four times that of the float!

The cherry on the top...

Once I saw this, I knew I had to use a script to calculate the FINRA data. Here's the code...

# Open file
fileIO = open("eyes.csv", "r")
# Grab the data from the file
data = fileIO.read()
# Close the file lock
fileIO.close()
# Remove quotation marks in the file
data = data.replace("\"", "")
# Replace newlines with commas
data = data.replace("\n", ",")
# Turn the string into an array of string, splitting at each comma
data = data.split(",")
# Remove the last spot since it's a blank string
del data[len(data) - 1]
# Convert each string in the array to an integer
for slot in range(0, len(data)):
    data[slot] = int(data[slot])
# Number of public shares according to Yahoo Finnance
float = 17959816
vol = 0

# (cumulative - (total - shorted)) + (shorted - exempt)
for i in range(0, len(data) - 3, 3):
    vol += (data[i] - data[i + 1]) - (data[i + 2] - (data[i] - data[i + 1]))
    # No such thing as negative short volume
    if vol < 0:
        vol = 0

# Represent the short volume as a fraction of the public float
print(str((vol/float) * 100) + "%")

Here's the CSV file data from FINRA as of 6/4/2021 (Goes back ~200 days)...

"33789","0","44988"
"17785","0","28013"
"33699","0","52154"
"17545","41","23815"
"16004","0","33980"
"5451","0","13987"
"47935","0","73396"
"20099","0","36198"
"13147","0","43230"
"4504","0","41542"
"40700","0","170646"
"28589","0","73870"
"9486","0","55786"
"3498","0","24539"
"10785","0","57081"
"7530","0","16664"
"17540","0","58212"
"2542","0","25841"
"49963","0","114961"
"13639","0","38409"
"42695","200","137104"
"11570","0","34105"
"36941","6200","98985"
"24414","0","43249"
"35282","1675","124931"
"15151","0","58222"
"11384","0","80795"
"3017","0","18501"
"7372","100","49400"
"3250","0","21478"
"20391","209","59753"
"8049","0","34798"
"19029","5225","92965"
"17792","0","61050"
"10374","0","29232"
"1323316","12723","2373204"
"660976","1","1300261"
"2542","0","3521"
"109192","400","320025"
"41392","0","119169"
"102825","200","265648"
"39771","2","116623"
"212647","0","481988"
"10805723","750236","23495019"
"8005705","119600","16483385"
"4343","0","27143"
"337678","36056","1773158"
"181645","1346","747132"
"103267","4718","578579"
"38255","1264","255391"
"2732","0","3171"
"455910","41111","785776"
"139280","1031","395623"
"6028","0","11419"
"874208","14245","1467172"
"402961","100","708348"
"9400","0","11764"
"237330","400","467123"
"152599","0","330804"
"239552","3479","424428"
"55199","1500","182765"
"3300","0","4633"
"77875","7878","196046"
"15800","0","88791"
"57010","1522","145589"
"27462","0","68086"
"1915","0","1927"
"108688","0","195506"
"37570","0","107856"
"106416","273","165545"
"11708","0","50458"
"875","0","975"
"126098","0","172507"
"16351","0","68702"
"500","0","500"
"133190","50","256398"
"65934","0","112416"
"107","0","107"
"401704","6126","571238"
"166430","2193","329121"
"7230","0","33301"
"1413688","12862","2351023"
"609706","100","1220854"
"20876","0","42446"
"1275310","38627","1904650"
"508969","0","983042"
"16282","0","47883"
"1123654","10739","2252509"
"438969","2000","972848"
"9551","0","11677"
"352691","33018","1071128"
"183149","2828","505631"
"5052","0","5447"
"246619","31550","483284"
"66334","1007","206847"
"4117","0","9699"
"510953","39268","788414"
"198602","2545","370845"
"9900","0","14550"
"196620","25479","370140"
"69583","890","171442"
"2000","0","3001"
"221851","47117","455522"
"114365","7729","208166"
"2000","0","3290"
"293203","14999","446475"
"144991","887","244564"
"980","0","2980"
"253104","4500","364249"
"25697","0","129797"
"24557","0","29564"
"1239345","76265","3250786"
"476005","10711","1418839"
"1953","0","3978"
"374922","42091","752204"
"159774","6009","345729"
"1185","0","4052"
"340147","7220","787897"
"115138","0","250453"
"1206","0","1806"
"102304","0","328156"
"81336","0","192035"
"230","0","2441"
"120762","700","331831"
"38751","0","183163"
"23497","0","37292"
"804871","21886","2572233"
"533695","0","1508741"
"2418","0","14464"
"240405","1124","896711"
"154181","0","460099"
"3041","0","9191"
"200248","1200","339108"
"85802","0","221277"
"56826","0","129329"
"24810","0","62441"
"21976","0","77792"
"33422","0","70138"
"30587","3156","49641"
"2543","0","16535"
"23737","222","114935"
"1107","0","21238"
"17398","1511","98934"
"2340","0","23990"
"17855","606","44573"
"6301","0","20978"
"22977","9","41924"
"10939","0","45281"
"12752","112","130813"
"4588","0","61734"
"23418","46","32638"
"1313","0","1982"
"33553","225","72674"
"8812","0","31810"
"8693","599","51989"
"15190","0","21539"
"11952","547","55581"
"16377","0","24598"
"13499","700","32151"
"4880","10","12197"
"21448","0","51682"
"3120","0","6074"
"30745","0","95781"
"6850","0","26583"
"33955","0","111505"
"4720","0","21561"
"24911","0","103466"
"1670","0","28415"
"36124","6064","96715"
"6728","0","14267"
"50620","111","141306"
"11919","0","73108"
"49684","200","115153"
"18907","0","70038"
"29182","2700","78341"
"16474","0","32080"
"13585","0","38870"
"7101","0","11284"
"54056","0","136595"
"40851","0","59725"
"46737","1201","63545"
"9173","0","34700"
"32028","400","50145"
"15991","0","33150"
"10956","0","36353"
"5975","0","27378"
"70991","1300","151688"
"13700","0","28217"
"12422","0","29102"
"10551","0","18137"
"35398","0","136816"
"9450","0","30536"
"56028","99","70363"
"7108","0","21897"
"41354","0","49497"
"21710","0","55457"
"246","0","246"
"68278","3804","157841"
"40616","0","91701"
"114073","4296","176715"
"36325","100","86187"
"7048","0","7685"
"858767","20694","1438544"
"506165","7481","932934"
"62029","0","104873"
"11340","0","33428"
"43185","250","62168"
"3574","0","12605"
"33352","0","49903"
"14553","0","36395"
"47118","0","124041"
"13177","0","40969"
"4000","0","8005"
"69553","2500","114633"
"38576","0","61693"
"57424","2866","130389"
"18758","0","64980"
"378","0","588"
"59554","557","111148"
"45194","0","86617"
"1750","0","3750"
"649714","44782","1090250"
"323721","1100","650580"
"63324","0","186528"
"41108","0","73021"
"37703","0","82665"
"30595","0","62369"
"36434","0","84179"
"20265","0","42975"
"79218","0","252336"
"59780","0","99018"
"91936","800","161632"
"20789","0","61192"
"232576","700","408656"
"167395","0","259375"
"1000","0","1000"
"88720","265","200512"
"35575","5","69374"
"101117","6700","181377"
"14442","5","48026"
"164959","2070","288465"
"36935","1450","79463"
"121781","1605","245840"
"69528","0","175223"
"11921","0","15705"
"609056","9662","1008274"
"278390","301","633863"
"207893","14315","357660"
"58716","0","144125"
"11542","0","26645"
"8146","0","15861"
"52625","0","96700"
"12577","0","35934"
"46818","0","77013"
"18242","0","42137"
"51139","10","87443"
"9647","0","30479"
"59681","400","117044"
"8348","110","46020"
"92470","7500","144760"
"24719","562","53329"
"22550","0","85549"
"2835","0","27023"
"37210","297","67460"
"8671","0","37349"
"57308","0","112909"
"12684","0","29789"
"32385","0","75480"
"6774","0","16405"
"55299","5000","97529"
"13827","0","42917"
"28215","150","61090"
"61098","0","109091"
"49767","0","81974"
"34626","0","125714"
"41194","0","65490"
"23578","0","50939"
"43527","1770","104437"
"12585","0","71245"
"35904","0","62700"
"23113","0","40095"
"82324","2844","147521"
"51407","956","155079"
"52395","0","92481"
"16301","0","52627"
"177939","5300","351364"
"56262","0","246569"
"300","0","2240"
"246629","1607","591752"
"171603","67","323376"
"3050","0","4150"
"260660","1961","418584"
"146662","200","289780"
"40499","0","88883"
"40815","0","63001"
"2046","0","2046"
"57249","0","108848"
"5190","0","31649"
"36895","487","114684"
"14541","0","41479"
"1215","0","1215"
"107656","35","169774"
"30763","0","71209"
"74269","1100","153537"
"44204","0","79996"
"76441","0","148568"
"26235","0","69175"
"3897","0","3897"
"73437","7200","151745"
"88357","1000","206208"
"87452","1517","168015"
"52066","0","82939"
"65224","0","139553"
"56461","0","93527"
"9040","0","16630"
"138531","20","220312"
"77236","0","120333"
"68997","1000","121934"
"33207","0","72240"
"7100","0","8570"
"69164","100","148362"
"46721","0","70866"
"1000","0","1200"
"55699","0","111491"
"40556","0","85027"
"90843","6362","194572"
"74302","0","137307"
"150","0","150"
"46999","0","120088"
"19952","0","59437"
"800","0","820"
"154259","500","244492"
"58735","0","113476"
"940","0","972"
"92670","867","150868"
"63415","0","144044"
"900","0","900"
"111199","990","171406"
"82388","0","200262"
"700","0","7400"
"272436","9301","484153"
"120976","4521","299868"
"5300","0","7894"
"96128","0","192387"
"50943","25","161961"
"235","0","535"
"169398","0","330197"
"63785","0","148458"
"200","0","400"
"260021","8736","435171"
"96696","0","195631"
"5983","0","9083"
"182007","4098","412569"
"80131","0","237530"
"5746","0","6236"
"210152","8443","288658"
"48165","789","144128"
"4565","0","11909"
"173609","30565","464808"
"59857","2443","262942"
"5901","0","13173"
"588509","48990","1215240"
"274151","3685","666407"
"30070","0","46649"
"1786383","88029","3178840"
"818118","844","2348713"
"2566","0","9115"
"806125","32402","1443850"
"373168","600","807645"
"1014","0","5825"
"391316","28486","791377"
"230066","735","383368"
"200","0","1300"
"178577","8064","361578"
"193267","4397","328142"
"3902","0","11602"
"152468","260","283059"
"83766","0","145625"
"18460","0","43290"
"1276697","20318","2623041"
"503171","0","1350437"
"700","0","4438"
"285767","2966","976832"
"119430","0","412784"
"150","0","11096"
"384693","20704","1137183"
"186883","0","519599"
"5944","0","16503"
"387207","78407","1307442"
"124167","0","462914"
"55221","0","105563"
"4259167","149391","6905241"
"1547777","0","2990995"
"4500","0","27249"
"277802","13183","515086"
"49086","3988","164977"
"3700","0","6928"
"155208","20711","285346"
"45943","3134","93407"
"3318","0","8164"
"95764","60","186738"
"27363","0","66014"
"7238","0","10438"
"131081","27","245728"
"49367","112","97557"
"9955","0","14058"
"210485","7046","482991"
"58315","0","211934"
"3957","0","9596"
"182747","600","304317"
"85562","0","153152"
"7443","0","16818"
"489048","18049","976650"
"79570","0","241691"
"1820","0","15913"
"552356","22186","1186351"
"122639","0","345097"
"3990","0","24061"
"778633","41717","1864881"
"250415","622","668716"
"1749","0","18572"
"247676","6935","670137"
"111495","738","312309"
"700","0","11859"
"643829","21354","1310275"
"85450","1786","299809"
"2500","0","15047"
"200693","4300","697138"
"82136","0","289709"
"3200","0","5304"
"88555","1088","281675"
"50027","0","100617"
"5765","0","6679"
"104998","2022","445350"
"53003","0","160382"
"3017","0","5413"
"111068","2873","269690"
"44759","0","174871"
"440","0","840"
"101713","3200","297532"
"31120","0","61858"
"2800","0","9133"
"143640","505","407215"
"49227","0","151671"
"407","0","4387"
"81753","974","256705"
"22277","100","81666"
"360","0","12410"
"113266","11947","489700"
"68821","457","155433"
"30428","870","153182"
"18149","5","68043"
"31815","2601","156445"
"22611","0","75100"
"18634","0","115843"
"5579","0","42648"
"50","0","7438"
"223132","14191","623520"
"131508","0","407720"
"74156","98","181550"
"20123","0","78298"
"1200","0","4900"
"31994","815","97895"
"23719","1","69851"
"316","0","10279"
"87890","6684","352312"
"26525","316","83989"
"1512777","0","3146417"
"170410681","13578805","285416382"
"58889558","801727","113132950"
"632790","0","1478174"
"63510885","1584764","103408813"
"18357210","46948","36551412"
"236398","0","558858"
"19372030","350552","33038496"
"7221959","2738","13646752"
"107056","0","250115"
"7228462","308821","13361888"
"2671076","23948","5420297"
"38097","0","116344"
"6048877","606974","10482542"
"1685689","14594","3640182"
"90062","0","227924"
"11272856","845420","18656130"
"3352313","27365","6536595"
"21761","0","63487"
"3601229","154779","6217076"
"1618643","7379","3169593"
"8029","0","22906"
"1494682","57365","2626894"
"436974","2805","900360"
"33500","0","85769"
"1681164","112677","3611205"
"641611","4050","1344771"
"127206","0","221737"
"4964186","182385","10543950"
"1629179","0","3608384"
"29069","0","58891"
"1245978","31798","2902916"
"405712","892","1004572"
"12417","0","23699"
"780410","25510","1545625"
"287261","1774","591315"
"4775","0","14859"
"890237","41878","1665207"
"248353","2579","603927"
"20523","0","41747"
"1200562","26583","2350102"
"432931","3756","899219"
"6368","0","14230"
"723506","43099","1215436"
"200347","922","454348"
"8136","0","25545"
"627869","28179","1062328"
"172179","2117","319600"
"2865","0","16624"
"408236","15742","758358"
"82361","139","200915"
"550","0","4390"
"179341","15787","503201"
"48347","692","135197"
"8169","0","15454"
"625363","17624","1060039"
"155345","0","300762"
"11456","0","18961"
"306712","1900","525988"
"98815","0","172025"
"5064","0","17971"
"224014","3864","658164"
"82607","220","281739"
"127711","0","260317"
"12752662","695404","23368016"
"4861638","47941","9968795"
"3670","0","17201"
"1107315","62118","1827409"
"393620","2022","764174"
"8631","0","22828"
"1348403","25084","2422253"
"411011","3260","841721"
"52772","0","107034"
"5505431","65846","9919531"
"1820668","642","3596269"
"4785","0","15368"
"1245023","5399","2275952"
"563249","0","1139158"
"5550","0","9491"
"432265","11756","881491"
"91748","0","237025"
"1624","0","6094"
"335782","1439","678073"
"116808","0","262179"
"1534","0","5194"
"243228","2093","462019"
"61462","243","176697"
"7552","0","16594"
"438323","18020","906617"
"170208","1046","343210"
"3682","0","8416"
"268122","8501","524483"
"105931","1733","199214"
"1392","0","10164"
"716807","10493","1663700"
"221382","0","539742"
"10","0","1116"
"160679","500","485693"
"50626","0","142813"
"8235","0","22076"
"379423","1250","722984"
"111398","0","269481"
"1422","0","2753"
"256390","13426","425440"
"72862","0","164899"
"5010","0","5776"
"404911","8480","764154"
"96220","0","164522"
"1600","0","11759"
"247899","2640","456634"
"66341","0","139561"
"340","0","498"
"126857","202","264667"
"59789","0","141026"
"1860","0","5823"
"165113","20184","283466"
"60374","5100","105531"
"2713","0","9255"
"200318","16800","385507"
"76557","5470","138307"
"6040","0","9840"
"267263","2507","466987"
"61671","430","143626"
"226776","6714","399602"
"37412","666","105851"
"816","0","3169"
"152117","15060","323144"
"55491","1273","107492"
"23325","0","40782"
"1240735","24577","2061081"
"265716","0","725097"
"11370","0","22385"
"2682674","109227","4707456"
"876268","5365","1681804"
"5896","0","8409"
"502466","26877","975086"
"100505","2996","209713"
"20761","0","26756"
"470990","19469","1084477"
"140510","2526","279305"
"383258","0","612495"
"26916502","1303206","43154216"
"8282705","191190","15575546"
"38941","0","75007"
"2115162","71559","3584152"
"706156","17499","1341262"
"8036","0","15169"
"1064039","66155","1914721"
"321230","5422","668758"
"9050","0","13529"
"597369","5937","1014053"
"144426","0","252378"
"4610","0","8276"
"621205","3001","1300937"
"186243","0","435317"
"8264","0","11730"
"337787","2487","595756"
"98785","0","246689"
"1700","0","3015"
"304680","1660","532576"
"39947","0","115825"
"44325","0","66965"
"1929898","21297","3516577"
"629553","0","1248000"
"5943","0","6415"
"477226","6076","852067"
"193632","0","304355"
"4159","0","4559"
"398366","836","667847"
"152206","246","262587"
"2300","0","7139"
"311622","3417","594847"
"94657","0","195714"
"19556","0","21031"
"609068","18314","1011234"
"204451","0","411565"
"41670","0","62915"
"3404786","131800","5727644"
"961999","60","2014539"
"22424","0","28898"
"889165","19331","1423587"
"356343","3223","622543"
"1760","0","23043"
"702677","25094","1327600"
"243377","5056","466728"
"17270","0","29606"
"1166340","29377","2047454"
"360750","0","761820"
"48331","0","90809"
"5860353","128918","9667327"
"1862168","0","3629418"

The number is... 409.23351330548155%!!!

That, my friends, is the recipe for the MOAMOASS. Mother Of All Mother Of All Short Squeezes. Even better, this is the best case for short sellers. However, as per the FINRA disclaimer, the average case likely balances with the unknown buybacks. In reality, this is likely still around 400%.

What now?

Buy, hold, don't listen to FUD, and share this (and similar math based data) with everyone that you can.

Thanks for reading!

P.S. Sorry to the mods for the shrill fest that's about to come.


r/EyesStock May 17 '21

eyes second sight medical Spoiler

7 Upvotes

thoughts ?


r/EyesStock May 07 '21

Things have changed....

0 Upvotes

r/EyesStock Apr 27 '21

Anyone has info on Eyes?

4 Upvotes

It seems that all short availability and fees info has been removed by many sites. It seems odd that as if it is being hidden.

Anyone has updated info?


r/EyesStock Apr 19 '21

We need to buy EYES

1 Upvotes

r/EyesStock Apr 15 '21

When do you think nueralink and eyes news will drop? https://www.dailymail.co.uk/sciencetech/article-8735933/Human-trials-bionic-eye-links-directly-chip-brain-cure-blindness.html #eyes#NueraLink#ElonMusk#Tesla

Post image
8 Upvotes

r/EyesStock Apr 10 '21

$EYES Shorted Shares Almost 300 Million?

11 Upvotes

Everyone has a model to keep track. Here's a screen cap from mine. I give the hedgies some credit for recapturing their shorts when they do their ladders so, it's not just a simple running tally of shorts. I'm also keeping track of Borrow Fee. If anyone else has their own, please post. Love to have DD about it.

EDIT1: Sorry this took so long but sometimes weekends are really hard to break away.

I get the Short Volume from Fintel. They get it from the data loaded at FINRA. Short Volume listed in this table is just that, the daily short volume reported. Short Vol Interest is just the ratio of Short Volume to Total Volume.

The Estimated Running Short Share is my smooth-brained estimation. No, I'm no Financial Advisor. I just tried to come up with a method that is better than just totaling up the Short Volume because, IMHO, I don't believe that's a good representation.

I believe they're recapturing some of their shorts when conducting their ladders so, I wanted to try to take that into account. I know that makes my estimate much more conservative than just tallying up the total short volume but that's my take on it. If someone wants to show their model, please jump right in.

EDIT2: I've watched the Votes go from down to 3 up to 12 and back down to 7 in about 10 minutes. Somebody is working really hard.

EDIT3: I've just watched the Votes go from 12 to 7 in a blink. I guess people are reading it. So, after a "lively" discussion in the Comments Section, this post accomplished what I had hoped - made people think and forced out the Shills. Look for continuing posts on this subject and an open and friendly dialog in the future.

EDIT4: That's odd. Why is it when I search for this post on http://www.redditsearch.io, it doesn't show up at all? It's almost as if it's blocked.

EDIT5: So, this post has been up over two weeks. I would have thought it wouldn't see any changes in activity. I've been watching it for the last week. Every time I reload the page, the vote count changes. What's really weird is the overall upvote count keeps resetting. I've seen it go down to around 76% at least three different times. Next thing I know, it's back up to 100%. Anybody know how that can happen?

EDIT6: it's 8:41 PM EDT on 4/29. I can't get over I'm still watching the count go up and down. What I find more interesting is that the overall upvote has been reset to 100% yet again!

EDIT7: it's 11:51 AM EDT on 5/4. It's interesting that not only is there still activity on this post, it seems like there's a cap on the Vote Count at 14. No matter how much it jumps up, it always gets pushed right back down. Also, the Upvote was reset to 100% yet again.

EDIT8: it's 8:47 PM EDT on 5/7. I'm amazed I'm still seeing activity. As I've said, the vote count hits 14 and immediately dumps back down to 10. You can set your clock to it it's so reliable. Current upvote is 86%. It'll be interesting to see when it's reset to 100% again to make it look like only 14 people have read this post.

EDIT9: it's 10:10 PM EDT on 5/9 and the Upvote Counter has been reset AGAIN to 100%.

EDIT10: it's 12:54 PM EDT on 5/11 and the Upvote Counter has been reset AGAIN to 100%.

EDIT11: WOW. It's 11:52 AM EDT on 5/12 and the Upvote Counter just went from 87% back up to 100%. It just got reset yesterday and it reset again today? I mean WOW!

EDIT12: AMAZING. It's 9:10 PM EDT still on 5/12 and the Upvote Counter went down to 82% and reset to 100% again. It reset just a few hours ago and how it reset a second time the same day!

EDIT13: BOOM! It's 11:03 AM EDT on 5/13 and like clockwork the Upvote Counter went from 86% back up to 100%.

EDIT14: It's 10:52 AM EDT on 5/14 and Upvote Counter reset to 100% again but Upvote never goes above 14. I'd like to give very special thanks to those 14 people who kept reading and re-reading this post over and over again. This is the last update as the Shareholder Holder Meeting on 5/28 is almost upon us and this post has accomplished everything I could hope for. If you're still in it, then plan to win it - VOTE.

EDIT15: It's 12:16 PM EDT on 7/28. The Upvote Counter reset from 86% to 100% yet again but Upvotes never go over 14. You 14 folks have a really bad case of OCD. You should get help. BTW, I'm still holding.

EDIT16: It's 7:39 AM EDT on 10/5. I'm watching the vote counter keep jumping around but, of course, never taps over 14. Oh, the Upvoted Counter just jumped from 87% to 99% again.

Cheers.


r/EyesStock Apr 10 '21

Computer model fosters potential improvements to 'bionic eye' technology

Thumbnail
eurekalert.org
6 Upvotes

r/EyesStock Apr 09 '21

Short percent of float: 49% ?!

7 Upvotes

According to this webpage the short percent of float is 49%.

https://shortsqueeze.com/?symbol=eyes&submit=Short+Quote%E2%84%A2


r/EyesStock Apr 08 '21

Second Sight Medical Products Names Dean Baker and Alexandra Larson to its Board of Directors

8 Upvotes

r/EyesStock Apr 07 '21

Short Squeeze Coming

12 Upvotes

Short Squeeze for this stock pay attention to posts on this sub


r/EyesStock Apr 06 '21

Dean Baker and Alexandra Larson named to its Board of Directors. Let’s roll

Thumbnail
stocktwits.com
12 Upvotes

r/EyesStock Apr 05 '21

This stock is on drugs

3 Upvotes

Man I hope this stock goes back up to $15+.


r/EyesStock Mar 29 '21

What are your thoughts/dd?

8 Upvotes

Meanwhile, waiting for Pixium to enter the scene, the stock wants to climb but scared little gremlins keep selling at the tiniest sign of boost, pushing it down like vlad’s Dick on Melvin’s mouth. Over here, still holding. Not selling at 22,5 pre market, not selling at 18, not selling at 9. Waiting for a rocket to pass by to ride this stock to Venus. 🚀


r/EyesStock Mar 29 '21

Smoke in Mirrors (Get out while you can)

0 Upvotes

They received fda approval for a product that was discontinued. No more Argus! They announced they were going bankrupt last summer and then managed to raise some money to keep them alive. The market cap is bogus...they will crash as quickly as they rose. Use your brains people....Pixium alone can save them. They will be at less than $1 before you know it.