├── README.md ├── __pycache__ ├── find_stock.cpython-35.pyc ├── win_rates.cpython-35.pyc └── write_everyday.cpython-35.pyc ├── add_sql_unique.py ├── creat_everydatabase.py ├── delete_stock.py ├── find_stock.py ├── log ├── 2018-03-08.log ├── 2018-03-11.log ├── 2018-03-12.log ├── 2018-03-13.log ├── 2018-03-14.log ├── 2018-03-15.log └── 2018-03-16.log ├── report ├── 2018-03-08.txt ├── 2018-03-11.txt ├── 2018-03-12.txt ├── 2018-03-13.txt ├── 2018-03-14.txt ├── 2018-03-15.txt └── 2018-03-16.txt ├── run_all.py ├── test.py ├── win_rates.py ├── write_allstock.py ├── write_everyday.py └── 整体思路readme.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/find_stock.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/__pycache__/find_stock.cpython-35.pyc -------------------------------------------------------------------------------- /__pycache__/win_rates.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/__pycache__/win_rates.cpython-35.pyc -------------------------------------------------------------------------------- /__pycache__/write_everyday.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/__pycache__/write_everyday.cpython-35.pyc -------------------------------------------------------------------------------- /add_sql_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/add_sql_unique.py -------------------------------------------------------------------------------- /creat_everydatabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/creat_everydatabase.py -------------------------------------------------------------------------------- /delete_stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/delete_stock.py -------------------------------------------------------------------------------- /find_stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/find_stock.py -------------------------------------------------------------------------------- /log/2018-03-08.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/log/2018-03-08.log -------------------------------------------------------------------------------- /log/2018-03-11.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/log/2018-03-11.log -------------------------------------------------------------------------------- /log/2018-03-12.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/log/2018-03-12.log -------------------------------------------------------------------------------- /log/2018-03-13.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/log/2018-03-13.log -------------------------------------------------------------------------------- /log/2018-03-14.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/log/2018-03-14.log -------------------------------------------------------------------------------- /log/2018-03-15.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/log/2018-03-15.log -------------------------------------------------------------------------------- /log/2018-03-16.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/log/2018-03-16.log -------------------------------------------------------------------------------- /report/2018-03-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/report/2018-03-08.txt -------------------------------------------------------------------------------- /report/2018-03-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/report/2018-03-11.txt -------------------------------------------------------------------------------- /report/2018-03-12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/report/2018-03-12.txt -------------------------------------------------------------------------------- /report/2018-03-13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/report/2018-03-13.txt -------------------------------------------------------------------------------- /report/2018-03-14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/report/2018-03-14.txt -------------------------------------------------------------------------------- /report/2018-03-15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/report/2018-03-15.txt -------------------------------------------------------------------------------- /report/2018-03-16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/report/2018-03-16.txt -------------------------------------------------------------------------------- /run_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/run_all.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- 1 | import tushare as ts 2 | df = ts.get_stock_basics() 3 | print(len(df)) 4 | -------------------------------------------------------------------------------- /win_rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/win_rates.py -------------------------------------------------------------------------------- /write_allstock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/write_allstock.py -------------------------------------------------------------------------------- /write_everyday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/write_everyday.py -------------------------------------------------------------------------------- /整体思路readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cat-steel/stock_pick/HEAD/整体思路readme.txt --------------------------------------------------------------------------------