实现功能
1.设置股票的卖出个买入的价格 2.程序对价格进行监控 3.当价格达到预定值时发送邮件提醒
模块安装
pip install tushare
pip install pandas
如果非常慢:https://blog.csdn.net/qq_39583774/article/details/119874963?spm=1001.2014.3001.5501
结合前面的使用邮件作为提醒。
#tushare股票价格自动监控
#需求:1.设置股票的卖出个买入的价格,程序对价格进行监控,当价格达到预定值时发送邮件提醒
import tushare #使用股票检测模块
import time #使用时间模块
import smtplib #smtp 协议包
from email.mime.text import MIMEText #用于构建邮箱内容
def gupiao(msg):#邮件函数
msg_from="" #发件人
password="" #客户端授权码
msg_to="" #收件人
#构建邮箱内容
if msg==1:
subject="买入"#邮件主题
content="赶紧买入"#邮件内容
elif msg==2:
subject="卖出"
content="赶紧卖出"
#构建msg邮件内容对象
msg=MIMEText(content)
msg["Subject"]=subject
msg["From"]=msg_from
msg["To"]=msg_to
#发送邮件
#smtplib.SMTP_SSL("发件人邮件服务器地址",端口号)
smtpObj=smtplib.SMTP_SSL("smtp.163.com",465)
smtpObj.login(msg_from,password)
smtpObj.sendmail(msg_from,msg_to,str(msg))
print("发送成功")
smtpObj.quit()
while 1==1:
buyPoint=1586 #模拟买入价格
salePoint=1589 #模拟卖出价格
data=tushare.get_realtime_quotes("600519") #股票号
name=data.loc[0][0]#股票名称
pre_close=float(data.loc[0][2])#昨日收盘价
price=float(data.loc[0][3])#现价
change=round((price-pre_close)/pre_close,4)#今日涨幅
msg="股票名称:"+name+",当前价格:"+str(price)+"元,涨幅:"+str(change*100)+"%"
print(msg)
if price<=buyPoint:
msg=1
print("价格达到买点,可以买入!!")
gupiao(msg)
elif price>=salePoint:
msg=2
print("价格达到买点,请及时卖出!!")
gupiao(msg)
else:
print("不要做操作")
time.sleep(60)#睡眠时间单位为秒
测试这里达到买入价格,提醒买入。
|