├── CMakeLists.txt ├── CMakeSettings.json ├── DataCard.cpp ├── DataCard.h ├── DataStruct.h ├── Divergence.cpp ├── Divergence.h ├── EMA.cpp ├── EMA.h ├── EncodeTransform.cpp ├── EncodeTransform.h ├── FileSnippet.dll ├── KlineGenerate.cpp ├── KlineGenerate.h ├── LICENSE ├── LineSegment.cpp ├── LineSegment.h ├── MACD.cpp ├── MACD.h ├── MarketData.cpp ├── MarketData.h ├── Merge.cpp ├── Merge.h ├── NoticeHandle.cpp ├── NoticeHandle.h ├── QuotationHandle.cpp ├── QuotationHandle.h ├── README.md ├── Stroke.cpp ├── Stroke.h ├── TextSnippet.dll ├── ThostFtdcHandle.cpp ├── ThostFtdcHandle.h ├── Trade.cpp ├── Trade.h ├── TrendCentralAndType.cpp ├── TrendCentralAndType.h ├── Typing.cpp ├── Typing.h ├── Utils.cpp ├── Utils.h ├── ZenSchedule.cpp ├── ZenSchedule.h ├── ZenTheory.cpp ├── ZenTheory.h ├── ZenTheory.sln ├── ZenTheory.vcxproj ├── ZenTheory.vcxproj.filters ├── ZenTheory.vcxproj.user ├── a.bat ├── flow_md ├── DialogRsp.con ├── QueryRsp.con └── TradingDay.con ├── futures.sql ├── gp.sql ├── main.cpp ├── secdata_transfer.grpc.pb.cc ├── secdata_transfer.grpc.pb.h ├── secdata_transfer.pb.cc ├── secdata_transfer.pb.h ├── secdata_transfer.proto ├── stdafx.cpp ├── stdafx.h ├── test.cpp ├── thostmduserapi_se.dll ├── trade.sql ├── zen_data_svr.grpc.pb.cc ├── zen_data_svr.grpc.pb.h ├── zen_data_svr.pb.cc ├── zen_data_svr.pb.h ├── zen_data_svr.proto ├── zen_notice.grpc.pb.cc ├── zen_notice.grpc.pb.h ├── zen_notice.pb.cc ├── zen_notice.pb.h └── zen_notice.proto /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /DataCard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/DataCard.cpp -------------------------------------------------------------------------------- /DataCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/DataCard.h -------------------------------------------------------------------------------- /DataStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/DataStruct.h -------------------------------------------------------------------------------- /Divergence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/Divergence.cpp -------------------------------------------------------------------------------- /Divergence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/Divergence.h -------------------------------------------------------------------------------- /EMA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/EMA.cpp -------------------------------------------------------------------------------- /EMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/EMA.h -------------------------------------------------------------------------------- /EncodeTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/EncodeTransform.cpp -------------------------------------------------------------------------------- /EncodeTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/EncodeTransform.h -------------------------------------------------------------------------------- /FileSnippet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/FileSnippet.dll -------------------------------------------------------------------------------- /KlineGenerate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/KlineGenerate.cpp -------------------------------------------------------------------------------- /KlineGenerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/KlineGenerate.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/LICENSE -------------------------------------------------------------------------------- /LineSegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/LineSegment.cpp -------------------------------------------------------------------------------- /LineSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/LineSegment.h -------------------------------------------------------------------------------- /MACD.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MACD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/MACD.h -------------------------------------------------------------------------------- /MarketData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/MarketData.cpp -------------------------------------------------------------------------------- /MarketData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/MarketData.h -------------------------------------------------------------------------------- /Merge.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/Merge.h -------------------------------------------------------------------------------- /NoticeHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/NoticeHandle.cpp -------------------------------------------------------------------------------- /NoticeHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/NoticeHandle.h -------------------------------------------------------------------------------- /QuotationHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/QuotationHandle.cpp -------------------------------------------------------------------------------- /QuotationHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/QuotationHandle.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/README.md -------------------------------------------------------------------------------- /Stroke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/Stroke.cpp -------------------------------------------------------------------------------- /Stroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/Stroke.h -------------------------------------------------------------------------------- /TextSnippet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/TextSnippet.dll -------------------------------------------------------------------------------- /ThostFtdcHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/ThostFtdcHandle.cpp -------------------------------------------------------------------------------- /ThostFtdcHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/ThostFtdcHandle.h -------------------------------------------------------------------------------- /Trade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/Trade.cpp -------------------------------------------------------------------------------- /Trade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/Trade.h -------------------------------------------------------------------------------- /TrendCentralAndType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/TrendCentralAndType.cpp -------------------------------------------------------------------------------- /TrendCentralAndType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/TrendCentralAndType.h -------------------------------------------------------------------------------- /Typing.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Typing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/Typing.h -------------------------------------------------------------------------------- /Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/Utils.cpp -------------------------------------------------------------------------------- /Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/Utils.h -------------------------------------------------------------------------------- /ZenSchedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/ZenSchedule.cpp -------------------------------------------------------------------------------- /ZenSchedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/ZenSchedule.h -------------------------------------------------------------------------------- /ZenTheory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/ZenTheory.cpp -------------------------------------------------------------------------------- /ZenTheory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/ZenTheory.h -------------------------------------------------------------------------------- /ZenTheory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/ZenTheory.sln -------------------------------------------------------------------------------- /ZenTheory.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/ZenTheory.vcxproj -------------------------------------------------------------------------------- /ZenTheory.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/ZenTheory.vcxproj.filters -------------------------------------------------------------------------------- /ZenTheory.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/ZenTheory.vcxproj.user -------------------------------------------------------------------------------- /a.bat: -------------------------------------------------------------------------------- 1 | cmd -------------------------------------------------------------------------------- /flow_md/DialogRsp.con: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /flow_md/QueryRsp.con: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /flow_md/TradingDay.con: -------------------------------------------------------------------------------- 1 | ;0 -------------------------------------------------------------------------------- /futures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/futures.sql -------------------------------------------------------------------------------- /gp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/gp.sql -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/main.cpp -------------------------------------------------------------------------------- /secdata_transfer.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/secdata_transfer.grpc.pb.cc -------------------------------------------------------------------------------- /secdata_transfer.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/secdata_transfer.grpc.pb.h -------------------------------------------------------------------------------- /secdata_transfer.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/secdata_transfer.pb.cc -------------------------------------------------------------------------------- /secdata_transfer.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/secdata_transfer.pb.h -------------------------------------------------------------------------------- /secdata_transfer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/secdata_transfer.proto -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/stdafx.h -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/test.cpp -------------------------------------------------------------------------------- /thostmduserapi_se.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/thostmduserapi_se.dll -------------------------------------------------------------------------------- /trade.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/trade.sql -------------------------------------------------------------------------------- /zen_data_svr.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/zen_data_svr.grpc.pb.cc -------------------------------------------------------------------------------- /zen_data_svr.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/zen_data_svr.grpc.pb.h -------------------------------------------------------------------------------- /zen_data_svr.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/zen_data_svr.pb.cc -------------------------------------------------------------------------------- /zen_data_svr.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/zen_data_svr.pb.h -------------------------------------------------------------------------------- /zen_data_svr.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/zen_data_svr.proto -------------------------------------------------------------------------------- /zen_notice.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/zen_notice.grpc.pb.cc -------------------------------------------------------------------------------- /zen_notice.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/zen_notice.grpc.pb.h -------------------------------------------------------------------------------- /zen_notice.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/zen_notice.pb.cc -------------------------------------------------------------------------------- /zen_notice.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/zen_notice.pb.h -------------------------------------------------------------------------------- /zen_notice.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artistliao/ZenTheory/HEAD/zen_notice.proto --------------------------------------------------------------------------------