Update to pull full data instead of trial data
This commit is contained in:
+1
-1
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user