本文整理汇总了Python中models.Stock.sort_ey方法的典型用法代码示例。如果您正苦于以下问题:Python Stock.sort_ey方法的具体用法?Python Stock.sort_ey怎么用?Python Stock.sort_ey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Stock
的用法示例。
在下文中一共展示了Stock.sort_ey方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: print
# 需要导入模块: from models import Stock [as 别名]
# 或者: from models.Stock import sort_ey [as 别名]
if args.c:
commitopt = False
# instantiate stocks
# the complexity is hidden inside the driver and in the Stock class
today = datetime.datetime.today()
todaystr = today.strftime('%Y%m%d')
if fetchopt:
print(prefix, 'fetching raw data')
print(prefix, 'parsing stock info')
for code in conffile:
# stocks which failed to instantiate are marked as None
Fundamentus(code, fetch=fetchopt, date=todaystr);
# sorting, and it's where the Greenblatt method actually is
Stock.sort_ey()
Stock.sort_roc()
Stock.sort_gb_eyroc()
Stock.sort_pe()
Stock.sort_roe()
Stock.sort_gb_peroe()
### populate 'stocks' table
# use a leading underscore to differ from the model access to the db
for stock in Stock.sector:
x = Stock( \
date = today, \
code = stock.code, \
ey = stock._ey, \
roc = stock._roc, \
pe = stock._pe, \