资源简介
代码片段和文件信息
#coding=utf8
import tushare as ts
import time
#获取符合eps(每股收益)的股票代码$$$$$$$$$$$(每过一个季度要手动更新!!!!!!!!!!!!!!!!!!!!)
rd=ts.get_report_data(20202)
length=len(rd)
print(type(length))
j=0#百分比控制
pre=[]
mid=[]
fin=[]
container=[]
for i in range(length):
if rd[‘eps‘][i]>0.3:
print(rd[‘code‘][i])
pre.append(rd[‘code‘][i])
print(“###############PRE#########################PRE#################“)
time.sleep(2)
print(pre)
print(“###############PRE#########################PRE#################“)
#对比Max5与Max10的数值,筛选符合条件的股票代码
for x in pre:
j+=1
total=len(pre)
weekk=ts.get_hist_data(x ktype=‘W‘)
print (‘\r‘+‘Percent:{:.2f}%‘.format(j/total*100)end=‘‘flush=True)
time.sleep(0.3)
try:
if (weekk[‘ma5‘][0]) > (weekk[‘ma10‘][0]):
mid.append(x)
except TypeError:
pass
print(““)
print(“##
- 上一篇:python打印玫瑰花
- 下一篇:python 飞机大战小游戏
相关资源
- pycharm破解脚本
- Supervised Learning with Python
- pycaret数据挖掘实践
- scrapy_qunar_one
- Python开发的全栈股票系统.zip
- python源码制作whl文件.rar
- Python.rar99111
- python+pyqt5+百度AI+车牌识别.rar
- Python项目案例开发从入门到实战源代
- python火焰检测颜色模型代码
- 用python的pyecharts模块绘制世界地图疫
- Python3.x+PyQtChart实现数据可视化界面
- Deep Learning Cookbook_ practical recipes to g
- selenium中python包&对应版本的firefox
- python外星人入侵.rar
- 编译原理词法分析器、语法分析器p
- deeplearningPID
- python sklearn决策树
- 电影推荐系统171901
- decision_tree_v2.py
- DataV.GeoAtlas全国GeoJSON省市区县json数据
- deep learning with python 中文版
- 疫情数据爬虫并绘制柱状图.py
- Introduction to machine learning with python (
- Learning Data Mining With Python book 代码及数
- Python-100-Days-master.rar
- Introduction to Programming in Python An Inter
- 多目标优化算法(二)MOEADMATLAB
- Introduction to Machine Learning with Python.p
- Python源码剖析★PART2★(完整清晰版
评论
共有 条评论