├── .gitignore ├── 20180109_tradeapi64_windows ├── ThostFtdcMdApi.h ├── ThostFtdcTraderApi.h ├── ThostFtdcUserApiDataType.h ├── ThostFtdcUserApiStruct.h ├── error.dtd ├── error.xml ├── thostmduserapi.dll ├── thostmduserapi.lib ├── thosttraderapi.dll └── thosttraderapi.lib ├── 20180109_tradeapi_windows ├── ThostFtdcMdApi.h ├── ThostFtdcTraderApi.h ├── ThostFtdcUserApiDataType.h ├── ThostFtdcUserApiStruct.h ├── error.dtd ├── error.xml ├── thostmduserapi.dll ├── thostmduserapi.lib ├── thosttraderapi.dll └── thosttraderapi.lib ├── Dockerfile ├── README.md ├── binding-linux.gyp ├── binding-windows32.gyp ├── binding-windows64.gyp ├── binding.gyp ├── data ├── md │ └── .gitkeep └── td │ └── .gitkeep ├── docker-compose.yml ├── linux_api_trade_6.3.6.bak ├── ThostFtdcMdApi.h ├── ThostFtdcTraderApi.h ├── ThostFtdcUserApiDataType.h ├── ThostFtdcUserApiStruct.h ├── ThostFtdcUserApiStruct.h.bak ├── error.xml ├── md5.txt ├── thostmduserapi.so └── thosttraderapi.so ├── makefile ├── package.json ├── src ├── ThostFtdcMdSpiI.cpp ├── ThostFtdcMdSpiI.h ├── ThostFtdcTraderSpiI.cpp ├── ThostFtdcTraderSpiI.h ├── WrapMd.cpp ├── WrapMd.h ├── WrapTd.cpp ├── WrapTd.h ├── build │ └── config.gypi ├── comm.h ├── ctp_node.h └── shifctp.cpp ├── test ├── mduser.js └── tduser.js ├── thostmduserapi.dll ├── thosttraderapi.dll └── v6.3.11_20180109_api_tradeapi_linux64 ├── ThostFtdcMdApi.h ├── ThostFtdcTraderApi.h ├── ThostFtdcUserApiDataType.h ├── ThostFtdcUserApiStruct.h ├── error.dtd ├── error.xml ├── thostmduserapi.so └── thosttraderapi.so /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | data/**/*.con -------------------------------------------------------------------------------- /20180109_tradeapi64_windows/ThostFtdcMdApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi64_windows/ThostFtdcMdApi.h -------------------------------------------------------------------------------- /20180109_tradeapi64_windows/ThostFtdcTraderApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi64_windows/ThostFtdcTraderApi.h -------------------------------------------------------------------------------- /20180109_tradeapi64_windows/ThostFtdcUserApiDataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi64_windows/ThostFtdcUserApiDataType.h -------------------------------------------------------------------------------- /20180109_tradeapi64_windows/ThostFtdcUserApiStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi64_windows/ThostFtdcUserApiStruct.h -------------------------------------------------------------------------------- /20180109_tradeapi64_windows/error.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi64_windows/error.dtd -------------------------------------------------------------------------------- /20180109_tradeapi64_windows/error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi64_windows/error.xml -------------------------------------------------------------------------------- /20180109_tradeapi64_windows/thostmduserapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi64_windows/thostmduserapi.dll -------------------------------------------------------------------------------- /20180109_tradeapi64_windows/thostmduserapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi64_windows/thostmduserapi.lib -------------------------------------------------------------------------------- /20180109_tradeapi64_windows/thosttraderapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi64_windows/thosttraderapi.dll -------------------------------------------------------------------------------- /20180109_tradeapi64_windows/thosttraderapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi64_windows/thosttraderapi.lib -------------------------------------------------------------------------------- /20180109_tradeapi_windows/ThostFtdcMdApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi_windows/ThostFtdcMdApi.h -------------------------------------------------------------------------------- /20180109_tradeapi_windows/ThostFtdcTraderApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi_windows/ThostFtdcTraderApi.h -------------------------------------------------------------------------------- /20180109_tradeapi_windows/ThostFtdcUserApiDataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi_windows/ThostFtdcUserApiDataType.h -------------------------------------------------------------------------------- /20180109_tradeapi_windows/ThostFtdcUserApiStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi_windows/ThostFtdcUserApiStruct.h -------------------------------------------------------------------------------- /20180109_tradeapi_windows/error.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi_windows/error.dtd -------------------------------------------------------------------------------- /20180109_tradeapi_windows/error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi_windows/error.xml -------------------------------------------------------------------------------- /20180109_tradeapi_windows/thostmduserapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi_windows/thostmduserapi.dll -------------------------------------------------------------------------------- /20180109_tradeapi_windows/thostmduserapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi_windows/thostmduserapi.lib -------------------------------------------------------------------------------- /20180109_tradeapi_windows/thosttraderapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi_windows/thosttraderapi.dll -------------------------------------------------------------------------------- /20180109_tradeapi_windows/thosttraderapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/20180109_tradeapi_windows/thosttraderapi.lib -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/README.md -------------------------------------------------------------------------------- /binding-linux.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/binding-linux.gyp -------------------------------------------------------------------------------- /binding-windows32.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/binding-windows32.gyp -------------------------------------------------------------------------------- /binding-windows64.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/binding-windows64.gyp -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/binding.gyp -------------------------------------------------------------------------------- /data/md/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/td/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /linux_api_trade_6.3.6.bak/ThostFtdcMdApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/linux_api_trade_6.3.6.bak/ThostFtdcMdApi.h -------------------------------------------------------------------------------- /linux_api_trade_6.3.6.bak/ThostFtdcTraderApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/linux_api_trade_6.3.6.bak/ThostFtdcTraderApi.h -------------------------------------------------------------------------------- /linux_api_trade_6.3.6.bak/ThostFtdcUserApiDataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/linux_api_trade_6.3.6.bak/ThostFtdcUserApiDataType.h -------------------------------------------------------------------------------- /linux_api_trade_6.3.6.bak/ThostFtdcUserApiStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/linux_api_trade_6.3.6.bak/ThostFtdcUserApiStruct.h -------------------------------------------------------------------------------- /linux_api_trade_6.3.6.bak/ThostFtdcUserApiStruct.h.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/linux_api_trade_6.3.6.bak/ThostFtdcUserApiStruct.h.bak -------------------------------------------------------------------------------- /linux_api_trade_6.3.6.bak/error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/linux_api_trade_6.3.6.bak/error.xml -------------------------------------------------------------------------------- /linux_api_trade_6.3.6.bak/md5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/linux_api_trade_6.3.6.bak/md5.txt -------------------------------------------------------------------------------- /linux_api_trade_6.3.6.bak/thostmduserapi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/linux_api_trade_6.3.6.bak/thostmduserapi.so -------------------------------------------------------------------------------- /linux_api_trade_6.3.6.bak/thosttraderapi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/linux_api_trade_6.3.6.bak/thosttraderapi.so -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/makefile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/package.json -------------------------------------------------------------------------------- /src/ThostFtdcMdSpiI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/src/ThostFtdcMdSpiI.cpp -------------------------------------------------------------------------------- /src/ThostFtdcMdSpiI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/src/ThostFtdcMdSpiI.h -------------------------------------------------------------------------------- /src/ThostFtdcTraderSpiI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/src/ThostFtdcTraderSpiI.cpp -------------------------------------------------------------------------------- /src/ThostFtdcTraderSpiI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/src/ThostFtdcTraderSpiI.h -------------------------------------------------------------------------------- /src/WrapMd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/src/WrapMd.cpp -------------------------------------------------------------------------------- /src/WrapMd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/src/WrapMd.h -------------------------------------------------------------------------------- /src/WrapTd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/src/WrapTd.cpp -------------------------------------------------------------------------------- /src/WrapTd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/src/WrapTd.h -------------------------------------------------------------------------------- /src/build/config.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/src/build/config.gypi -------------------------------------------------------------------------------- /src/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/src/comm.h -------------------------------------------------------------------------------- /src/ctp_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/src/ctp_node.h -------------------------------------------------------------------------------- /src/shifctp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/src/shifctp.cpp -------------------------------------------------------------------------------- /test/mduser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/test/mduser.js -------------------------------------------------------------------------------- /test/tduser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/test/tduser.js -------------------------------------------------------------------------------- /thostmduserapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/thostmduserapi.dll -------------------------------------------------------------------------------- /thosttraderapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/thosttraderapi.dll -------------------------------------------------------------------------------- /v6.3.11_20180109_api_tradeapi_linux64/ThostFtdcMdApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/v6.3.11_20180109_api_tradeapi_linux64/ThostFtdcMdApi.h -------------------------------------------------------------------------------- /v6.3.11_20180109_api_tradeapi_linux64/ThostFtdcTraderApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/v6.3.11_20180109_api_tradeapi_linux64/ThostFtdcTraderApi.h -------------------------------------------------------------------------------- /v6.3.11_20180109_api_tradeapi_linux64/ThostFtdcUserApiDataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/v6.3.11_20180109_api_tradeapi_linux64/ThostFtdcUserApiDataType.h -------------------------------------------------------------------------------- /v6.3.11_20180109_api_tradeapi_linux64/ThostFtdcUserApiStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/v6.3.11_20180109_api_tradeapi_linux64/ThostFtdcUserApiStruct.h -------------------------------------------------------------------------------- /v6.3.11_20180109_api_tradeapi_linux64/error.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/v6.3.11_20180109_api_tradeapi_linux64/error.dtd -------------------------------------------------------------------------------- /v6.3.11_20180109_api_tradeapi_linux64/error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/v6.3.11_20180109_api_tradeapi_linux64/error.xml -------------------------------------------------------------------------------- /v6.3.11_20180109_api_tradeapi_linux64/thostmduserapi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/v6.3.11_20180109_api_tradeapi_linux64/thostmduserapi.so -------------------------------------------------------------------------------- /v6.3.11_20180109_api_tradeapi_linux64/thosttraderapi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamyzhang/nodectp/HEAD/v6.3.11_20180109_api_tradeapi_linux64/thosttraderapi.so --------------------------------------------------------------------------------