Last active
May 24, 2017 07:53
-
-
Save adxrgh/edbe8edb4ee1a75180de84f2b348c6ff to your computer and use it in GitHub Desktop.
[加权排序盘面]#tags:看盘
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tushare as ts | |
a=ts.get_today_all() | |
x=(a.changepercent*a.nmc)/a.nmc.sum() | |
a['weight']=x | |
a.sort(['weight'],ascending=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment