├── .gitignore └── .gitignore ├── .idea ├── StockAI.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Datas ├── CsvData │ └── __init__.py └── __init__.py ├── README.md ├── StockAI.py ├── __init__.py ├── code ├── QuartzTimer │ ├── __init__.py │ ├── quartzTimer.py │ ├── quartzTimer1.py │ └── quartzTimer2.py ├── SaveDateToMysql.py ├── Util │ ├── __init__.py │ └── myUtilFile.py ├── __init__.py ├── getDatasFromTushare.py └── preDealStocksDatas.py ├── doc ├── StockAI项目整体思路流程.txt ├── __init__.py └── mysql ├── modelSVM ├── __init__.py └── trainBySVM.py ├── produceModel ├── SVM.py └── __init__.py └── requests /.gitignore/.gitignore: -------------------------------------------------------------------------------- 1 | 初始提交 2 | -------------------------------------------------------------------------------- /.idea/StockAI.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 15 | 16 | 17 | 20 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 21 | 22 | 23 | 25 | 26 | 31 | 32 | 33 | 34 | 35 | true 36 | DEFINITION_ORDER 37 | 38 | 39 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 |