22
if someone can get me the chart up to thos point I can restart lowest volume chart
(lemmy.whynotdrs.org)
ΔΡΣ Central
Community to discuss the DRSGME.org project and resources, and how to spread DRS advocacy and information to GameStop investors around the world.
Have a great idea to spread the word? There are some resources here to get started!
https://www.drsgme.org/free-resources
Here are the 12 lowest volume days in the last 5 years.
There are 12 rows because this list includes half-days that are excluded on the reddit list. Specifically, edgar510 doesn't include the two crossed out days which I believe are thanksgiving and july 4th-related half days. See NYSE holidays and trading hours.
The data is from yahoo finance and dates are in ISO format (YYYY-MM-DD).
~~2022-11-25 1122700~~
2023-07-26 1489200
2023-05-09 1522700
2023-05-11 1652500
2023-07-25 1672000
2023-07-12 1742200
2023-04-13 1803900
~~2023-07-03 1806600~~
2023-06-22 1889600
2023-05-24 1901000
2023-07-13 1912200
2023-05-02 1918300
Here is the python script that produced the list. It uses yfinance.
#!/usr/bin/env python3
import yfinance
print(yfinance.download("GME", period="5y")[['Volume']].sort_values('Volume', ascending=True).head(12))