Update to pull full data instead of trial data

This commit is contained in:
2026-02-11 19:04:12 -08:00
parent cc0ac9ffa9
commit fc350a55dd
+1 -1
View File
@@ -8,7 +8,7 @@ tickers = symbols['Symbol'].tolist()
# Scrape the data
all_data = []
for i, symbol in enumerate(tickers[:2]): # Try first 20
for i, symbol in enumerate(tickers): # Try first 20
print(f"Processing: {i} of {len(tickers)}")
df = yf.download(symbol, period="max")
if not df.empty: