├── README.md ├── aicoin ├── AicoinAPI.py ├── AicoinClient.py ├── HttpUtil.py ├── PredictTrainBySklearn.py └── README.md ├── demo ├── JoinQuantDemo.py ├── README.md ├── SklearnDemo_KNeighborsClassifier.py ├── SklearnDemo_LinearRegression.py ├── SklearnDemo_Normalization.py └── TensorflowDemo.py ├── okex ├── HttpMD5Util.py ├── OkexClient.py ├── OkexSpotAPI.py └── README.md └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/README.md -------------------------------------------------------------------------------- /aicoin/AicoinAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/aicoin/AicoinAPI.py -------------------------------------------------------------------------------- /aicoin/AicoinClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/aicoin/AicoinClient.py -------------------------------------------------------------------------------- /aicoin/HttpUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/aicoin/HttpUtil.py -------------------------------------------------------------------------------- /aicoin/PredictTrainBySklearn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/aicoin/PredictTrainBySklearn.py -------------------------------------------------------------------------------- /aicoin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/aicoin/README.md -------------------------------------------------------------------------------- /demo/JoinQuantDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/demo/JoinQuantDemo.py -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/SklearnDemo_KNeighborsClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/demo/SklearnDemo_KNeighborsClassifier.py -------------------------------------------------------------------------------- /demo/SklearnDemo_LinearRegression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/demo/SklearnDemo_LinearRegression.py -------------------------------------------------------------------------------- /demo/SklearnDemo_Normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/demo/SklearnDemo_Normalization.py -------------------------------------------------------------------------------- /demo/TensorflowDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/demo/TensorflowDemo.py -------------------------------------------------------------------------------- /okex/HttpMD5Util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/okex/HttpMD5Util.py -------------------------------------------------------------------------------- /okex/OkexClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/okex/OkexClient.py -------------------------------------------------------------------------------- /okex/OkexSpotAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/okex/OkexSpotAPI.py -------------------------------------------------------------------------------- /okex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niefy/stock-machine-learning/HEAD/okex/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pandas 3 | tensorflow 4 | scikit_learn>=0.19.1 5 | scipy>=1.0.0 6 | matplotlib --------------------------------------------------------------------------------