用python写一个程序 自动实时找出当天涨停个股
时间: 2023-05-27 16:07:19 浏览: 216
抓取股票数据、分析涨停数据需要使用第三方库,建议使用tushare。
下面是一个基本的程序框架:
```python
import tushare as ts
import time
# 获取当日涨停的股票
def get_limit_up_stocks():
df = ts.cap_tops()
return list(df['code'])
# 主程序
if __name__ == '__main__':
while True:
# 获取当前时间
now_time = time.strftime('%H:%M:%S', time.localtime(time.time()))
# 如果是10:00之前或者15:00之后,就不进行查询
if now_time < '10:00:00' or now_time > '15:00:00':
time.sleep(60)
continue
# 获取当日涨停的股票
limit_up_stocks = get_limit_up_stocks()
# 输出结果
print(f'{now_time}: 当日涨停股票数量为:{len(limit_up_stocks)}')
# 每隔60秒查询一次
time.sleep(60)
```
该程序会每隔60秒查询一次当日涨停的股票数量,并输出结果。如果当前时间不在交易时间范围内,则程序会暂停60秒后再次查询。
阅读全文