17 lines
333 B
Python
17 lines
333 B
Python
#Get stock symbols in a file
|
|
#Get daily quote at end of day
|
|
#Send email, see Jupyter thing on other laptop for sending email
|
|
|
|
|
|
import numpy as np
|
|
import yfinance as yf
|
|
import plotly.graph_objects as go
|
|
|
|
#Yfinance tests
|
|
#https://pypi.org/project/yfinance/
|
|
|
|
|
|
data2 = yf.download(" CRSR VTI VOO DIS", period="1d")
|
|
print(data2.tail())
|
|
|