01
Python监控股价并通过微信提醒
炒股盯盘太累,能在设置的买卖点进行智能提醒吗?
没错,python可以帮你实现:通过python编程实现股价实时监控,并在买卖点通过微信发送信息自动提醒!
今天,梅朵就来给大家演示:Python监控股价并通过微信提醒的方法!
Python在买卖点进行微信提醒
方法介绍
1.导入依赖库
主要是导入微信依赖包和股票包。
from wxpy import *import tushare as tsimport json
2.登录微信
登录微信。
my_friend = bot.friends().search('stock')[0]#换为自己的昵称
3.股票实时股价监控
主要是获取股票实时股价,并根据设置的买卖点进行盯盘判断,符合买卖条件时进行微信提醒。
stock=['000001']#换为监控的股票代码 data=ts.get_realtime_quotes(stock) price_now=float(data['price'].to_list()[0]) price_buy_1=float(data['bid'].to_list()[0]) price_sell_1=float(data['ask'].to_list()[0]) while (12<price_now<13) is True: data=ts.get_realtime_quotes(stock) price_now=float(data['price'].to_list()[0]) price_buy_1=float(data['bid'].to_list()[0]) price_sell_1=float(data['ask'].to_list()[0]) if(price_now<=12): my_friend.send("当前股价低于设置的买入点"+"\n"+ "可考虑买入!"+"\n"+ "当前股价为:"+str(price_now)+"\n"+ "当前买一价:"+str(price_buy_1)+"\n"+ "当前卖一价:"+str(price_sell_1)) if(price_now>=13): my_friend.send("当前股价高于设置的卖出点"+"\n"+ "可考虑卖出!"+"\n"+ "当前股价为:"+str(price_now)+"\n"+ "当前买一价:"+str(price_buy_1)+"\n"+ "当前卖一价:"+str(price_sell_1))
完整代码
from wxpy import *import tushare as tsimport json if __name__=="__main__": bot = Bot(cache_path=True) my_friend = bot.friends().search('stock')[0]#换为自己的昵称 stock=['000001']#换为监控的股票代码 data=ts.get_realtime_quotes(stock) price_now=float(data['price'].to_list()[0]) price_buy_1=float(data['bid'].to_list()[0]) price_sell_1=float(data['ask'].to_list()[0]) while (12<price_now<13) is True: data=ts.get_realtime_quotes(stock) price_now=float(data['price'].to_list()[0]) price_buy_1=float(data['bid'].to_list()[0]) price_sell_1=float(data['ask'].to_list()[0]) if(price_now<=12): my_friend.send("当前股价低于设置的买入点"+"\n"+ "可考虑买入!"+"\n"+ "当前股价为:"+str(price_now)+"\n"+ "当前买一价:"+str(price_buy_1)+"\n"+ "当前卖一价:"+str(price_sell_1)) if(price_now>=13): my_friend.send("当前股价高于设置的卖出点"+"\n"+ "可考虑卖出!"+"\n"+ "当前股价为:"+str(price_now)+"\n"+ "当前买一价:"+str(price_buy_1)+"\n"+ "当前卖一价:"+str(price_sell_1))