ctpbee-opt-api 0.1.0__cp310-cp310-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (414) hide show
  1. ctpbee_api/__init__.py +17 -0
  2. ctpbee_api/ctp/__init__.py +3 -0
  3. ctpbee_api/ctp/ctp_constant.py +1253 -0
  4. ctpbee_api/ctp/generator/concat.py +93 -0
  5. ctpbee_api/ctp/generator/const.py +325 -0
  6. ctpbee_api/ctp/generator/ctp_constant.py +1274 -0
  7. ctpbee_api/ctp/generator/ctp_md_header_define.h +13 -0
  8. ctpbee_api/ctp/generator/ctp_md_header_function.h +6 -0
  9. ctpbee_api/ctp/generator/ctp_md_header_on.h +26 -0
  10. ctpbee_api/ctp/generator/ctp_md_header_process.h +26 -0
  11. ctpbee_api/ctp/generator/ctp_md_source_function.cpp +42 -0
  12. ctpbee_api/ctp/generator/ctp_md_source_module.cpp +18 -0
  13. ctpbee_api/ctp/generator/ctp_md_source_on.cpp +156 -0
  14. ctpbee_api/ctp/generator/ctp_md_source_process.cpp +282 -0
  15. ctpbee_api/ctp/generator/ctp_md_source_switch.cpp +78 -0
  16. ctpbee_api/ctp/generator/ctp_md_source_task.cpp +211 -0
  17. ctpbee_api/ctp/generator/ctp_struct.py +5640 -0
  18. ctpbee_api/ctp/generator/ctp_td_header_define.h +130 -0
  19. ctpbee_api/ctp/generator/ctp_td_header_function.h +174 -0
  20. ctpbee_api/ctp/generator/ctp_td_header_on.h +260 -0
  21. ctpbee_api/ctp/generator/ctp_td_header_process.h +260 -0
  22. ctpbee_api/ctp/generator/ctp_td_source_function.cpp +1456 -0
  23. ctpbee_api/ctp/generator/ctp_td_source_module.cpp +222 -0
  24. ctpbee_api/ctp/generator/ctp_td_source_on.cpp +1572 -0
  25. ctpbee_api/ctp/generator/ctp_td_source_process.cpp +5472 -0
  26. ctpbee_api/ctp/generator/ctp_td_source_switch.cpp +780 -0
  27. ctpbee_api/ctp/generator/ctp_td_source_task.cpp +2444 -0
  28. ctpbee_api/ctp/generator/ctp_typedef.py +800 -0
  29. ctpbee_api/ctp/generator/generate_api_functions.py +345 -0
  30. ctpbee_api/ctp/generator/generate_data_type.py +76 -0
  31. ctpbee_api/ctp/generator/generate_struct.py +84 -0
  32. ctpbee_api/ctp/include/mac/ctp/ThostFtdcMdApi.h +168 -0
  33. ctpbee_api/ctp/include/mac/ctp/ThostFtdcTraderApi.h +770 -0
  34. ctpbee_api/ctp/include/mac/ctp/ThostFtdcUserApiDataType.h +6878 -0
  35. ctpbee_api/ctp/include/mac/ctp/ThostFtdcUserApiStruct.h +10915 -0
  36. ctpbee_api/ctp/include/mac/pybind11/attr.h +690 -0
  37. ctpbee_api/ctp/include/mac/pybind11/buffer_info.h +208 -0
  38. ctpbee_api/ctp/include/mac/pybind11/cast.h +1704 -0
  39. ctpbee_api/ctp/include/mac/pybind11/chrono.h +225 -0
  40. ctpbee_api/ctp/include/mac/pybind11/common.h +2 -0
  41. ctpbee_api/ctp/include/mac/pybind11/complex.h +74 -0
  42. ctpbee_api/ctp/include/mac/pybind11/detail/class.h +743 -0
  43. ctpbee_api/ctp/include/mac/pybind11/detail/common.h +1255 -0
  44. ctpbee_api/ctp/include/mac/pybind11/detail/descr.h +171 -0
  45. ctpbee_api/ctp/include/mac/pybind11/detail/init.h +434 -0
  46. ctpbee_api/ctp/include/mac/pybind11/detail/internals.h +656 -0
  47. ctpbee_api/ctp/include/mac/pybind11/detail/type_caster_base.h +1177 -0
  48. ctpbee_api/ctp/include/mac/pybind11/detail/typeid.h +65 -0
  49. ctpbee_api/ctp/include/mac/pybind11/eigen/common.h +9 -0
  50. ctpbee_api/ctp/include/mac/pybind11/eigen/matrix.h +714 -0
  51. ctpbee_api/ctp/include/mac/pybind11/eigen/tensor.h +516 -0
  52. ctpbee_api/ctp/include/mac/pybind11/eigen.h +12 -0
  53. ctpbee_api/ctp/include/mac/pybind11/embed.h +316 -0
  54. ctpbee_api/ctp/include/mac/pybind11/eval.h +156 -0
  55. ctpbee_api/ctp/include/mac/pybind11/functional.h +137 -0
  56. ctpbee_api/ctp/include/mac/pybind11/gil.h +239 -0
  57. ctpbee_api/ctp/include/mac/pybind11/iostream.h +265 -0
  58. ctpbee_api/ctp/include/mac/pybind11/numpy.h +1998 -0
  59. ctpbee_api/ctp/include/mac/pybind11/operators.h +202 -0
  60. ctpbee_api/ctp/include/mac/pybind11/options.h +92 -0
  61. ctpbee_api/ctp/include/mac/pybind11/pybind11.h +2890 -0
  62. ctpbee_api/ctp/include/mac/pybind11/pytypes.h +2557 -0
  63. ctpbee_api/ctp/include/mac/pybind11/stl/filesystem.h +116 -0
  64. ctpbee_api/ctp/include/mac/pybind11/stl.h +447 -0
  65. ctpbee_api/ctp/include/mac/pybind11/stl_bind.h +851 -0
  66. ctpbee_api/ctp/include/mac/pybind11/type_caster_pyobject_ptr.h +61 -0
  67. ctpbee_api/ctp/include/new/ctp/ThostFtdcMdApi.h +168 -0
  68. ctpbee_api/ctp/include/new/ctp/ThostFtdcTraderApi.h +770 -0
  69. ctpbee_api/ctp/include/new/ctp/ThostFtdcUserApiDataType.h +6878 -0
  70. ctpbee_api/ctp/include/new/ctp/ThostFtdcUserApiStruct.h +10915 -0
  71. ctpbee_api/ctp/include/new/pybind11/attr.h +690 -0
  72. ctpbee_api/ctp/include/new/pybind11/buffer_info.h +208 -0
  73. ctpbee_api/ctp/include/new/pybind11/cast.h +1704 -0
  74. ctpbee_api/ctp/include/new/pybind11/chrono.h +225 -0
  75. ctpbee_api/ctp/include/new/pybind11/common.h +2 -0
  76. ctpbee_api/ctp/include/new/pybind11/complex.h +74 -0
  77. ctpbee_api/ctp/include/new/pybind11/detail/class.h +743 -0
  78. ctpbee_api/ctp/include/new/pybind11/detail/common.h +1255 -0
  79. ctpbee_api/ctp/include/new/pybind11/detail/descr.h +171 -0
  80. ctpbee_api/ctp/include/new/pybind11/detail/init.h +434 -0
  81. ctpbee_api/ctp/include/new/pybind11/detail/internals.h +656 -0
  82. ctpbee_api/ctp/include/new/pybind11/detail/type_caster_base.h +1177 -0
  83. ctpbee_api/ctp/include/new/pybind11/detail/typeid.h +65 -0
  84. ctpbee_api/ctp/include/new/pybind11/eigen/common.h +9 -0
  85. ctpbee_api/ctp/include/new/pybind11/eigen/matrix.h +714 -0
  86. ctpbee_api/ctp/include/new/pybind11/eigen/tensor.h +516 -0
  87. ctpbee_api/ctp/include/new/pybind11/eigen.h +12 -0
  88. ctpbee_api/ctp/include/new/pybind11/embed.h +316 -0
  89. ctpbee_api/ctp/include/new/pybind11/eval.h +156 -0
  90. ctpbee_api/ctp/include/new/pybind11/functional.h +137 -0
  91. ctpbee_api/ctp/include/new/pybind11/gil.h +239 -0
  92. ctpbee_api/ctp/include/new/pybind11/iostream.h +265 -0
  93. ctpbee_api/ctp/include/new/pybind11/numpy.h +1998 -0
  94. ctpbee_api/ctp/include/new/pybind11/operators.h +202 -0
  95. ctpbee_api/ctp/include/new/pybind11/options.h +92 -0
  96. ctpbee_api/ctp/include/new/pybind11/pybind11.h +2890 -0
  97. ctpbee_api/ctp/include/new/pybind11/pytypes.h +2557 -0
  98. ctpbee_api/ctp/include/new/pybind11/stl/filesystem.h +116 -0
  99. ctpbee_api/ctp/include/new/pybind11/stl.h +447 -0
  100. ctpbee_api/ctp/include/new/pybind11/stl_bind.h +851 -0
  101. ctpbee_api/ctp/include/new/pybind11/type_caster_pyobject_ptr.h +61 -0
  102. ctpbee_api/ctp/include/previous/ctp/ThostFtdcMdApi.h +168 -0
  103. ctpbee_api/ctp/include/previous/ctp/ThostFtdcTraderApi.h +770 -0
  104. ctpbee_api/ctp/include/previous/ctp/ThostFtdcUserApiDataType.h +6878 -0
  105. ctpbee_api/ctp/include/previous/ctp/ThostFtdcUserApiStruct.h +10915 -0
  106. ctpbee_api/ctp/include/previous/pybind11/attr.h +489 -0
  107. ctpbee_api/ctp/include/previous/pybind11/buffer_info.h +108 -0
  108. ctpbee_api/ctp/include/previous/pybind11/cast.h +2067 -0
  109. ctpbee_api/ctp/include/previous/pybind11/chrono.h +162 -0
  110. ctpbee_api/ctp/include/previous/pybind11/common.h +2 -0
  111. ctpbee_api/ctp/include/previous/pybind11/complex.h +61 -0
  112. ctpbee_api/ctp/include/previous/pybind11/detail/class.h +626 -0
  113. ctpbee_api/ctp/include/previous/pybind11/detail/common.h +803 -0
  114. ctpbee_api/ctp/include/previous/pybind11/detail/descr.h +185 -0
  115. ctpbee_api/ctp/include/previous/pybind11/detail/init.h +335 -0
  116. ctpbee_api/ctp/include/previous/pybind11/detail/internals.h +285 -0
  117. ctpbee_api/ctp/include/previous/pybind11/detail/typeid.h +53 -0
  118. ctpbee_api/ctp/include/previous/pybind11/eigen.h +604 -0
  119. ctpbee_api/ctp/include/previous/pybind11/embed.h +194 -0
  120. ctpbee_api/ctp/include/previous/pybind11/eval.h +117 -0
  121. ctpbee_api/ctp/include/previous/pybind11/functional.h +85 -0
  122. ctpbee_api/ctp/include/previous/pybind11/iostream.h +200 -0
  123. ctpbee_api/ctp/include/previous/pybind11/numpy.h +1601 -0
  124. ctpbee_api/ctp/include/previous/pybind11/operators.h +168 -0
  125. ctpbee_api/ctp/include/previous/pybind11/options.h +65 -0
  126. ctpbee_api/ctp/include/previous/pybind11/pybind11.h +1965 -0
  127. ctpbee_api/ctp/include/previous/pybind11/pytypes.h +1332 -0
  128. ctpbee_api/ctp/include/previous/pybind11/stl.h +376 -0
  129. ctpbee_api/ctp/include/previous/pybind11/stl_bind.h +599 -0
  130. ctpbee_api/ctp/libs/libcomunicationkey.a +0 -0
  131. ctpbee_api/ctp/libs/libcrypto.a +0 -0
  132. ctpbee_api/ctp/libs/libssl.a +0 -0
  133. ctpbee_api/ctp/libs/thostmduserapi_se.lib +0 -0
  134. ctpbee_api/ctp/libs/thosttraderapi_se.lib +0 -0
  135. ctpbee_api/ctp/libthostmduserapi_se.so +0 -0
  136. ctpbee_api/ctp/libthosttraderapi_se.so +0 -0
  137. ctpbee_api/ctp/thostmduserapi_se.dll +0 -0
  138. ctpbee_api/ctp/thosttraderapi_se.dll +0 -0
  139. ctpbee_api/ctp/vnctp/vnctp.h +189 -0
  140. ctpbee_api/ctp/vnctp/vnctp.sln +41 -0
  141. ctpbee_api/ctp/vnctp/vnctpmd/dllmain.cpp +19 -0
  142. ctpbee_api/ctp/vnctp/vnctpmd/stdafx.cpp +1 -0
  143. ctpbee_api/ctp/vnctp/vnctpmd/stdafx.h +17 -0
  144. ctpbee_api/ctp/vnctp/vnctpmd/targetver.h +8 -0
  145. ctpbee_api/ctp/vnctp/vnctpmd/vnctpmd.cpp +953 -0
  146. ctpbee_api/ctp/vnctp/vnctpmd/vnctpmd.h +209 -0
  147. ctpbee_api/ctp/vnctp/vnctpmd/vnctpmd.vcxproj +200 -0
  148. ctpbee_api/ctp/vnctp/vnctpmd/vnctpmd.vcxproj.filters +54 -0
  149. ctpbee_api/ctp/vnctp/vnctpmd/vnctpmd.vcxproj.user +4 -0
  150. ctpbee_api/ctp/vnctp/vnctptd/dllmain.cpp +19 -0
  151. ctpbee_api/ctp/vnctp/vnctptd/stdafx.cpp +1 -0
  152. ctpbee_api/ctp/vnctp/vnctptd/stdafx.h +16 -0
  153. ctpbee_api/ctp/vnctp/vnctptd/targetver.h +8 -0
  154. ctpbee_api/ctp/vnctp/vnctptd/vnctptd.cpp +12148 -0
  155. ctpbee_api/ctp/vnctp/vnctptd/vnctptd.h +1329 -0
  156. ctpbee_api/ctp/vnctp/vnctptd/vnctptd.vcxproj +198 -0
  157. ctpbee_api/ctp/vnctp/vnctptd/vnctptd.vcxproj.filters +54 -0
  158. ctpbee_api/ctp/vnctp/vnctptd/vnctptd.vcxproj.user +4 -0
  159. ctpbee_api/ctp/vnctpmd.cp310-win_amd64.pyd +0 -0
  160. ctpbee_api/ctp/vnctptd.cp310-win_amd64.pyd +0 -0
  161. ctpbee_api/ctp_mini/__init__.py +3 -0
  162. ctpbee_api/ctp_mini/generator/generate_api_functions.py +343 -0
  163. ctpbee_api/ctp_mini/generator/generate_data_type.py +76 -0
  164. ctpbee_api/ctp_mini/generator/generate_struct.py +85 -0
  165. ctpbee_api/ctp_mini/generator/mini_constant.py +1186 -0
  166. ctpbee_api/ctp_mini/generator/mini_md_header_define.h +13 -0
  167. ctpbee_api/ctp_mini/generator/mini_md_header_function.h +4 -0
  168. ctpbee_api/ctp_mini/generator/mini_md_header_on.h +26 -0
  169. ctpbee_api/ctp_mini/generator/mini_md_header_process.h +26 -0
  170. ctpbee_api/ctp_mini/generator/mini_md_source_function.cpp +29 -0
  171. ctpbee_api/ctp_mini/generator/mini_md_source_module.cpp +17 -0
  172. ctpbee_api/ctp_mini/generator/mini_md_source_on.cpp +156 -0
  173. ctpbee_api/ctp_mini/generator/mini_md_source_process.cpp +264 -0
  174. ctpbee_api/ctp_mini/generator/mini_md_source_switch.cpp +78 -0
  175. ctpbee_api/ctp_mini/generator/mini_md_source_task.cpp +203 -0
  176. ctpbee_api/ctp_mini/generator/mini_struct.py +4599 -0
  177. ctpbee_api/ctp_mini/generator/mini_td_header_define.h +63 -0
  178. ctpbee_api/ctp_mini/generator/mini_td_header_function.h +84 -0
  179. ctpbee_api/ctp_mini/generator/mini_td_header_on.h +126 -0
  180. ctpbee_api/ctp_mini/generator/mini_td_header_process.h +126 -0
  181. ctpbee_api/ctp_mini/generator/mini_td_source_function.cpp +663 -0
  182. ctpbee_api/ctp_mini/generator/mini_td_source_module.cpp +107 -0
  183. ctpbee_api/ctp_mini/generator/mini_td_source_on.cpp +756 -0
  184. ctpbee_api/ctp_mini/generator/mini_td_source_process.cpp +2492 -0
  185. ctpbee_api/ctp_mini/generator/mini_td_source_switch.cpp +378 -0
  186. ctpbee_api/ctp_mini/generator/mini_td_source_task.cpp +1193 -0
  187. ctpbee_api/ctp_mini/generator/mini_typedef.py +755 -0
  188. ctpbee_api/ctp_mini/generator/package/vnminimd.cpp +886 -0
  189. ctpbee_api/ctp_mini/generator/package/vnminimd.h +205 -0
  190. ctpbee_api/ctp_mini/include/new/mini/ThostFtdcMdApi.h +148 -0
  191. ctpbee_api/ctp_mini/include/new/mini/ThostFtdcTraderApi.h +419 -0
  192. ctpbee_api/ctp_mini/include/new/mini/ThostFtdcUserApiDataType.h +6458 -0
  193. ctpbee_api/ctp_mini/include/new/mini/ThostFtdcUserApiStruct.h +8890 -0
  194. ctpbee_api/ctp_mini/include/new/pybind11/attr.h +690 -0
  195. ctpbee_api/ctp_mini/include/new/pybind11/buffer_info.h +208 -0
  196. ctpbee_api/ctp_mini/include/new/pybind11/cast.h +1704 -0
  197. ctpbee_api/ctp_mini/include/new/pybind11/chrono.h +225 -0
  198. ctpbee_api/ctp_mini/include/new/pybind11/common.h +2 -0
  199. ctpbee_api/ctp_mini/include/new/pybind11/complex.h +74 -0
  200. ctpbee_api/ctp_mini/include/new/pybind11/detail/class.h +743 -0
  201. ctpbee_api/ctp_mini/include/new/pybind11/detail/common.h +1255 -0
  202. ctpbee_api/ctp_mini/include/new/pybind11/detail/descr.h +171 -0
  203. ctpbee_api/ctp_mini/include/new/pybind11/detail/init.h +434 -0
  204. ctpbee_api/ctp_mini/include/new/pybind11/detail/internals.h +656 -0
  205. ctpbee_api/ctp_mini/include/new/pybind11/detail/type_caster_base.h +1177 -0
  206. ctpbee_api/ctp_mini/include/new/pybind11/detail/typeid.h +65 -0
  207. ctpbee_api/ctp_mini/include/new/pybind11/eigen/common.h +9 -0
  208. ctpbee_api/ctp_mini/include/new/pybind11/eigen/matrix.h +714 -0
  209. ctpbee_api/ctp_mini/include/new/pybind11/eigen/tensor.h +516 -0
  210. ctpbee_api/ctp_mini/include/new/pybind11/eigen.h +12 -0
  211. ctpbee_api/ctp_mini/include/new/pybind11/embed.h +316 -0
  212. ctpbee_api/ctp_mini/include/new/pybind11/eval.h +156 -0
  213. ctpbee_api/ctp_mini/include/new/pybind11/functional.h +137 -0
  214. ctpbee_api/ctp_mini/include/new/pybind11/gil.h +239 -0
  215. ctpbee_api/ctp_mini/include/new/pybind11/iostream.h +265 -0
  216. ctpbee_api/ctp_mini/include/new/pybind11/numpy.h +1998 -0
  217. ctpbee_api/ctp_mini/include/new/pybind11/operators.h +202 -0
  218. ctpbee_api/ctp_mini/include/new/pybind11/options.h +92 -0
  219. ctpbee_api/ctp_mini/include/new/pybind11/pybind11.h +2890 -0
  220. ctpbee_api/ctp_mini/include/new/pybind11/pytypes.h +2557 -0
  221. ctpbee_api/ctp_mini/include/new/pybind11/stl/filesystem.h +116 -0
  222. ctpbee_api/ctp_mini/include/new/pybind11/stl.h +447 -0
  223. ctpbee_api/ctp_mini/include/new/pybind11/stl_bind.h +851 -0
  224. ctpbee_api/ctp_mini/include/new/pybind11/type_caster_pyobject_ptr.h +61 -0
  225. ctpbee_api/ctp_mini/include/previous/mini/ThostFtdcMdApi.h +148 -0
  226. ctpbee_api/ctp_mini/include/previous/mini/ThostFtdcTraderApi.h +419 -0
  227. ctpbee_api/ctp_mini/include/previous/mini/ThostFtdcUserApiDataType.h +6458 -0
  228. ctpbee_api/ctp_mini/include/previous/mini/ThostFtdcUserApiStruct.h +8890 -0
  229. ctpbee_api/ctp_mini/include/previous/pybind11/attr.h +489 -0
  230. ctpbee_api/ctp_mini/include/previous/pybind11/buffer_info.h +108 -0
  231. ctpbee_api/ctp_mini/include/previous/pybind11/cast.h +2067 -0
  232. ctpbee_api/ctp_mini/include/previous/pybind11/chrono.h +162 -0
  233. ctpbee_api/ctp_mini/include/previous/pybind11/common.h +2 -0
  234. ctpbee_api/ctp_mini/include/previous/pybind11/complex.h +61 -0
  235. ctpbee_api/ctp_mini/include/previous/pybind11/detail/class.h +626 -0
  236. ctpbee_api/ctp_mini/include/previous/pybind11/detail/common.h +803 -0
  237. ctpbee_api/ctp_mini/include/previous/pybind11/detail/descr.h +185 -0
  238. ctpbee_api/ctp_mini/include/previous/pybind11/detail/init.h +335 -0
  239. ctpbee_api/ctp_mini/include/previous/pybind11/detail/internals.h +285 -0
  240. ctpbee_api/ctp_mini/include/previous/pybind11/detail/typeid.h +53 -0
  241. ctpbee_api/ctp_mini/include/previous/pybind11/eigen.h +604 -0
  242. ctpbee_api/ctp_mini/include/previous/pybind11/embed.h +194 -0
  243. ctpbee_api/ctp_mini/include/previous/pybind11/eval.h +117 -0
  244. ctpbee_api/ctp_mini/include/previous/pybind11/functional.h +85 -0
  245. ctpbee_api/ctp_mini/include/previous/pybind11/iostream.h +200 -0
  246. ctpbee_api/ctp_mini/include/previous/pybind11/numpy.h +1601 -0
  247. ctpbee_api/ctp_mini/include/previous/pybind11/operators.h +168 -0
  248. ctpbee_api/ctp_mini/include/previous/pybind11/options.h +65 -0
  249. ctpbee_api/ctp_mini/include/previous/pybind11/pybind11.h +1965 -0
  250. ctpbee_api/ctp_mini/include/previous/pybind11/pytypes.h +1332 -0
  251. ctpbee_api/ctp_mini/include/previous/pybind11/stl.h +376 -0
  252. ctpbee_api/ctp_mini/include/previous/pybind11/stl_bind.h +599 -0
  253. ctpbee_api/ctp_mini/libs/thostmduserapi.lib +0 -0
  254. ctpbee_api/ctp_mini/libs/thosttraderapi.lib +0 -0
  255. ctpbee_api/ctp_mini/libthostmduserapi.so +0 -0
  256. ctpbee_api/ctp_mini/libthosttraderapi.so +0 -0
  257. ctpbee_api/ctp_mini/mini_constant.py +1186 -0
  258. ctpbee_api/ctp_mini/thostmduserapi.dll +0 -0
  259. ctpbee_api/ctp_mini/thosttraderapi.dll +0 -0
  260. ctpbee_api/ctp_mini/vnctp_mini/vnctp_mini.h +146 -0
  261. ctpbee_api/ctp_mini/vnctp_mini/vnctp_mini.sln +41 -0
  262. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/dllmain.cpp +0 -0
  263. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/stdafx.cpp +0 -0
  264. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/stdafx.h +0 -0
  265. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/targetver.h +0 -0
  266. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/vnctp_minimd.cpp +886 -0
  267. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/vnctp_minimd.h +203 -0
  268. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/vnctp_minimd.vcxproj +183 -0
  269. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/vnctp_minimd.vcxproj.filters +54 -0
  270. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minimd/vnctp_minimd.vcxproj.user +4 -0
  271. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/dllmain.cpp +0 -0
  272. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/stdafx.cpp +0 -0
  273. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/stdafx.h +0 -0
  274. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/targetver.h +0 -0
  275. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/vnctp_minitd.cpp +5716 -0
  276. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/vnctp_minitd.h +680 -0
  277. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/vnctp_minitd.vcxproj +180 -0
  278. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/vnctp_minitd.vcxproj.filters +54 -0
  279. ctpbee_api/ctp_mini/vnctp_mini/vnctp_minitd/vnctp_minitd.vcxproj.user +4 -0
  280. ctpbee_api/ctp_mini/vnctp_minimd.cp310-win_amd64.pyd +0 -0
  281. ctpbee_api/ctp_mini/vnctp_minitd.cp310-win_amd64.pyd +0 -0
  282. ctpbee_api/ctp_mini/vnctp_minitd.lib +0 -0
  283. ctpbee_api/rohon/RohonBaseV64.dll +0 -0
  284. ctpbee_api/rohon/WinDataCollect.dll +0 -0
  285. ctpbee_api/rohon/__init__.py +3 -0
  286. ctpbee_api/rohon/generator/generate_api_functions.py +348 -0
  287. ctpbee_api/rohon/generator/generate_data_type.py +76 -0
  288. ctpbee_api/rohon/generator/generate_struct.py +84 -0
  289. ctpbee_api/rohon/generator/rohon_constant.py +1242 -0
  290. ctpbee_api/rohon/generator/rohon_md_header_define.h +13 -0
  291. ctpbee_api/rohon/generator/rohon_md_header_function.h +6 -0
  292. ctpbee_api/rohon/generator/rohon_md_header_on.h +26 -0
  293. ctpbee_api/rohon/generator/rohon_md_header_process.h +26 -0
  294. ctpbee_api/rohon/generator/rohon_md_source_function.cpp +40 -0
  295. ctpbee_api/rohon/generator/rohon_md_source_module.cpp +18 -0
  296. ctpbee_api/rohon/generator/rohon_md_source_on.cpp +156 -0
  297. ctpbee_api/rohon/generator/rohon_md_source_process.cpp +271 -0
  298. ctpbee_api/rohon/generator/rohon_md_source_switch.cpp +78 -0
  299. ctpbee_api/rohon/generator/rohon_md_source_task.cpp +211 -0
  300. ctpbee_api/rohon/generator/rohon_struct.py +4958 -0
  301. ctpbee_api/rohon/generator/rohon_td_header_define.h +125 -0
  302. ctpbee_api/rohon/generator/rohon_td_header_function.h +164 -0
  303. ctpbee_api/rohon/generator/rohon_td_header_on.h +250 -0
  304. ctpbee_api/rohon/generator/rohon_td_header_process.h +250 -0
  305. ctpbee_api/rohon/generator/rohon_td_source_function.cpp +1338 -0
  306. ctpbee_api/rohon/generator/rohon_td_source_module.cpp +209 -0
  307. ctpbee_api/rohon/generator/rohon_td_source_on.cpp +1500 -0
  308. ctpbee_api/rohon/generator/rohon_td_source_process.cpp +5125 -0
  309. ctpbee_api/rohon/generator/rohon_td_source_switch.cpp +750 -0
  310. ctpbee_api/rohon/generator/rohon_td_source_task.cpp +2339 -0
  311. ctpbee_api/rohon/generator/rohon_typedef.py +781 -0
  312. ctpbee_api/rohon/include/new/pybind11/attr.h +690 -0
  313. ctpbee_api/rohon/include/new/pybind11/buffer_info.h +208 -0
  314. ctpbee_api/rohon/include/new/pybind11/cast.h +1704 -0
  315. ctpbee_api/rohon/include/new/pybind11/chrono.h +225 -0
  316. ctpbee_api/rohon/include/new/pybind11/common.h +2 -0
  317. ctpbee_api/rohon/include/new/pybind11/complex.h +74 -0
  318. ctpbee_api/rohon/include/new/pybind11/detail/class.h +743 -0
  319. ctpbee_api/rohon/include/new/pybind11/detail/common.h +1255 -0
  320. ctpbee_api/rohon/include/new/pybind11/detail/descr.h +171 -0
  321. ctpbee_api/rohon/include/new/pybind11/detail/init.h +434 -0
  322. ctpbee_api/rohon/include/new/pybind11/detail/internals.h +656 -0
  323. ctpbee_api/rohon/include/new/pybind11/detail/type_caster_base.h +1177 -0
  324. ctpbee_api/rohon/include/new/pybind11/detail/typeid.h +65 -0
  325. ctpbee_api/rohon/include/new/pybind11/eigen/common.h +9 -0
  326. ctpbee_api/rohon/include/new/pybind11/eigen/matrix.h +714 -0
  327. ctpbee_api/rohon/include/new/pybind11/eigen/tensor.h +516 -0
  328. ctpbee_api/rohon/include/new/pybind11/eigen.h +12 -0
  329. ctpbee_api/rohon/include/new/pybind11/embed.h +316 -0
  330. ctpbee_api/rohon/include/new/pybind11/eval.h +156 -0
  331. ctpbee_api/rohon/include/new/pybind11/functional.h +137 -0
  332. ctpbee_api/rohon/include/new/pybind11/gil.h +239 -0
  333. ctpbee_api/rohon/include/new/pybind11/iostream.h +265 -0
  334. ctpbee_api/rohon/include/new/pybind11/numpy.h +1998 -0
  335. ctpbee_api/rohon/include/new/pybind11/operators.h +202 -0
  336. ctpbee_api/rohon/include/new/pybind11/options.h +92 -0
  337. ctpbee_api/rohon/include/new/pybind11/pybind11.h +2890 -0
  338. ctpbee_api/rohon/include/new/pybind11/pytypes.h +2557 -0
  339. ctpbee_api/rohon/include/new/pybind11/stl/filesystem.h +116 -0
  340. ctpbee_api/rohon/include/new/pybind11/stl.h +447 -0
  341. ctpbee_api/rohon/include/new/pybind11/stl_bind.h +851 -0
  342. ctpbee_api/rohon/include/new/pybind11/type_caster_pyobject_ptr.h +61 -0
  343. ctpbee_api/rohon/include/new/rohon/ThostFtdcMdApi.h +168 -0
  344. ctpbee_api/rohon/include/new/rohon/ThostFtdcTraderApi.h +739 -0
  345. ctpbee_api/rohon/include/new/rohon/ThostFtdcUserApiDataType.h +6708 -0
  346. ctpbee_api/rohon/include/new/rohon/ThostFtdcUserApiStruct.h +9580 -0
  347. ctpbee_api/rohon/include/previous/pybind11/attr.h +489 -0
  348. ctpbee_api/rohon/include/previous/pybind11/buffer_info.h +108 -0
  349. ctpbee_api/rohon/include/previous/pybind11/cast.h +2067 -0
  350. ctpbee_api/rohon/include/previous/pybind11/chrono.h +162 -0
  351. ctpbee_api/rohon/include/previous/pybind11/common.h +2 -0
  352. ctpbee_api/rohon/include/previous/pybind11/complex.h +61 -0
  353. ctpbee_api/rohon/include/previous/pybind11/detail/class.h +626 -0
  354. ctpbee_api/rohon/include/previous/pybind11/detail/common.h +803 -0
  355. ctpbee_api/rohon/include/previous/pybind11/detail/descr.h +185 -0
  356. ctpbee_api/rohon/include/previous/pybind11/detail/init.h +335 -0
  357. ctpbee_api/rohon/include/previous/pybind11/detail/internals.h +285 -0
  358. ctpbee_api/rohon/include/previous/pybind11/detail/typeid.h +53 -0
  359. ctpbee_api/rohon/include/previous/pybind11/eigen.h +604 -0
  360. ctpbee_api/rohon/include/previous/pybind11/embed.h +194 -0
  361. ctpbee_api/rohon/include/previous/pybind11/eval.h +117 -0
  362. ctpbee_api/rohon/include/previous/pybind11/functional.h +85 -0
  363. ctpbee_api/rohon/include/previous/pybind11/iostream.h +200 -0
  364. ctpbee_api/rohon/include/previous/pybind11/numpy.h +1601 -0
  365. ctpbee_api/rohon/include/previous/pybind11/operators.h +168 -0
  366. ctpbee_api/rohon/include/previous/pybind11/options.h +65 -0
  367. ctpbee_api/rohon/include/previous/pybind11/pybind11.h +1965 -0
  368. ctpbee_api/rohon/include/previous/pybind11/pytypes.h +1332 -0
  369. ctpbee_api/rohon/include/previous/pybind11/stl.h +376 -0
  370. ctpbee_api/rohon/include/previous/pybind11/stl_bind.h +599 -0
  371. ctpbee_api/rohon/include/previous/rohon/ThostFtdcMdApi.h +168 -0
  372. ctpbee_api/rohon/include/previous/rohon/ThostFtdcTraderApi.h +739 -0
  373. ctpbee_api/rohon/include/previous/rohon/ThostFtdcUserApiDataType.h +6708 -0
  374. ctpbee_api/rohon/include/previous/rohon/ThostFtdcUserApiStruct.h +9580 -0
  375. ctpbee_api/rohon/libLinuxDataCollect.so +0 -0
  376. ctpbee_api/rohon/librohonbase.so +0 -0
  377. ctpbee_api/rohon/librohonbase.so.1.1 +0 -0
  378. ctpbee_api/rohon/librohonbase.so.1.1.0.1 +0 -0
  379. ctpbee_api/rohon/libs/thostmduserapi_se.lib +0 -0
  380. ctpbee_api/rohon/libs/thosttraderapi_se.lib +0 -0
  381. ctpbee_api/rohon/libthostmduserapi_se.so +0 -0
  382. ctpbee_api/rohon/libthosttraderapi_se.so +0 -0
  383. ctpbee_api/rohon/rohon_constant.py +1242 -0
  384. ctpbee_api/rohon/thostmduserapi_se.dll +0 -0
  385. ctpbee_api/rohon/thosttraderapi_se.dll +0 -0
  386. ctpbee_api/rohon/vnrohon/.vs/vnrohon/v15/.suo +0 -0
  387. ctpbee_api/rohon/vnrohon/.vs/vnrohon/v15/Browse.VC.db +0 -0
  388. ctpbee_api/rohon/vnrohon/.vs/vnrohon/v15/Solution.VC.db +0 -0
  389. ctpbee_api/rohon/vnrohon/vnrohon.h +147 -0
  390. ctpbee_api/rohon/vnrohon/vnrohon.sln +41 -0
  391. ctpbee_api/rohon/vnrohon/vnrohonmd/dllmain.cpp +19 -0
  392. ctpbee_api/rohon/vnrohon/vnrohonmd/framework.h +5 -0
  393. ctpbee_api/rohon/vnrohon/vnrohonmd/pch.cpp +5 -0
  394. ctpbee_api/rohon/vnrohon/vnrohonmd/pch.h +13 -0
  395. ctpbee_api/rohon/vnrohon/vnrohonmd/vnrohonmd.cpp +931 -0
  396. ctpbee_api/rohon/vnrohon/vnrohonmd/vnrohonmd.h +207 -0
  397. ctpbee_api/rohon/vnrohon/vnrohonmd/vnrohonmd.vcxproj +188 -0
  398. ctpbee_api/rohon/vnrohon/vnrohonmd/vnrohonmd.vcxproj.filters +54 -0
  399. ctpbee_api/rohon/vnrohon/vnrohonmd/vnrohonmd.vcxproj.user +4 -0
  400. ctpbee_api/rohon/vnrohon/vnrohontd/dllmain.cpp +19 -0
  401. ctpbee_api/rohon/vnrohon/vnrohontd/framework.h +5 -0
  402. ctpbee_api/rohon/vnrohon/vnrohontd/pch.cpp +5 -0
  403. ctpbee_api/rohon/vnrohon/vnrohontd/pch.h +13 -0
  404. ctpbee_api/rohon/vnrohon/vnrohontd/vnrohontd.cpp +11395 -0
  405. ctpbee_api/rohon/vnrohon/vnrohontd/vnrohontd.h +1259 -0
  406. ctpbee_api/rohon/vnrohon/vnrohontd/vnrohontd.vcxproj +188 -0
  407. ctpbee_api/rohon/vnrohon/vnrohontd/vnrohontd.vcxproj.filters +54 -0
  408. ctpbee_api/rohon/vnrohon/vnrohontd/vnrohontd.vcxproj.user +4 -0
  409. ctpbee_api/rohon/vnrohonmd.cp310-win_amd64.pyd +0 -0
  410. ctpbee_api/rohon/vnrohontd.cp310-win_amd64.pyd +0 -0
  411. ctpbee_opt_api-0.1.0.dist-info/METADATA +46 -0
  412. ctpbee_opt_api-0.1.0.dist-info/RECORD +414 -0
  413. ctpbee_opt_api-0.1.0.dist-info/WHEEL +5 -0
  414. ctpbee_opt_api-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,4599 @@
1
+ CThostFtdcDisseminationField = {
2
+ "SequenceSeries": "int",
3
+ "SequenceNo": "int",
4
+ }
5
+
6
+ CThostFtdcReqUserLoginField = {
7
+ "TradingDay": "string",
8
+ "BrokerID": "string",
9
+ "UserID": "string",
10
+ "Password": "string",
11
+ "UserProductInfo": "string",
12
+ "InterfaceProductInfo": "string",
13
+ "ProtocolInfo": "string",
14
+ "MacAddress": "string",
15
+ "OneTimePassword": "string",
16
+ "ClientIPAddress": "string",
17
+ "LoginRemark": "string",
18
+ }
19
+
20
+ CThostFtdcRspUserLoginField = {
21
+ "TradingDay": "string",
22
+ "LoginTime": "string",
23
+ "BrokerID": "string",
24
+ "UserID": "string",
25
+ "SystemName": "string",
26
+ "FrontID": "int",
27
+ "SessionID": "int",
28
+ "MaxOrderRef": "string",
29
+ "SHFETime": "string",
30
+ "DCETime": "string",
31
+ "CZCETime": "string",
32
+ "FFEXTime": "string",
33
+ "INETime": "string",
34
+ }
35
+
36
+ CThostFtdcUserLogoutField = {
37
+ "BrokerID": "string",
38
+ "UserID": "string",
39
+ }
40
+
41
+ CThostFtdcForceUserLogoutField = {
42
+ "BrokerID": "string",
43
+ "UserID": "string",
44
+ }
45
+
46
+ CThostFtdcReqAuthenticateField = {
47
+ "BrokerID": "string",
48
+ "UserID": "string",
49
+ "UserProductInfo": "string",
50
+ "AuthCode": "string",
51
+ "AppID": "string",
52
+ }
53
+
54
+ CThostFtdcRspAuthenticateField = {
55
+ "BrokerID": "string",
56
+ "UserID": "string",
57
+ "UserProductInfo": "string",
58
+ "AppID": "string",
59
+ }
60
+
61
+ CThostFtdcAuthenticationInfoField = {
62
+ "BrokerID": "string",
63
+ "UserID": "string",
64
+ "UserProductInfo": "string",
65
+ "TimeStamp": "string",
66
+ "AuthInfo": "string",
67
+ "IsResult": "int",
68
+ "AppID": "string",
69
+ }
70
+
71
+ CThostFtdcTransferHeaderField = {
72
+ "Version": "string",
73
+ "TradeCode": "string",
74
+ "TradeDate": "string",
75
+ "TradeTime": "string",
76
+ "TradeSerial": "string",
77
+ "FutureID": "string",
78
+ "BankID": "string",
79
+ "BankBrchID": "string",
80
+ "OperNo": "string",
81
+ "DeviceID": "string",
82
+ "RecordNum": "string",
83
+ "SessionID": "int",
84
+ "RequestID": "int",
85
+ }
86
+
87
+ CThostFtdcTransferBankToFutureReqField = {
88
+ "FutureAccount": "string",
89
+ "FuturePwdFlag": "char",
90
+ "FutureAccPwd": "string",
91
+ "TradeAmt": "double",
92
+ "CustFee": "double",
93
+ "CurrencyCode": "string",
94
+ }
95
+
96
+ CThostFtdcTransferBankToFutureRspField = {
97
+ "RetCode": "string",
98
+ "RetInfo": "string",
99
+ "FutureAccount": "string",
100
+ "TradeAmt": "double",
101
+ "CustFee": "double",
102
+ "CurrencyCode": "string",
103
+ }
104
+
105
+ CThostFtdcTransferFutureToBankReqField = {
106
+ "FutureAccount": "string",
107
+ "FuturePwdFlag": "char",
108
+ "FutureAccPwd": "string",
109
+ "TradeAmt": "double",
110
+ "CustFee": "double",
111
+ "CurrencyCode": "string",
112
+ }
113
+
114
+ CThostFtdcTransferFutureToBankRspField = {
115
+ "RetCode": "string",
116
+ "RetInfo": "string",
117
+ "FutureAccount": "string",
118
+ "TradeAmt": "double",
119
+ "CustFee": "double",
120
+ "CurrencyCode": "string",
121
+ }
122
+
123
+ CThostFtdcTransferQryBankReqField = {
124
+ "FutureAccount": "string",
125
+ "FuturePwdFlag": "char",
126
+ "FutureAccPwd": "string",
127
+ "CurrencyCode": "string",
128
+ }
129
+
130
+ CThostFtdcTransferQryBankRspField = {
131
+ "RetCode": "string",
132
+ "RetInfo": "string",
133
+ "FutureAccount": "string",
134
+ "TradeAmt": "double",
135
+ "UseAmt": "double",
136
+ "FetchAmt": "double",
137
+ "CurrencyCode": "string",
138
+ }
139
+
140
+ CThostFtdcTransferQryDetailReqField = {
141
+ "FutureAccount": "string",
142
+ }
143
+
144
+ CThostFtdcTransferQryDetailRspField = {
145
+ "TradeDate": "string",
146
+ "TradeTime": "string",
147
+ "TradeCode": "string",
148
+ "FutureSerial": "int",
149
+ "FutureID": "string",
150
+ "FutureAccount": "string",
151
+ "BankSerial": "int",
152
+ "BankID": "string",
153
+ "BankBrchID": "string",
154
+ "BankAccount": "string",
155
+ "CertCode": "string",
156
+ "CurrencyCode": "string",
157
+ "TxAmount": "double",
158
+ "Flag": "char",
159
+ }
160
+
161
+ CThostFtdcRspInfoField = {
162
+ "ErrorID": "int",
163
+ "ErrorMsg": "string",
164
+ }
165
+
166
+ CThostFtdcExchangeField = {
167
+ "ExchangeID": "string",
168
+ "ExchangeName": "string",
169
+ "ExchangeProperty": "char",
170
+ }
171
+
172
+ CThostFtdcProductField = {
173
+ "ProductID": "string",
174
+ "ProductName": "string",
175
+ "ExchangeID": "string",
176
+ "ProductClass": "char",
177
+ "VolumeMultiple": "int",
178
+ "PriceTick": "double",
179
+ "MaxMarketOrderVolume": "int",
180
+ "MinMarketOrderVolume": "int",
181
+ "MaxLimitOrderVolume": "int",
182
+ "MinLimitOrderVolume": "int",
183
+ "PositionType": "char",
184
+ "PositionDateType": "char",
185
+ "CloseDealType": "char",
186
+ "TradeCurrencyID": "string",
187
+ "MortgageFundUseRange": "char",
188
+ "ExchangeProductID": "string",
189
+ "UnderlyingMultiple": "double",
190
+ }
191
+
192
+ CThostFtdcInstrumentField = {
193
+ "InstrumentID": "string",
194
+ "ExchangeID": "string",
195
+ "InstrumentName": "string",
196
+ "ExchangeInstID": "string",
197
+ "ProductID": "string",
198
+ "ProductClass": "char",
199
+ "DeliveryYear": "int",
200
+ "DeliveryMonth": "int",
201
+ "MaxMarketOrderVolume": "int",
202
+ "MinMarketOrderVolume": "int",
203
+ "MaxLimitOrderVolume": "int",
204
+ "MinLimitOrderVolume": "int",
205
+ "VolumeMultiple": "int",
206
+ "PriceTick": "double",
207
+ "CreateDate": "string",
208
+ "OpenDate": "string",
209
+ "ExpireDate": "string",
210
+ "StartDelivDate": "string",
211
+ "EndDelivDate": "string",
212
+ "InstLifePhase": "char",
213
+ "IsTrading": "int",
214
+ "PositionType": "char",
215
+ "PositionDateType": "char",
216
+ "LongMarginRatio": "double",
217
+ "ShortMarginRatio": "double",
218
+ "MaxMarginSideAlgorithm": "char",
219
+ "UnderlyingInstrID": "string",
220
+ "StrikePrice": "double",
221
+ "OptionsType": "char",
222
+ "UnderlyingMultiple": "double",
223
+ "CombinationType": "char",
224
+ }
225
+
226
+ CThostFtdcCombInstrumentField = {
227
+ "InstrumentID": "string",
228
+ "ExchangeID": "string",
229
+ "CombinationType": "char",
230
+ "ProductID": "string",
231
+ "Xparameter": "double",
232
+ }
233
+
234
+ CThostFtdcBrokerField = {
235
+ "BrokerID": "string",
236
+ "BrokerAbbr": "string",
237
+ "BrokerName": "string",
238
+ "IsActive": "int",
239
+ }
240
+
241
+ CThostFtdcTraderField = {
242
+ "ExchangeID": "string",
243
+ "TraderID": "string",
244
+ "ParticipantID": "string",
245
+ "Password": "string",
246
+ "InstallCount": "int",
247
+ "BrokerID": "string",
248
+ }
249
+
250
+ CThostFtdcInvestorField = {
251
+ "InvestorID": "string",
252
+ "BrokerID": "string",
253
+ "InvestorGroupID": "string",
254
+ "InvestorName": "string",
255
+ "IdentifiedCardType": "char",
256
+ "IdentifiedCardNo": "string",
257
+ "IsActive": "int",
258
+ "Telephone": "string",
259
+ "Address": "string",
260
+ "OpenDate": "string",
261
+ "Mobile": "string",
262
+ "CommModelID": "string",
263
+ "MarginModelID": "string",
264
+ }
265
+
266
+ CThostFtdcTradingCodeField = {
267
+ "InvestorID": "string",
268
+ "BrokerID": "string",
269
+ "ExchangeID": "string",
270
+ "ClientID": "string",
271
+ "IsActive": "int",
272
+ "ClientIDType": "char",
273
+ }
274
+
275
+ CThostFtdcPartBrokerField = {
276
+ "BrokerID": "string",
277
+ "ExchangeID": "string",
278
+ "ParticipantID": "string",
279
+ "IsActive": "int",
280
+ }
281
+
282
+ CThostFtdcSuperUserField = {
283
+ "UserID": "string",
284
+ "UserName": "string",
285
+ "Password": "string",
286
+ "IsActive": "int",
287
+ }
288
+
289
+ CThostFtdcSuperUserFunctionField = {
290
+ "UserID": "string",
291
+ "FunctionCode": "char",
292
+ }
293
+
294
+ CThostFtdcInvestorGroupField = {
295
+ "BrokerID": "string",
296
+ "InvestorGroupID": "string",
297
+ "InvestorGroupName": "string",
298
+ }
299
+
300
+ CThostFtdcTradingAccountField = {
301
+ "BrokerID": "string",
302
+ "AccountID": "string",
303
+ "PreMortgage": "double",
304
+ "PreCredit": "double",
305
+ "PreDeposit": "double",
306
+ "PreBalance": "double",
307
+ "PreMargin": "double",
308
+ "InterestBase": "double",
309
+ "Interest": "double",
310
+ "Deposit": "double",
311
+ "Withdraw": "double",
312
+ "FrozenMargin": "double",
313
+ "FrozenCash": "double",
314
+ "FrozenCommission": "double",
315
+ "CurrMargin": "double",
316
+ "CashIn": "double",
317
+ "Commission": "double",
318
+ "CloseProfit": "double",
319
+ "PositionProfit": "double",
320
+ "Balance": "double",
321
+ "Available": "double",
322
+ "WithdrawQuota": "double",
323
+ "Reserve": "double",
324
+ "TradingDay": "string",
325
+ "SettlementID": "int",
326
+ "Credit": "double",
327
+ "Mortgage": "double",
328
+ "ExchangeMargin": "double",
329
+ "DeliveryMargin": "double",
330
+ "ExchangeDeliveryMargin": "double",
331
+ "ReserveBalance": "double",
332
+ "CurrencyID": "string",
333
+ "PreFundMortgageIn": "double",
334
+ "PreFundMortgageOut": "double",
335
+ "FundMortgageIn": "double",
336
+ "FundMortgageOut": "double",
337
+ "FundMortgageAvailable": "double",
338
+ "MortgageableFund": "double",
339
+ "SpecProductMargin": "double",
340
+ "SpecProductFrozenMargin": "double",
341
+ "SpecProductCommission": "double",
342
+ "SpecProductFrozenCommission": "double",
343
+ "SpecProductPositionProfit": "double",
344
+ "SpecProductCloseProfit": "double",
345
+ "SpecProductPositionProfitByAlg": "double",
346
+ "SpecProductExchangeMargin": "double",
347
+ "FrozenPartition": "double",
348
+ }
349
+
350
+ CThostFtdcInvestorPositionField = {
351
+ "InstrumentID": "string",
352
+ "BrokerID": "string",
353
+ "InvestorID": "string",
354
+ "PosiDirection": "char",
355
+ "HedgeFlag": "char",
356
+ "PositionDate": "char",
357
+ "YdPosition": "int",
358
+ "Position": "int",
359
+ "LongFrozen": "int",
360
+ "ShortFrozen": "int",
361
+ "LongFrozenAmount": "double",
362
+ "ShortFrozenAmount": "double",
363
+ "OpenVolume": "int",
364
+ "CloseVolume": "int",
365
+ "OpenAmount": "double",
366
+ "CloseAmount": "double",
367
+ "PositionCost": "double",
368
+ "PreMargin": "double",
369
+ "UseMargin": "double",
370
+ "FrozenMargin": "double",
371
+ "FrozenCash": "double",
372
+ "FrozenCommission": "double",
373
+ "CashIn": "double",
374
+ "Commission": "double",
375
+ "CloseProfit": "double",
376
+ "PositionProfit": "double",
377
+ "PreSettlementPrice": "double",
378
+ "SettlementPrice": "double",
379
+ "TradingDay": "string",
380
+ "SettlementID": "int",
381
+ "OpenCost": "double",
382
+ "ExchangeMargin": "double",
383
+ "CombPosition": "int",
384
+ "CombLongFrozen": "int",
385
+ "CombShortFrozen": "int",
386
+ "CloseProfitByDate": "double",
387
+ "CloseProfitByTrade": "double",
388
+ "TodayPosition": "int",
389
+ "MarginRateByMoney": "double",
390
+ "MarginRateByVolume": "double",
391
+ "StrikeFrozen": "int",
392
+ "StrikeFrozenAmount": "double",
393
+ "AbandonFrozen": "int",
394
+ }
395
+
396
+ CThostFtdcInstrumentMarginRateField = {
397
+ "InstrumentID": "string",
398
+ "InvestorRange": "char",
399
+ "BrokerID": "string",
400
+ "InvestorID": "string",
401
+ "HedgeFlag": "char",
402
+ "LongMarginRatioByMoney": "double",
403
+ "LongMarginRatioByVolume": "double",
404
+ "ShortMarginRatioByMoney": "double",
405
+ "ShortMarginRatioByVolume": "double",
406
+ "IsRelative": "int",
407
+ }
408
+
409
+ CThostFtdcInstrumentCommissionRateField = {
410
+ "InstrumentID": "string",
411
+ "InvestorRange": "char",
412
+ "BrokerID": "string",
413
+ "InvestorID": "string",
414
+ "OpenRatioByMoney": "double",
415
+ "OpenRatioByVolume": "double",
416
+ "CloseRatioByMoney": "double",
417
+ "CloseRatioByVolume": "double",
418
+ "CloseTodayRatioByMoney": "double",
419
+ "CloseTodayRatioByVolume": "double",
420
+ }
421
+
422
+ CThostFtdcDepthMarketDataField = {
423
+ "TradingDay": "string",
424
+ "InstrumentID": "string",
425
+ "ExchangeID": "string",
426
+ "ExchangeInstID": "string",
427
+ "LastPrice": "double",
428
+ "PreSettlementPrice": "double",
429
+ "PreClosePrice": "double",
430
+ "PreOpenInterest": "double",
431
+ "OpenPrice": "double",
432
+ "HighestPrice": "double",
433
+ "LowestPrice": "double",
434
+ "Volume": "int",
435
+ "Turnover": "double",
436
+ "OpenInterest": "double",
437
+ "ClosePrice": "double",
438
+ "SettlementPrice": "double",
439
+ "UpperLimitPrice": "double",
440
+ "LowerLimitPrice": "double",
441
+ "PreDelta": "double",
442
+ "CurrDelta": "double",
443
+ "UpdateTime": "string",
444
+ "UpdateMillisec": "int",
445
+ "BidPrice1": "double",
446
+ "BidVolume1": "int",
447
+ "AskPrice1": "double",
448
+ "AskVolume1": "int",
449
+ "BidPrice2": "double",
450
+ "BidVolume2": "int",
451
+ "AskPrice2": "double",
452
+ "AskVolume2": "int",
453
+ "BidPrice3": "double",
454
+ "BidVolume3": "int",
455
+ "AskPrice3": "double",
456
+ "AskVolume3": "int",
457
+ "BidPrice4": "double",
458
+ "BidVolume4": "int",
459
+ "AskPrice4": "double",
460
+ "AskVolume4": "int",
461
+ "BidPrice5": "double",
462
+ "BidVolume5": "int",
463
+ "AskPrice5": "double",
464
+ "AskVolume5": "int",
465
+ "AveragePrice": "double",
466
+ "ActionDay": "string",
467
+ "BandingUpperPrice": "double",
468
+ "BandingLowerPrice": "double",
469
+ }
470
+
471
+ CThostFtdcInstrumentTradingRightField = {
472
+ "InstrumentID": "string",
473
+ "InvestorRange": "char",
474
+ "BrokerID": "string",
475
+ "InvestorID": "string",
476
+ "TradingRight": "char",
477
+ }
478
+
479
+ CThostFtdcBrokerUserField = {
480
+ "BrokerID": "string",
481
+ "UserID": "string",
482
+ "UserName": "string",
483
+ "UserType": "char",
484
+ "IsActive": "int",
485
+ "IsUsingOTP": "int",
486
+ }
487
+
488
+ CThostFtdcBrokerUserPasswordField = {
489
+ "BrokerID": "string",
490
+ "UserID": "string",
491
+ "Password": "string",
492
+ }
493
+
494
+ CThostFtdcBrokerUserFunctionField = {
495
+ "BrokerID": "string",
496
+ "UserID": "string",
497
+ "BrokerFunctionCode": "char",
498
+ }
499
+
500
+ CThostFtdcTraderOfferField = {
501
+ "ExchangeID": "string",
502
+ "TraderID": "string",
503
+ "ParticipantID": "string",
504
+ "Password": "string",
505
+ "InstallID": "int",
506
+ "OrderLocalID": "string",
507
+ "TraderConnectStatus": "char",
508
+ "ConnectRequestDate": "string",
509
+ "ConnectRequestTime": "string",
510
+ "LastReportDate": "string",
511
+ "LastReportTime": "string",
512
+ "ConnectDate": "string",
513
+ "ConnectTime": "string",
514
+ "StartDate": "string",
515
+ "StartTime": "string",
516
+ "TradingDay": "string",
517
+ "BrokerID": "string",
518
+ "MaxTradeID": "string",
519
+ "MaxOrderMessageReference": "string",
520
+ }
521
+
522
+ CThostFtdcSettlementInfoField = {
523
+ "TradingDay": "string",
524
+ "SettlementID": "int",
525
+ "BrokerID": "string",
526
+ "InvestorID": "string",
527
+ "SequenceNo": "int",
528
+ "Content": "string",
529
+ }
530
+
531
+ CThostFtdcInstrumentMarginRateAdjustField = {
532
+ "InstrumentID": "string",
533
+ "InvestorRange": "char",
534
+ "BrokerID": "string",
535
+ "InvestorID": "string",
536
+ "HedgeFlag": "char",
537
+ "LongMarginRatioByMoney": "double",
538
+ "LongMarginRatioByVolume": "double",
539
+ "ShortMarginRatioByMoney": "double",
540
+ "ShortMarginRatioByVolume": "double",
541
+ "IsRelative": "int",
542
+ }
543
+
544
+ CThostFtdcExchangeMarginRateField = {
545
+ "BrokerID": "string",
546
+ "InstrumentID": "string",
547
+ "HedgeFlag": "char",
548
+ "LongMarginRatioByMoney": "double",
549
+ "LongMarginRatioByVolume": "double",
550
+ "ShortMarginRatioByMoney": "double",
551
+ "ShortMarginRatioByVolume": "double",
552
+ }
553
+
554
+ CThostFtdcExchangeMarginRateAdjustField = {
555
+ "BrokerID": "string",
556
+ "InstrumentID": "string",
557
+ "HedgeFlag": "char",
558
+ "LongMarginRatioByMoney": "double",
559
+ "LongMarginRatioByVolume": "double",
560
+ "ShortMarginRatioByMoney": "double",
561
+ "ShortMarginRatioByVolume": "double",
562
+ "ExchLongMarginRatioByMoney": "double",
563
+ "ExchLongMarginRatioByVolume": "double",
564
+ "ExchShortMarginRatioByMoney": "double",
565
+ "ExchShortMarginRatioByVolume": "double",
566
+ "NoLongMarginRatioByMoney": "double",
567
+ "NoLongMarginRatioByVolume": "double",
568
+ "NoShortMarginRatioByMoney": "double",
569
+ "NoShortMarginRatioByVolume": "double",
570
+ }
571
+
572
+ CThostFtdcExchangeRateField = {
573
+ "BrokerID": "string",
574
+ "FromCurrencyID": "string",
575
+ "FromCurrencyUnit": "double",
576
+ "ToCurrencyID": "string",
577
+ "ExchangeRate": "double",
578
+ }
579
+
580
+ CThostFtdcSettlementRefField = {
581
+ "TradingDay": "string",
582
+ "SettlementID": "int",
583
+ }
584
+
585
+ CThostFtdcCurrentTimeField = {
586
+ "CurrDate": "string",
587
+ "CurrTime": "string",
588
+ "CurrMillisec": "int",
589
+ "ActionDay": "string",
590
+ }
591
+
592
+ CThostFtdcCommPhaseField = {
593
+ "TradingDay": "string",
594
+ "CommPhaseNo": "int",
595
+ "SystemID": "string",
596
+ }
597
+
598
+ CThostFtdcLoginInfoField = {
599
+ "FrontID": "int",
600
+ "SessionID": "int",
601
+ "BrokerID": "string",
602
+ "UserID": "string",
603
+ "LoginDate": "string",
604
+ "LoginTime": "string",
605
+ "IPAddress": "string",
606
+ "UserProductInfo": "string",
607
+ "InterfaceProductInfo": "string",
608
+ "ProtocolInfo": "string",
609
+ "SystemName": "string",
610
+ "Password": "string",
611
+ "MaxOrderRef": "string",
612
+ "SHFETime": "string",
613
+ "DCETime": "string",
614
+ "CZCETime": "string",
615
+ "FFEXTime": "string",
616
+ "MacAddress": "string",
617
+ "OneTimePassword": "string",
618
+ "INETime": "string",
619
+ "IsQryControl": "int",
620
+ "LoginRemark": "string",
621
+ }
622
+
623
+ CThostFtdcLogoutAllField = {
624
+ "FrontID": "int",
625
+ "SessionID": "int",
626
+ "SystemName": "string",
627
+ }
628
+
629
+ CThostFtdcFrontStatusField = {
630
+ "FrontID": "int",
631
+ "LastReportDate": "string",
632
+ "LastReportTime": "string",
633
+ "IsActive": "int",
634
+ }
635
+
636
+ CThostFtdcUserPasswordUpdateField = {
637
+ "BrokerID": "string",
638
+ "UserID": "string",
639
+ "OldPassword": "string",
640
+ "NewPassword": "string",
641
+ }
642
+
643
+ CThostFtdcInputOrderField = {
644
+ "BrokerID": "string",
645
+ "InvestorID": "string",
646
+ "InstrumentID": "string",
647
+ "OrderRef": "string",
648
+ "UserID": "string",
649
+ "OrderPriceType": "char",
650
+ "Direction": "char",
651
+ "CombOffsetFlag": "string",
652
+ "CombHedgeFlag": "string",
653
+ "LimitPrice": "double",
654
+ "VolumeTotalOriginal": "int",
655
+ "TimeCondition": "char",
656
+ "GTDDate": "string",
657
+ "VolumeCondition": "char",
658
+ "MinVolume": "int",
659
+ "ContingentCondition": "char",
660
+ "StopPrice": "double",
661
+ "ForceCloseReason": "char",
662
+ "IsAutoSuspend": "int",
663
+ "BusinessUnit": "string",
664
+ "RequestID": "int",
665
+ "UserForceClose": "int",
666
+ "IsSwapOrder": "int",
667
+ "ExchangeID": "string",
668
+ "InvestUnitID": "string",
669
+ "AccountID": "string",
670
+ "CurrencyID": "string",
671
+ "ClientID": "string",
672
+ "IPAddress": "string",
673
+ "MacAddress": "string",
674
+ }
675
+
676
+ CThostFtdcOrderField = {
677
+ "BrokerID": "string",
678
+ "InvestorID": "string",
679
+ "InstrumentID": "string",
680
+ "OrderRef": "string",
681
+ "UserID": "string",
682
+ "OrderPriceType": "char",
683
+ "Direction": "char",
684
+ "CombOffsetFlag": "string",
685
+ "CombHedgeFlag": "string",
686
+ "LimitPrice": "double",
687
+ "VolumeTotalOriginal": "int",
688
+ "TimeCondition": "char",
689
+ "GTDDate": "string",
690
+ "VolumeCondition": "char",
691
+ "MinVolume": "int",
692
+ "ContingentCondition": "char",
693
+ "StopPrice": "double",
694
+ "ForceCloseReason": "char",
695
+ "IsAutoSuspend": "int",
696
+ "BusinessUnit": "string",
697
+ "RequestID": "int",
698
+ "OrderLocalID": "string",
699
+ "ExchangeID": "string",
700
+ "ParticipantID": "string",
701
+ "ClientID": "string",
702
+ "ExchangeInstID": "string",
703
+ "TraderID": "string",
704
+ "InstallID": "int",
705
+ "OrderSubmitStatus": "char",
706
+ "NotifySequence": "int",
707
+ "TradingDay": "string",
708
+ "SettlementID": "int",
709
+ "OrderSysID": "string",
710
+ "OrderSource": "char",
711
+ "OrderStatus": "char",
712
+ "OrderType": "char",
713
+ "VolumeTraded": "int",
714
+ "VolumeTotal": "int",
715
+ "InsertDate": "string",
716
+ "InsertTime": "string",
717
+ "ActiveTime": "string",
718
+ "SuspendTime": "string",
719
+ "UpdateTime": "string",
720
+ "CancelTime": "string",
721
+ "ActiveTraderID": "string",
722
+ "ClearingPartID": "string",
723
+ "SequenceNo": "int",
724
+ "FrontID": "int",
725
+ "SessionID": "int",
726
+ "UserProductInfo": "string",
727
+ "StatusMsg": "string",
728
+ "UserForceClose": "int",
729
+ "ActiveUserID": "string",
730
+ "BrokerOrderSeq": "int",
731
+ "RelativeOrderSysID": "string",
732
+ "ZCETotalTradedVolume": "int",
733
+ "IsSwapOrder": "int",
734
+ "BranchID": "string",
735
+ "InvestUnitID": "string",
736
+ "AccountID": "string",
737
+ "CurrencyID": "string",
738
+ "IPAddress": "string",
739
+ "MacAddress": "string",
740
+ }
741
+
742
+ CThostFtdcExchangeOrderField = {
743
+ "OrderPriceType": "char",
744
+ "Direction": "char",
745
+ "CombOffsetFlag": "string",
746
+ "CombHedgeFlag": "string",
747
+ "LimitPrice": "double",
748
+ "VolumeTotalOriginal": "int",
749
+ "TimeCondition": "char",
750
+ "GTDDate": "string",
751
+ "VolumeCondition": "char",
752
+ "MinVolume": "int",
753
+ "ContingentCondition": "char",
754
+ "StopPrice": "double",
755
+ "ForceCloseReason": "char",
756
+ "IsAutoSuspend": "int",
757
+ "BusinessUnit": "string",
758
+ "RequestID": "int",
759
+ "OrderLocalID": "string",
760
+ "ExchangeID": "string",
761
+ "ParticipantID": "string",
762
+ "ClientID": "string",
763
+ "ExchangeInstID": "string",
764
+ "TraderID": "string",
765
+ "InstallID": "int",
766
+ "OrderSubmitStatus": "char",
767
+ "NotifySequence": "int",
768
+ "TradingDay": "string",
769
+ "SettlementID": "int",
770
+ "OrderSysID": "string",
771
+ "OrderSource": "char",
772
+ "OrderStatus": "char",
773
+ "OrderType": "char",
774
+ "VolumeTraded": "int",
775
+ "VolumeTotal": "int",
776
+ "InsertDate": "string",
777
+ "InsertTime": "string",
778
+ "ActiveTime": "string",
779
+ "SuspendTime": "string",
780
+ "UpdateTime": "string",
781
+ "CancelTime": "string",
782
+ "ActiveTraderID": "string",
783
+ "ClearingPartID": "string",
784
+ "SequenceNo": "int",
785
+ "BranchID": "string",
786
+ "IPAddress": "string",
787
+ "MacAddress": "string",
788
+ }
789
+
790
+ CThostFtdcExchangeOrderInsertErrorField = {
791
+ "ExchangeID": "string",
792
+ "ParticipantID": "string",
793
+ "TraderID": "string",
794
+ "InstallID": "int",
795
+ "OrderLocalID": "string",
796
+ "ErrorID": "int",
797
+ "ErrorMsg": "string",
798
+ }
799
+
800
+ CThostFtdcInputOrderActionField = {
801
+ "BrokerID": "string",
802
+ "InvestorID": "string",
803
+ "OrderActionRef": "int",
804
+ "OrderRef": "string",
805
+ "RequestID": "int",
806
+ "FrontID": "int",
807
+ "SessionID": "int",
808
+ "ExchangeID": "string",
809
+ "OrderSysID": "string",
810
+ "ActionFlag": "char",
811
+ "LimitPrice": "double",
812
+ "VolumeChange": "int",
813
+ "UserID": "string",
814
+ "InstrumentID": "string",
815
+ "InvestUnitID": "string",
816
+ "IPAddress": "string",
817
+ "MacAddress": "string",
818
+ }
819
+
820
+ CThostFtdcOrderActionField = {
821
+ "BrokerID": "string",
822
+ "InvestorID": "string",
823
+ "OrderActionRef": "int",
824
+ "OrderRef": "string",
825
+ "RequestID": "int",
826
+ "FrontID": "int",
827
+ "SessionID": "int",
828
+ "ExchangeID": "string",
829
+ "OrderSysID": "string",
830
+ "ActionFlag": "char",
831
+ "LimitPrice": "double",
832
+ "VolumeChange": "int",
833
+ "ActionDate": "string",
834
+ "ActionTime": "string",
835
+ "TraderID": "string",
836
+ "InstallID": "int",
837
+ "OrderLocalID": "string",
838
+ "ActionLocalID": "string",
839
+ "ParticipantID": "string",
840
+ "ClientID": "string",
841
+ "BusinessUnit": "string",
842
+ "OrderActionStatus": "char",
843
+ "UserID": "string",
844
+ "StatusMsg": "string",
845
+ "InstrumentID": "string",
846
+ "BranchID": "string",
847
+ "InvestUnitID": "string",
848
+ "IPAddress": "string",
849
+ "MacAddress": "string",
850
+ }
851
+
852
+ CThostFtdcExchangeOrderActionField = {
853
+ "ExchangeID": "string",
854
+ "OrderSysID": "string",
855
+ "ActionFlag": "char",
856
+ "LimitPrice": "double",
857
+ "VolumeChange": "int",
858
+ "ActionDate": "string",
859
+ "ActionTime": "string",
860
+ "TraderID": "string",
861
+ "InstallID": "int",
862
+ "OrderLocalID": "string",
863
+ "ActionLocalID": "string",
864
+ "ParticipantID": "string",
865
+ "ClientID": "string",
866
+ "BusinessUnit": "string",
867
+ "OrderActionStatus": "char",
868
+ "UserID": "string",
869
+ "BranchID": "string",
870
+ "IPAddress": "string",
871
+ "MacAddress": "string",
872
+ }
873
+
874
+ CThostFtdcExchangeOrderActionErrorField = {
875
+ "ExchangeID": "string",
876
+ "OrderSysID": "string",
877
+ "TraderID": "string",
878
+ "InstallID": "int",
879
+ "OrderLocalID": "string",
880
+ "ActionLocalID": "string",
881
+ "ErrorID": "int",
882
+ "ErrorMsg": "string",
883
+ }
884
+
885
+ CThostFtdcExchangeTradeField = {
886
+ "ExchangeID": "string",
887
+ "TradeID": "string",
888
+ "Direction": "char",
889
+ "OrderSysID": "string",
890
+ "ParticipantID": "string",
891
+ "ClientID": "string",
892
+ "TradingRole": "char",
893
+ "ExchangeInstID": "string",
894
+ "OffsetFlag": "char",
895
+ "HedgeFlag": "char",
896
+ "Price": "double",
897
+ "Volume": "int",
898
+ "TradeDate": "string",
899
+ "TradeTime": "string",
900
+ "TradeType": "char",
901
+ "PriceSource": "char",
902
+ "TraderID": "string",
903
+ "OrderLocalID": "string",
904
+ "ClearingPartID": "string",
905
+ "BusinessUnit": "string",
906
+ "SequenceNo": "int",
907
+ "TradeSource": "char",
908
+ }
909
+
910
+ CThostFtdcTradeField = {
911
+ "BrokerID": "string",
912
+ "InvestorID": "string",
913
+ "InstrumentID": "string",
914
+ "OrderRef": "string",
915
+ "UserID": "string",
916
+ "ExchangeID": "string",
917
+ "TradeID": "string",
918
+ "Direction": "char",
919
+ "OrderSysID": "string",
920
+ "ParticipantID": "string",
921
+ "ClientID": "string",
922
+ "TradingRole": "char",
923
+ "ExchangeInstID": "string",
924
+ "OffsetFlag": "char",
925
+ "HedgeFlag": "char",
926
+ "Price": "double",
927
+ "Volume": "int",
928
+ "TradeDate": "string",
929
+ "TradeTime": "string",
930
+ "TradeType": "char",
931
+ "PriceSource": "char",
932
+ "TraderID": "string",
933
+ "OrderLocalID": "string",
934
+ "ClearingPartID": "string",
935
+ "BusinessUnit": "string",
936
+ "SequenceNo": "int",
937
+ "TradingDay": "string",
938
+ "SettlementID": "int",
939
+ "BrokerOrderSeq": "int",
940
+ "TradeSource": "char",
941
+ }
942
+
943
+ CThostFtdcUserSessionField = {
944
+ "FrontID": "int",
945
+ "SessionID": "int",
946
+ "BrokerID": "string",
947
+ "UserID": "string",
948
+ "LoginDate": "string",
949
+ "LoginTime": "string",
950
+ "IPAddress": "string",
951
+ "UserProductInfo": "string",
952
+ "InterfaceProductInfo": "string",
953
+ "ProtocolInfo": "string",
954
+ "MacAddress": "string",
955
+ "LoginRemark": "string",
956
+ }
957
+
958
+ CThostFtdcQueryMaxOrderVolumeField = {
959
+ "BrokerID": "string",
960
+ "InvestorID": "string",
961
+ "InstrumentID": "string",
962
+ "Direction": "char",
963
+ "OffsetFlag": "char",
964
+ "HedgeFlag": "char",
965
+ "MaxVolume": "int",
966
+ }
967
+
968
+ CThostFtdcSettlementInfoConfirmField = {
969
+ "BrokerID": "string",
970
+ "InvestorID": "string",
971
+ "ConfirmDate": "string",
972
+ "ConfirmTime": "string",
973
+ }
974
+
975
+ CThostFtdcSyncDepositField = {
976
+ "DepositSeqNo": "string",
977
+ "BrokerID": "string",
978
+ "InvestorID": "string",
979
+ "Deposit": "double",
980
+ "IsForce": "int",
981
+ "CurrencyID": "string",
982
+ }
983
+
984
+ CThostFtdcSyncFundMortgageField = {
985
+ "MortgageSeqNo": "string",
986
+ "BrokerID": "string",
987
+ "InvestorID": "string",
988
+ "FromCurrencyID": "string",
989
+ "MortgageAmount": "double",
990
+ "ToCurrencyID": "string",
991
+ }
992
+
993
+ CThostFtdcTransFundField = {
994
+ "BrokerID": "string",
995
+ "UserID": "string",
996
+ "InvestorID": "string",
997
+ "InvestUnitID": "string",
998
+ "AccountID": "string",
999
+ "DepositKernel": "string",
1000
+ "IncomingKernel": "string",
1001
+ "CurrencyID": "string",
1002
+ "Amount": "double",
1003
+ }
1004
+
1005
+ CThostFtdcBrokerSyncField = {
1006
+ "BrokerID": "string",
1007
+ }
1008
+
1009
+ CThostFtdcSyncingInvestorField = {
1010
+ "InvestorID": "string",
1011
+ "BrokerID": "string",
1012
+ "InvestorGroupID": "string",
1013
+ "InvestorName": "string",
1014
+ "IdentifiedCardType": "char",
1015
+ "IdentifiedCardNo": "string",
1016
+ "IsActive": "int",
1017
+ "Telephone": "string",
1018
+ "Address": "string",
1019
+ "OpenDate": "string",
1020
+ "Mobile": "string",
1021
+ "CommModelID": "string",
1022
+ "MarginModelID": "string",
1023
+ }
1024
+
1025
+ CThostFtdcSyncingTradingCodeField = {
1026
+ "InvestorID": "string",
1027
+ "BrokerID": "string",
1028
+ "ExchangeID": "string",
1029
+ "ClientID": "string",
1030
+ "IsActive": "int",
1031
+ "ClientIDType": "char",
1032
+ }
1033
+
1034
+ CThostFtdcSyncingInvestorGroupField = {
1035
+ "BrokerID": "string",
1036
+ "InvestorGroupID": "string",
1037
+ "InvestorGroupName": "string",
1038
+ }
1039
+
1040
+ CThostFtdcSyncingTradingAccountField = {
1041
+ "BrokerID": "string",
1042
+ "AccountID": "string",
1043
+ "PreMortgage": "double",
1044
+ "PreCredit": "double",
1045
+ "PreDeposit": "double",
1046
+ "PreBalance": "double",
1047
+ "PreMargin": "double",
1048
+ "InterestBase": "double",
1049
+ "Interest": "double",
1050
+ "Deposit": "double",
1051
+ "Withdraw": "double",
1052
+ "FrozenMargin": "double",
1053
+ "FrozenCash": "double",
1054
+ "FrozenCommission": "double",
1055
+ "CurrMargin": "double",
1056
+ "CashIn": "double",
1057
+ "Commission": "double",
1058
+ "CloseProfit": "double",
1059
+ "PositionProfit": "double",
1060
+ "Balance": "double",
1061
+ "Available": "double",
1062
+ "WithdrawQuota": "double",
1063
+ "Reserve": "double",
1064
+ "TradingDay": "string",
1065
+ "SettlementID": "int",
1066
+ "Credit": "double",
1067
+ "Mortgage": "double",
1068
+ "ExchangeMargin": "double",
1069
+ "DeliveryMargin": "double",
1070
+ "ExchangeDeliveryMargin": "double",
1071
+ "ReserveBalance": "double",
1072
+ "CurrencyID": "string",
1073
+ "PreFundMortgageIn": "double",
1074
+ "PreFundMortgageOut": "double",
1075
+ "FundMortgageIn": "double",
1076
+ "FundMortgageOut": "double",
1077
+ "FundMortgageAvailable": "double",
1078
+ "MortgageableFund": "double",
1079
+ "SpecProductMargin": "double",
1080
+ "SpecProductFrozenMargin": "double",
1081
+ "SpecProductCommission": "double",
1082
+ "SpecProductFrozenCommission": "double",
1083
+ "SpecProductPositionProfit": "double",
1084
+ "SpecProductCloseProfit": "double",
1085
+ "SpecProductPositionProfitByAlg": "double",
1086
+ "SpecProductExchangeMargin": "double",
1087
+ }
1088
+
1089
+ CThostFtdcSyncingInvestorPositionField = {
1090
+ "InstrumentID": "string",
1091
+ "BrokerID": "string",
1092
+ "InvestorID": "string",
1093
+ "PosiDirection": "char",
1094
+ "HedgeFlag": "char",
1095
+ "PositionDate": "char",
1096
+ "YdPosition": "int",
1097
+ "Position": "int",
1098
+ "LongFrozen": "int",
1099
+ "ShortFrozen": "int",
1100
+ "LongFrozenAmount": "double",
1101
+ "ShortFrozenAmount": "double",
1102
+ "OpenVolume": "int",
1103
+ "CloseVolume": "int",
1104
+ "OpenAmount": "double",
1105
+ "CloseAmount": "double",
1106
+ "PositionCost": "double",
1107
+ "PreMargin": "double",
1108
+ "UseMargin": "double",
1109
+ "FrozenMargin": "double",
1110
+ "FrozenCash": "double",
1111
+ "FrozenCommission": "double",
1112
+ "CashIn": "double",
1113
+ "Commission": "double",
1114
+ "CloseProfit": "double",
1115
+ "PositionProfit": "double",
1116
+ "PreSettlementPrice": "double",
1117
+ "SettlementPrice": "double",
1118
+ "TradingDay": "string",
1119
+ "SettlementID": "int",
1120
+ "OpenCost": "double",
1121
+ "ExchangeMargin": "double",
1122
+ "CombPosition": "int",
1123
+ "CombLongFrozen": "int",
1124
+ "CombShortFrozen": "int",
1125
+ "CloseProfitByDate": "double",
1126
+ "CloseProfitByTrade": "double",
1127
+ "TodayPosition": "int",
1128
+ "MarginRateByMoney": "double",
1129
+ "MarginRateByVolume": "double",
1130
+ "StrikeFrozen": "int",
1131
+ "StrikeFrozenAmount": "double",
1132
+ "AbandonFrozen": "int",
1133
+ }
1134
+
1135
+ CThostFtdcSyncingInstrumentMarginRateField = {
1136
+ "InstrumentID": "string",
1137
+ "InvestorRange": "char",
1138
+ "BrokerID": "string",
1139
+ "InvestorID": "string",
1140
+ "HedgeFlag": "char",
1141
+ "LongMarginRatioByMoney": "double",
1142
+ "LongMarginRatioByVolume": "double",
1143
+ "ShortMarginRatioByMoney": "double",
1144
+ "ShortMarginRatioByVolume": "double",
1145
+ "IsRelative": "int",
1146
+ }
1147
+
1148
+ CThostFtdcSyncingInstrumentCommissionRateField = {
1149
+ "InstrumentID": "string",
1150
+ "InvestorRange": "char",
1151
+ "BrokerID": "string",
1152
+ "InvestorID": "string",
1153
+ "OpenRatioByMoney": "double",
1154
+ "OpenRatioByVolume": "double",
1155
+ "CloseRatioByMoney": "double",
1156
+ "CloseRatioByVolume": "double",
1157
+ "CloseTodayRatioByMoney": "double",
1158
+ "CloseTodayRatioByVolume": "double",
1159
+ }
1160
+
1161
+ CThostFtdcSyncingInstrumentTradingRightField = {
1162
+ "InstrumentID": "string",
1163
+ "InvestorRange": "char",
1164
+ "BrokerID": "string",
1165
+ "InvestorID": "string",
1166
+ "TradingRight": "char",
1167
+ }
1168
+
1169
+ CThostFtdcQryOrderField = {
1170
+ "BrokerID": "string",
1171
+ "InvestorID": "string",
1172
+ "InstrumentID": "string",
1173
+ "ExchangeID": "string",
1174
+ "OrderSysID": "string",
1175
+ "InsertTimeStart": "string",
1176
+ "InsertTimeEnd": "string",
1177
+ }
1178
+
1179
+ CThostFtdcQryTradeField = {
1180
+ "BrokerID": "string",
1181
+ "InvestorID": "string",
1182
+ "InstrumentID": "string",
1183
+ "ExchangeID": "string",
1184
+ "TradeID": "string",
1185
+ "TradeTimeStart": "string",
1186
+ "TradeTimeEnd": "string",
1187
+ }
1188
+
1189
+ CThostFtdcQryInvestorPositionField = {
1190
+ "BrokerID": "string",
1191
+ "InvestorID": "string",
1192
+ "InstrumentID": "string",
1193
+ }
1194
+
1195
+ CThostFtdcQryTradingAccountField = {
1196
+ "BrokerID": "string",
1197
+ "InvestorID": "string",
1198
+ "CurrencyID": "string",
1199
+ }
1200
+
1201
+ CThostFtdcQryInvestorField = {
1202
+ "BrokerID": "string",
1203
+ "InvestorID": "string",
1204
+ }
1205
+
1206
+ CThostFtdcQryTradingCodeField = {
1207
+ "BrokerID": "string",
1208
+ "InvestorID": "string",
1209
+ "ExchangeID": "string",
1210
+ "ClientID": "string",
1211
+ "ClientIDType": "char",
1212
+ }
1213
+
1214
+ CThostFtdcQryInvestorGroupField = {
1215
+ "BrokerID": "string",
1216
+ }
1217
+
1218
+ CThostFtdcQryInstrumentMarginRateField = {
1219
+ "BrokerID": "string",
1220
+ "InvestorID": "string",
1221
+ "InstrumentID": "string",
1222
+ "HedgeFlag": "char",
1223
+ }
1224
+
1225
+ CThostFtdcQryInstrumentCommissionRateField = {
1226
+ "BrokerID": "string",
1227
+ "InvestorID": "string",
1228
+ "InstrumentID": "string",
1229
+ }
1230
+
1231
+ CThostFtdcQryInstrumentTradingRightField = {
1232
+ "BrokerID": "string",
1233
+ "InvestorID": "string",
1234
+ "InstrumentID": "string",
1235
+ }
1236
+
1237
+ CThostFtdcQryBrokerField = {
1238
+ "BrokerID": "string",
1239
+ }
1240
+
1241
+ CThostFtdcQryTraderField = {
1242
+ "ExchangeID": "string",
1243
+ "ParticipantID": "string",
1244
+ "TraderID": "string",
1245
+ }
1246
+
1247
+ CThostFtdcQrySuperUserFunctionField = {
1248
+ "UserID": "string",
1249
+ }
1250
+
1251
+ CThostFtdcQryUserSessionField = {
1252
+ "FrontID": "int",
1253
+ "SessionID": "int",
1254
+ "BrokerID": "string",
1255
+ "UserID": "string",
1256
+ }
1257
+
1258
+ CThostFtdcQryPartBrokerField = {
1259
+ "ExchangeID": "string",
1260
+ "BrokerID": "string",
1261
+ "ParticipantID": "string",
1262
+ }
1263
+
1264
+ CThostFtdcQryFrontStatusField = {
1265
+ "FrontID": "int",
1266
+ }
1267
+
1268
+ CThostFtdcQryExchangeOrderField = {
1269
+ "ParticipantID": "string",
1270
+ "ClientID": "string",
1271
+ "ExchangeInstID": "string",
1272
+ "ExchangeID": "string",
1273
+ "TraderID": "string",
1274
+ }
1275
+
1276
+ CThostFtdcQryOrderActionField = {
1277
+ "BrokerID": "string",
1278
+ "InvestorID": "string",
1279
+ "ExchangeID": "string",
1280
+ }
1281
+
1282
+ CThostFtdcQryExchangeOrderActionField = {
1283
+ "ParticipantID": "string",
1284
+ "ClientID": "string",
1285
+ "ExchangeID": "string",
1286
+ "TraderID": "string",
1287
+ }
1288
+
1289
+ CThostFtdcQrySuperUserField = {
1290
+ "UserID": "string",
1291
+ }
1292
+
1293
+ CThostFtdcQryExchangeField = {
1294
+ "ExchangeID": "string",
1295
+ }
1296
+
1297
+ CThostFtdcQryProductField = {
1298
+ "ProductID": "string",
1299
+ "ProductClass": "char",
1300
+ }
1301
+
1302
+ CThostFtdcQryInstrumentField = {
1303
+ "InstrumentID": "string",
1304
+ "ExchangeID": "string",
1305
+ "ExchangeInstID": "string",
1306
+ "ProductID": "string",
1307
+ }
1308
+
1309
+ CThostFtdcQryCombInstrumentField = {
1310
+ "ExchangeID": "string",
1311
+ "ProductID": "string",
1312
+ }
1313
+
1314
+ CThostFtdcQryDepthMarketDataField = {
1315
+ "InstrumentID": "string",
1316
+ }
1317
+
1318
+ CThostFtdcQryBrokerUserField = {
1319
+ "BrokerID": "string",
1320
+ "UserID": "string",
1321
+ }
1322
+
1323
+ CThostFtdcQryBrokerUserFunctionField = {
1324
+ "BrokerID": "string",
1325
+ "UserID": "string",
1326
+ }
1327
+
1328
+ CThostFtdcQryTraderOfferField = {
1329
+ "ExchangeID": "string",
1330
+ "ParticipantID": "string",
1331
+ "TraderID": "string",
1332
+ }
1333
+
1334
+ CThostFtdcQrySyncDepositField = {
1335
+ "BrokerID": "string",
1336
+ "DepositSeqNo": "string",
1337
+ }
1338
+
1339
+ CThostFtdcQrySettlementInfoField = {
1340
+ "BrokerID": "string",
1341
+ "InvestorID": "string",
1342
+ "TradingDay": "string",
1343
+ }
1344
+
1345
+ CThostFtdcQryExchangeMarginRateField = {
1346
+ "BrokerID": "string",
1347
+ "InstrumentID": "string",
1348
+ "HedgeFlag": "char",
1349
+ }
1350
+
1351
+ CThostFtdcQryExchangeMarginRateAdjustField = {
1352
+ "BrokerID": "string",
1353
+ "InstrumentID": "string",
1354
+ "HedgeFlag": "char",
1355
+ }
1356
+
1357
+ CThostFtdcQryExchangeRateField = {
1358
+ "BrokerID": "string",
1359
+ "FromCurrencyID": "string",
1360
+ "ToCurrencyID": "string",
1361
+ }
1362
+
1363
+ CThostFtdcQrySyncFundMortgageField = {
1364
+ "BrokerID": "string",
1365
+ "MortgageSeqNo": "string",
1366
+ }
1367
+
1368
+ CThostFtdcQryHisOrderField = {
1369
+ "BrokerID": "string",
1370
+ "InvestorID": "string",
1371
+ "InstrumentID": "string",
1372
+ "ExchangeID": "string",
1373
+ "OrderSysID": "string",
1374
+ "InsertTimeStart": "string",
1375
+ "InsertTimeEnd": "string",
1376
+ "TradingDay": "string",
1377
+ "SettlementID": "int",
1378
+ }
1379
+
1380
+ CThostFtdcOptionInstrMiniMarginField = {
1381
+ "InstrumentID": "string",
1382
+ "InvestorRange": "char",
1383
+ "BrokerID": "string",
1384
+ "InvestorID": "string",
1385
+ "MinMargin": "double",
1386
+ "ValueMethod": "char",
1387
+ "IsRelative": "int",
1388
+ }
1389
+
1390
+ CThostFtdcOptionInstrMarginAdjustField = {
1391
+ "InstrumentID": "string",
1392
+ "InvestorRange": "char",
1393
+ "BrokerID": "string",
1394
+ "InvestorID": "string",
1395
+ "SShortMarginRatioByMoney": "double",
1396
+ "SShortMarginRatioByVolume": "double",
1397
+ "HShortMarginRatioByMoney": "double",
1398
+ "HShortMarginRatioByVolume": "double",
1399
+ "AShortMarginRatioByMoney": "double",
1400
+ "AShortMarginRatioByVolume": "double",
1401
+ "IsRelative": "int",
1402
+ "MShortMarginRatioByMoney": "double",
1403
+ "MShortMarginRatioByVolume": "double",
1404
+ }
1405
+
1406
+ CThostFtdcOptionInstrCommRateField = {
1407
+ "InstrumentID": "string",
1408
+ "InvestorRange": "char",
1409
+ "BrokerID": "string",
1410
+ "InvestorID": "string",
1411
+ "OpenRatioByMoney": "double",
1412
+ "OpenRatioByVolume": "double",
1413
+ "CloseRatioByMoney": "double",
1414
+ "CloseRatioByVolume": "double",
1415
+ "CloseTodayRatioByMoney": "double",
1416
+ "CloseTodayRatioByVolume": "double",
1417
+ "StrikeRatioByMoney": "double",
1418
+ "StrikeRatioByVolume": "double",
1419
+ }
1420
+
1421
+ CThostFtdcOptionInstrTradeCostField = {
1422
+ "BrokerID": "string",
1423
+ "InvestorID": "string",
1424
+ "InstrumentID": "string",
1425
+ "HedgeFlag": "char",
1426
+ "FixedMargin": "double",
1427
+ "MiniMargin": "double",
1428
+ "Royalty": "double",
1429
+ "ExchFixedMargin": "double",
1430
+ "ExchMiniMargin": "double",
1431
+ }
1432
+
1433
+ CThostFtdcQryOptionInstrTradeCostField = {
1434
+ "BrokerID": "string",
1435
+ "InvestorID": "string",
1436
+ "InstrumentID": "string",
1437
+ "HedgeFlag": "char",
1438
+ "InputPrice": "double",
1439
+ "UnderlyingPrice": "double",
1440
+ }
1441
+
1442
+ CThostFtdcQryOptionInstrCommRateField = {
1443
+ "BrokerID": "string",
1444
+ "InvestorID": "string",
1445
+ "InstrumentID": "string",
1446
+ }
1447
+
1448
+ CThostFtdcIndexPriceField = {
1449
+ "BrokerID": "string",
1450
+ "InstrumentID": "string",
1451
+ "ClosePrice": "double",
1452
+ }
1453
+
1454
+ CThostFtdcInputExecOrderField = {
1455
+ "BrokerID": "string",
1456
+ "InvestorID": "string",
1457
+ "InstrumentID": "string",
1458
+ "ExecOrderRef": "string",
1459
+ "UserID": "string",
1460
+ "Volume": "int",
1461
+ "RequestID": "int",
1462
+ "BusinessUnit": "string",
1463
+ "OffsetFlag": "char",
1464
+ "HedgeFlag": "char",
1465
+ "ActionType": "char",
1466
+ "PosiDirection": "char",
1467
+ "ReservePositionFlag": "char",
1468
+ "CloseFlag": "char",
1469
+ "ExchangeID": "string",
1470
+ "InvestUnitID": "string",
1471
+ "AccountID": "string",
1472
+ "CurrencyID": "string",
1473
+ "ClientID": "string",
1474
+ "IPAddress": "string",
1475
+ "MacAddress": "string",
1476
+ }
1477
+
1478
+ CThostFtdcInputExecOrderActionField = {
1479
+ "BrokerID": "string",
1480
+ "InvestorID": "string",
1481
+ "ExecOrderActionRef": "int",
1482
+ "ExecOrderRef": "string",
1483
+ "RequestID": "int",
1484
+ "FrontID": "int",
1485
+ "SessionID": "int",
1486
+ "ExchangeID": "string",
1487
+ "ExecOrderSysID": "string",
1488
+ "ActionFlag": "char",
1489
+ "UserID": "string",
1490
+ "InstrumentID": "string",
1491
+ "InvestUnitID": "string",
1492
+ "IPAddress": "string",
1493
+ "MacAddress": "string",
1494
+ }
1495
+
1496
+ CThostFtdcExecOrderField = {
1497
+ "BrokerID": "string",
1498
+ "InvestorID": "string",
1499
+ "InstrumentID": "string",
1500
+ "ExecOrderRef": "string",
1501
+ "UserID": "string",
1502
+ "Volume": "int",
1503
+ "RequestID": "int",
1504
+ "BusinessUnit": "string",
1505
+ "OffsetFlag": "char",
1506
+ "HedgeFlag": "char",
1507
+ "ActionType": "char",
1508
+ "PosiDirection": "char",
1509
+ "ReservePositionFlag": "char",
1510
+ "CloseFlag": "char",
1511
+ "ExecOrderLocalID": "string",
1512
+ "ExchangeID": "string",
1513
+ "ParticipantID": "string",
1514
+ "ClientID": "string",
1515
+ "ExchangeInstID": "string",
1516
+ "TraderID": "string",
1517
+ "InstallID": "int",
1518
+ "OrderSubmitStatus": "char",
1519
+ "NotifySequence": "int",
1520
+ "TradingDay": "string",
1521
+ "SettlementID": "int",
1522
+ "ExecOrderSysID": "string",
1523
+ "InsertDate": "string",
1524
+ "InsertTime": "string",
1525
+ "CancelTime": "string",
1526
+ "ExecResult": "char",
1527
+ "ClearingPartID": "string",
1528
+ "SequenceNo": "int",
1529
+ "FrontID": "int",
1530
+ "SessionID": "int",
1531
+ "UserProductInfo": "string",
1532
+ "StatusMsg": "string",
1533
+ "ActiveUserID": "string",
1534
+ "BrokerExecOrderSeq": "int",
1535
+ "BranchID": "string",
1536
+ "InvestUnitID": "string",
1537
+ "AccountID": "string",
1538
+ "CurrencyID": "string",
1539
+ "IPAddress": "string",
1540
+ "MacAddress": "string",
1541
+ }
1542
+
1543
+ CThostFtdcExecOrderActionField = {
1544
+ "BrokerID": "string",
1545
+ "InvestorID": "string",
1546
+ "ExecOrderActionRef": "int",
1547
+ "ExecOrderRef": "string",
1548
+ "RequestID": "int",
1549
+ "FrontID": "int",
1550
+ "SessionID": "int",
1551
+ "ExchangeID": "string",
1552
+ "ExecOrderSysID": "string",
1553
+ "ActionFlag": "char",
1554
+ "ActionDate": "string",
1555
+ "ActionTime": "string",
1556
+ "TraderID": "string",
1557
+ "InstallID": "int",
1558
+ "ExecOrderLocalID": "string",
1559
+ "ActionLocalID": "string",
1560
+ "ParticipantID": "string",
1561
+ "ClientID": "string",
1562
+ "BusinessUnit": "string",
1563
+ "OrderActionStatus": "char",
1564
+ "UserID": "string",
1565
+ "ActionType": "char",
1566
+ "StatusMsg": "string",
1567
+ "InstrumentID": "string",
1568
+ "BranchID": "string",
1569
+ "InvestUnitID": "string",
1570
+ "IPAddress": "string",
1571
+ "MacAddress": "string",
1572
+ }
1573
+
1574
+ CThostFtdcQryExecOrderField = {
1575
+ "BrokerID": "string",
1576
+ "InvestorID": "string",
1577
+ "InstrumentID": "string",
1578
+ "ExchangeID": "string",
1579
+ "ExecOrderSysID": "string",
1580
+ "InsertTimeStart": "string",
1581
+ "InsertTimeEnd": "string",
1582
+ }
1583
+
1584
+ CThostFtdcExchangeExecOrderField = {
1585
+ "Volume": "int",
1586
+ "RequestID": "int",
1587
+ "BusinessUnit": "string",
1588
+ "OffsetFlag": "char",
1589
+ "HedgeFlag": "char",
1590
+ "ActionType": "char",
1591
+ "PosiDirection": "char",
1592
+ "ReservePositionFlag": "char",
1593
+ "CloseFlag": "char",
1594
+ "ExecOrderLocalID": "string",
1595
+ "ExchangeID": "string",
1596
+ "ParticipantID": "string",
1597
+ "ClientID": "string",
1598
+ "ExchangeInstID": "string",
1599
+ "TraderID": "string",
1600
+ "InstallID": "int",
1601
+ "OrderSubmitStatus": "char",
1602
+ "NotifySequence": "int",
1603
+ "TradingDay": "string",
1604
+ "SettlementID": "int",
1605
+ "ExecOrderSysID": "string",
1606
+ "InsertDate": "string",
1607
+ "InsertTime": "string",
1608
+ "CancelTime": "string",
1609
+ "ExecResult": "char",
1610
+ "ClearingPartID": "string",
1611
+ "SequenceNo": "int",
1612
+ "BranchID": "string",
1613
+ "IPAddress": "string",
1614
+ "MacAddress": "string",
1615
+ }
1616
+
1617
+ CThostFtdcQryExchangeExecOrderField = {
1618
+ "ParticipantID": "string",
1619
+ "ClientID": "string",
1620
+ "ExchangeInstID": "string",
1621
+ "ExchangeID": "string",
1622
+ "TraderID": "string",
1623
+ }
1624
+
1625
+ CThostFtdcQryExecOrderActionField = {
1626
+ "BrokerID": "string",
1627
+ "InvestorID": "string",
1628
+ "ExchangeID": "string",
1629
+ }
1630
+
1631
+ CThostFtdcExchangeExecOrderActionField = {
1632
+ "ExchangeID": "string",
1633
+ "ExecOrderSysID": "string",
1634
+ "ActionFlag": "char",
1635
+ "ActionDate": "string",
1636
+ "ActionTime": "string",
1637
+ "TraderID": "string",
1638
+ "InstallID": "int",
1639
+ "ExecOrderLocalID": "string",
1640
+ "ActionLocalID": "string",
1641
+ "ParticipantID": "string",
1642
+ "ClientID": "string",
1643
+ "BusinessUnit": "string",
1644
+ "OrderActionStatus": "char",
1645
+ "UserID": "string",
1646
+ "ActionType": "char",
1647
+ "BranchID": "string",
1648
+ "IPAddress": "string",
1649
+ "MacAddress": "string",
1650
+ }
1651
+
1652
+ CThostFtdcQryExchangeExecOrderActionField = {
1653
+ "ParticipantID": "string",
1654
+ "ClientID": "string",
1655
+ "ExchangeID": "string",
1656
+ "TraderID": "string",
1657
+ }
1658
+
1659
+ CThostFtdcErrExecOrderField = {
1660
+ "BrokerID": "string",
1661
+ "InvestorID": "string",
1662
+ "InstrumentID": "string",
1663
+ "ExecOrderRef": "string",
1664
+ "UserID": "string",
1665
+ "Volume": "int",
1666
+ "RequestID": "int",
1667
+ "BusinessUnit": "string",
1668
+ "OffsetFlag": "char",
1669
+ "HedgeFlag": "char",
1670
+ "ActionType": "char",
1671
+ "PosiDirection": "char",
1672
+ "ReservePositionFlag": "char",
1673
+ "CloseFlag": "char",
1674
+ "ExchangeID": "string",
1675
+ "InvestUnitID": "string",
1676
+ "AccountID": "string",
1677
+ "CurrencyID": "string",
1678
+ "ClientID": "string",
1679
+ "IPAddress": "string",
1680
+ "MacAddress": "string",
1681
+ "ErrorID": "int",
1682
+ "ErrorMsg": "string",
1683
+ }
1684
+
1685
+ CThostFtdcQryErrExecOrderField = {
1686
+ "BrokerID": "string",
1687
+ "InvestorID": "string",
1688
+ }
1689
+
1690
+ CThostFtdcErrExecOrderActionField = {
1691
+ "BrokerID": "string",
1692
+ "InvestorID": "string",
1693
+ "ExecOrderActionRef": "int",
1694
+ "ExecOrderRef": "string",
1695
+ "RequestID": "int",
1696
+ "FrontID": "int",
1697
+ "SessionID": "int",
1698
+ "ExchangeID": "string",
1699
+ "ExecOrderSysID": "string",
1700
+ "ActionFlag": "char",
1701
+ "UserID": "string",
1702
+ "InstrumentID": "string",
1703
+ "InvestUnitID": "string",
1704
+ "IPAddress": "string",
1705
+ "MacAddress": "string",
1706
+ "ErrorID": "int",
1707
+ "ErrorMsg": "string",
1708
+ }
1709
+
1710
+ CThostFtdcQryErrExecOrderActionField = {
1711
+ "BrokerID": "string",
1712
+ "InvestorID": "string",
1713
+ }
1714
+
1715
+ CThostFtdcOptionInstrTradingRightField = {
1716
+ "InstrumentID": "string",
1717
+ "InvestorRange": "char",
1718
+ "BrokerID": "string",
1719
+ "InvestorID": "string",
1720
+ "Direction": "char",
1721
+ "TradingRight": "char",
1722
+ }
1723
+
1724
+ CThostFtdcQryOptionInstrTradingRightField = {
1725
+ "BrokerID": "string",
1726
+ "InvestorID": "string",
1727
+ "InstrumentID": "string",
1728
+ "Direction": "char",
1729
+ }
1730
+
1731
+ CThostFtdcInputForQuoteField = {
1732
+ "BrokerID": "string",
1733
+ "InvestorID": "string",
1734
+ "InstrumentID": "string",
1735
+ "ForQuoteRef": "string",
1736
+ "UserID": "string",
1737
+ "ExchangeID": "string",
1738
+ "InvestUnitID": "string",
1739
+ "IPAddress": "string",
1740
+ "MacAddress": "string",
1741
+ "BusinessUnit": "string",
1742
+ }
1743
+
1744
+ CThostFtdcForQuoteField = {
1745
+ "BrokerID": "string",
1746
+ "InvestorID": "string",
1747
+ "InstrumentID": "string",
1748
+ "ForQuoteRef": "string",
1749
+ "UserID": "string",
1750
+ "ForQuoteLocalID": "string",
1751
+ "ExchangeID": "string",
1752
+ "ParticipantID": "string",
1753
+ "ClientID": "string",
1754
+ "ExchangeInstID": "string",
1755
+ "TraderID": "string",
1756
+ "InstallID": "int",
1757
+ "InsertDate": "string",
1758
+ "InsertTime": "string",
1759
+ "ForQuoteStatus": "char",
1760
+ "FrontID": "int",
1761
+ "SessionID": "int",
1762
+ "StatusMsg": "string",
1763
+ "ActiveUserID": "string",
1764
+ "BrokerForQutoSeq": "int",
1765
+ "InvestUnitID": "string",
1766
+ "IPAddress": "string",
1767
+ "MacAddress": "string",
1768
+ "BusinessUnit": "string",
1769
+ }
1770
+
1771
+ CThostFtdcQryForQuoteField = {
1772
+ "BrokerID": "string",
1773
+ "InvestorID": "string",
1774
+ "InstrumentID": "string",
1775
+ "ExchangeID": "string",
1776
+ "InsertTimeStart": "string",
1777
+ "InsertTimeEnd": "string",
1778
+ }
1779
+
1780
+ CThostFtdcExchangeForQuoteField = {
1781
+ "ForQuoteLocalID": "string",
1782
+ "ExchangeID": "string",
1783
+ "ParticipantID": "string",
1784
+ "ClientID": "string",
1785
+ "ExchangeInstID": "string",
1786
+ "TraderID": "string",
1787
+ "InstallID": "int",
1788
+ "InsertDate": "string",
1789
+ "InsertTime": "string",
1790
+ "ForQuoteStatus": "char",
1791
+ "IPAddress": "string",
1792
+ "MacAddress": "string",
1793
+ }
1794
+
1795
+ CThostFtdcQryExchangeForQuoteField = {
1796
+ "ParticipantID": "string",
1797
+ "ClientID": "string",
1798
+ "ExchangeInstID": "string",
1799
+ "ExchangeID": "string",
1800
+ "TraderID": "string",
1801
+ }
1802
+
1803
+ CThostFtdcInputQuoteField = {
1804
+ "BrokerID": "string",
1805
+ "InvestorID": "string",
1806
+ "InstrumentID": "string",
1807
+ "QuoteRef": "string",
1808
+ "UserID": "string",
1809
+ "AskPrice": "double",
1810
+ "BidPrice": "double",
1811
+ "AskVolume": "int",
1812
+ "BidVolume": "int",
1813
+ "RequestID": "int",
1814
+ "BusinessUnit": "string",
1815
+ "AskOffsetFlag": "char",
1816
+ "BidOffsetFlag": "char",
1817
+ "AskHedgeFlag": "char",
1818
+ "BidHedgeFlag": "char",
1819
+ "AskOrderRef": "string",
1820
+ "BidOrderRef": "string",
1821
+ "ForQuoteSysID": "string",
1822
+ "ExchangeID": "string",
1823
+ "InvestUnitID": "string",
1824
+ "ClientID": "string",
1825
+ "IPAddress": "string",
1826
+ "MacAddress": "string",
1827
+ "ReplaceSysID": "string",
1828
+ }
1829
+
1830
+ CThostFtdcInputQuoteActionField = {
1831
+ "BrokerID": "string",
1832
+ "InvestorID": "string",
1833
+ "QuoteActionRef": "int",
1834
+ "QuoteRef": "string",
1835
+ "RequestID": "int",
1836
+ "FrontID": "int",
1837
+ "SessionID": "int",
1838
+ "ExchangeID": "string",
1839
+ "QuoteSysID": "string",
1840
+ "ActionFlag": "char",
1841
+ "UserID": "string",
1842
+ "InstrumentID": "string",
1843
+ "InvestUnitID": "string",
1844
+ "ClientID": "string",
1845
+ "IPAddress": "string",
1846
+ "MacAddress": "string",
1847
+ }
1848
+
1849
+ CThostFtdcQuoteField = {
1850
+ "BrokerID": "string",
1851
+ "InvestorID": "string",
1852
+ "InstrumentID": "string",
1853
+ "QuoteRef": "string",
1854
+ "UserID": "string",
1855
+ "AskPrice": "double",
1856
+ "BidPrice": "double",
1857
+ "AskVolume": "int",
1858
+ "BidVolume": "int",
1859
+ "RequestID": "int",
1860
+ "BusinessUnit": "string",
1861
+ "AskOffsetFlag": "char",
1862
+ "BidOffsetFlag": "char",
1863
+ "AskHedgeFlag": "char",
1864
+ "BidHedgeFlag": "char",
1865
+ "QuoteLocalID": "string",
1866
+ "ExchangeID": "string",
1867
+ "ParticipantID": "string",
1868
+ "ClientID": "string",
1869
+ "ExchangeInstID": "string",
1870
+ "TraderID": "string",
1871
+ "InstallID": "int",
1872
+ "NotifySequence": "int",
1873
+ "OrderSubmitStatus": "char",
1874
+ "TradingDay": "string",
1875
+ "SettlementID": "int",
1876
+ "QuoteSysID": "string",
1877
+ "InsertDate": "string",
1878
+ "InsertTime": "string",
1879
+ "CancelTime": "string",
1880
+ "QuoteStatus": "char",
1881
+ "ClearingPartID": "string",
1882
+ "SequenceNo": "int",
1883
+ "AskOrderSysID": "string",
1884
+ "BidOrderSysID": "string",
1885
+ "FrontID": "int",
1886
+ "SessionID": "int",
1887
+ "UserProductInfo": "string",
1888
+ "StatusMsg": "string",
1889
+ "ActiveUserID": "string",
1890
+ "BrokerQuoteSeq": "int",
1891
+ "AskOrderRef": "string",
1892
+ "BidOrderRef": "string",
1893
+ "ForQuoteSysID": "string",
1894
+ "BranchID": "string",
1895
+ "InvestUnitID": "string",
1896
+ "AccountID": "string",
1897
+ "CurrencyID": "string",
1898
+ "IPAddress": "string",
1899
+ "MacAddress": "string",
1900
+ "ReplaceSysID": "string",
1901
+ }
1902
+
1903
+ CThostFtdcQuoteActionField = {
1904
+ "BrokerID": "string",
1905
+ "InvestorID": "string",
1906
+ "QuoteActionRef": "int",
1907
+ "QuoteRef": "string",
1908
+ "RequestID": "int",
1909
+ "FrontID": "int",
1910
+ "SessionID": "int",
1911
+ "ExchangeID": "string",
1912
+ "QuoteSysID": "string",
1913
+ "ActionFlag": "char",
1914
+ "ActionDate": "string",
1915
+ "ActionTime": "string",
1916
+ "TraderID": "string",
1917
+ "InstallID": "int",
1918
+ "QuoteLocalID": "string",
1919
+ "ActionLocalID": "string",
1920
+ "ParticipantID": "string",
1921
+ "ClientID": "string",
1922
+ "BusinessUnit": "string",
1923
+ "OrderActionStatus": "char",
1924
+ "UserID": "string",
1925
+ "StatusMsg": "string",
1926
+ "InstrumentID": "string",
1927
+ "BranchID": "string",
1928
+ "InvestUnitID": "string",
1929
+ "IPAddress": "string",
1930
+ "MacAddress": "string",
1931
+ }
1932
+
1933
+ CThostFtdcQryQuoteField = {
1934
+ "BrokerID": "string",
1935
+ "InvestorID": "string",
1936
+ "InstrumentID": "string",
1937
+ "ExchangeID": "string",
1938
+ "QuoteSysID": "string",
1939
+ "InsertTimeStart": "string",
1940
+ "InsertTimeEnd": "string",
1941
+ }
1942
+
1943
+ CThostFtdcExchangeQuoteField = {
1944
+ "AskPrice": "double",
1945
+ "BidPrice": "double",
1946
+ "AskVolume": "int",
1947
+ "BidVolume": "int",
1948
+ "RequestID": "int",
1949
+ "BusinessUnit": "string",
1950
+ "AskOffsetFlag": "char",
1951
+ "BidOffsetFlag": "char",
1952
+ "AskHedgeFlag": "char",
1953
+ "BidHedgeFlag": "char",
1954
+ "QuoteLocalID": "string",
1955
+ "ExchangeID": "string",
1956
+ "ParticipantID": "string",
1957
+ "ClientID": "string",
1958
+ "ExchangeInstID": "string",
1959
+ "TraderID": "string",
1960
+ "InstallID": "int",
1961
+ "NotifySequence": "int",
1962
+ "OrderSubmitStatus": "char",
1963
+ "TradingDay": "string",
1964
+ "SettlementID": "int",
1965
+ "QuoteSysID": "string",
1966
+ "InsertDate": "string",
1967
+ "InsertTime": "string",
1968
+ "CancelTime": "string",
1969
+ "QuoteStatus": "char",
1970
+ "ClearingPartID": "string",
1971
+ "SequenceNo": "int",
1972
+ "AskOrderSysID": "string",
1973
+ "BidOrderSysID": "string",
1974
+ "ForQuoteSysID": "string",
1975
+ "BranchID": "string",
1976
+ "IPAddress": "string",
1977
+ "MacAddress": "string",
1978
+ }
1979
+
1980
+ CThostFtdcQryExchangeQuoteField = {
1981
+ "ParticipantID": "string",
1982
+ "ClientID": "string",
1983
+ "ExchangeInstID": "string",
1984
+ "ExchangeID": "string",
1985
+ "TraderID": "string",
1986
+ }
1987
+
1988
+ CThostFtdcQryQuoteActionField = {
1989
+ "BrokerID": "string",
1990
+ "InvestorID": "string",
1991
+ "ExchangeID": "string",
1992
+ }
1993
+
1994
+ CThostFtdcExchangeQuoteActionField = {
1995
+ "ExchangeID": "string",
1996
+ "QuoteSysID": "string",
1997
+ "ActionFlag": "char",
1998
+ "ActionDate": "string",
1999
+ "ActionTime": "string",
2000
+ "TraderID": "string",
2001
+ "InstallID": "int",
2002
+ "QuoteLocalID": "string",
2003
+ "ActionLocalID": "string",
2004
+ "ParticipantID": "string",
2005
+ "ClientID": "string",
2006
+ "BusinessUnit": "string",
2007
+ "OrderActionStatus": "char",
2008
+ "UserID": "string",
2009
+ "IPAddress": "string",
2010
+ "MacAddress": "string",
2011
+ }
2012
+
2013
+ CThostFtdcQryExchangeQuoteActionField = {
2014
+ "ParticipantID": "string",
2015
+ "ClientID": "string",
2016
+ "ExchangeID": "string",
2017
+ "TraderID": "string",
2018
+ }
2019
+
2020
+ CThostFtdcOptionInstrDeltaField = {
2021
+ "InstrumentID": "string",
2022
+ "InvestorRange": "char",
2023
+ "BrokerID": "string",
2024
+ "InvestorID": "string",
2025
+ "Delta": "double",
2026
+ }
2027
+
2028
+ CThostFtdcForQuoteRspField = {
2029
+ "TradingDay": "string",
2030
+ "InstrumentID": "string",
2031
+ "ForQuoteSysID": "string",
2032
+ "ForQuoteTime": "string",
2033
+ "ActionDay": "string",
2034
+ "ExchangeID": "string",
2035
+ }
2036
+
2037
+ CThostFtdcStrikeOffsetField = {
2038
+ "InstrumentID": "string",
2039
+ "InvestorRange": "char",
2040
+ "BrokerID": "string",
2041
+ "InvestorID": "string",
2042
+ "Offset": "double",
2043
+ "OffsetType": "char",
2044
+ }
2045
+
2046
+ CThostFtdcQryStrikeOffsetField = {
2047
+ "BrokerID": "string",
2048
+ "InvestorID": "string",
2049
+ "InstrumentID": "string",
2050
+ }
2051
+
2052
+ CThostFtdcInputBatchOrderActionField = {
2053
+ "BrokerID": "string",
2054
+ "InvestorID": "string",
2055
+ "OrderActionRef": "int",
2056
+ "RequestID": "int",
2057
+ "FrontID": "int",
2058
+ "SessionID": "int",
2059
+ "ExchangeID": "string",
2060
+ "UserID": "string",
2061
+ "InvestUnitID": "string",
2062
+ "IPAddress": "string",
2063
+ "MacAddress": "string",
2064
+ }
2065
+
2066
+ CThostFtdcBatchOrderActionField = {
2067
+ "BrokerID": "string",
2068
+ "InvestorID": "string",
2069
+ "OrderActionRef": "int",
2070
+ "RequestID": "int",
2071
+ "FrontID": "int",
2072
+ "SessionID": "int",
2073
+ "ExchangeID": "string",
2074
+ "ActionDate": "string",
2075
+ "ActionTime": "string",
2076
+ "TraderID": "string",
2077
+ "InstallID": "int",
2078
+ "ActionLocalID": "string",
2079
+ "ParticipantID": "string",
2080
+ "ClientID": "string",
2081
+ "BusinessUnit": "string",
2082
+ "OrderActionStatus": "char",
2083
+ "UserID": "string",
2084
+ "StatusMsg": "string",
2085
+ "InvestUnitID": "string",
2086
+ "IPAddress": "string",
2087
+ "MacAddress": "string",
2088
+ }
2089
+
2090
+ CThostFtdcExchangeBatchOrderActionField = {
2091
+ "ExchangeID": "string",
2092
+ "ActionDate": "string",
2093
+ "ActionTime": "string",
2094
+ "TraderID": "string",
2095
+ "InstallID": "int",
2096
+ "ActionLocalID": "string",
2097
+ "ParticipantID": "string",
2098
+ "ClientID": "string",
2099
+ "BusinessUnit": "string",
2100
+ "OrderActionStatus": "char",
2101
+ "UserID": "string",
2102
+ "IPAddress": "string",
2103
+ "MacAddress": "string",
2104
+ }
2105
+
2106
+ CThostFtdcQryBatchOrderActionField = {
2107
+ "BrokerID": "string",
2108
+ "InvestorID": "string",
2109
+ "ExchangeID": "string",
2110
+ }
2111
+
2112
+ CThostFtdcInputOptionSelfCloseField = {
2113
+ "BrokerID": "string",
2114
+ "InvestorID": "string",
2115
+ "InstrumentID": "string",
2116
+ "OptionSelfCloseRef": "string",
2117
+ "UserID": "string",
2118
+ "Volume": "int",
2119
+ "RequestID": "int",
2120
+ "BusinessUnit": "string",
2121
+ "HedgeFlag": "char",
2122
+ "OptSelfCloseFlag": "char",
2123
+ "ExchangeID": "string",
2124
+ "InvestUnitID": "string",
2125
+ "AccountID": "string",
2126
+ "CurrencyID": "string",
2127
+ "ClientID": "string",
2128
+ "IPAddress": "string",
2129
+ "MacAddress": "string",
2130
+ }
2131
+
2132
+ CThostFtdcInputOptionSelfCloseActionField = {
2133
+ "BrokerID": "string",
2134
+ "InvestorID": "string",
2135
+ "OptionSelfCloseActionRef": "int",
2136
+ "OptionSelfCloseRef": "string",
2137
+ "RequestID": "int",
2138
+ "FrontID": "int",
2139
+ "SessionID": "int",
2140
+ "ExchangeID": "string",
2141
+ "OptionSelfCloseSysID": "string",
2142
+ "ActionFlag": "char",
2143
+ "UserID": "string",
2144
+ "InstrumentID": "string",
2145
+ "InvestUnitID": "string",
2146
+ "IPAddress": "string",
2147
+ "MacAddress": "string",
2148
+ }
2149
+
2150
+ CThostFtdcOptionSelfCloseField = {
2151
+ "BrokerID": "string",
2152
+ "InvestorID": "string",
2153
+ "InstrumentID": "string",
2154
+ "OptionSelfCloseRef": "string",
2155
+ "UserID": "string",
2156
+ "Volume": "int",
2157
+ "RequestID": "int",
2158
+ "BusinessUnit": "string",
2159
+ "HedgeFlag": "char",
2160
+ "OptSelfCloseFlag": "char",
2161
+ "OptionSelfCloseLocalID": "string",
2162
+ "ExchangeID": "string",
2163
+ "ParticipantID": "string",
2164
+ "ClientID": "string",
2165
+ "ExchangeInstID": "string",
2166
+ "TraderID": "string",
2167
+ "InstallID": "int",
2168
+ "OrderSubmitStatus": "char",
2169
+ "NotifySequence": "int",
2170
+ "TradingDay": "string",
2171
+ "SettlementID": "int",
2172
+ "OptionSelfCloseSysID": "string",
2173
+ "InsertDate": "string",
2174
+ "InsertTime": "string",
2175
+ "CancelTime": "string",
2176
+ "ExecResult": "char",
2177
+ "ClearingPartID": "string",
2178
+ "SequenceNo": "int",
2179
+ "FrontID": "int",
2180
+ "SessionID": "int",
2181
+ "UserProductInfo": "string",
2182
+ "StatusMsg": "string",
2183
+ "ActiveUserID": "string",
2184
+ "BrokerOptionSelfCloseSeq": "int",
2185
+ "BranchID": "string",
2186
+ "InvestUnitID": "string",
2187
+ "AccountID": "string",
2188
+ "CurrencyID": "string",
2189
+ "IPAddress": "string",
2190
+ "MacAddress": "string",
2191
+ }
2192
+
2193
+ CThostFtdcOptionSelfCloseActionField = {
2194
+ "BrokerID": "string",
2195
+ "InvestorID": "string",
2196
+ "OptionSelfCloseActionRef": "int",
2197
+ "OptionSelfCloseRef": "string",
2198
+ "RequestID": "int",
2199
+ "FrontID": "int",
2200
+ "SessionID": "int",
2201
+ "ExchangeID": "string",
2202
+ "OptionSelfCloseSysID": "string",
2203
+ "ActionFlag": "char",
2204
+ "ActionDate": "string",
2205
+ "ActionTime": "string",
2206
+ "TraderID": "string",
2207
+ "InstallID": "int",
2208
+ "OptionSelfCloseLocalID": "string",
2209
+ "ActionLocalID": "string",
2210
+ "ParticipantID": "string",
2211
+ "ClientID": "string",
2212
+ "BusinessUnit": "string",
2213
+ "OrderActionStatus": "char",
2214
+ "UserID": "string",
2215
+ "StatusMsg": "string",
2216
+ "InstrumentID": "string",
2217
+ "BranchID": "string",
2218
+ "InvestUnitID": "string",
2219
+ "IPAddress": "string",
2220
+ "MacAddress": "string",
2221
+ }
2222
+
2223
+ CThostFtdcQryOptionSelfCloseField = {
2224
+ "BrokerID": "string",
2225
+ "InvestorID": "string",
2226
+ "InstrumentID": "string",
2227
+ "ExchangeID": "string",
2228
+ "OptionSelfCloseSysID": "string",
2229
+ "InsertTimeStart": "string",
2230
+ "InsertTimeEnd": "string",
2231
+ }
2232
+
2233
+ CThostFtdcExchangeOptionSelfCloseField = {
2234
+ "Volume": "int",
2235
+ "RequestID": "int",
2236
+ "BusinessUnit": "string",
2237
+ "HedgeFlag": "char",
2238
+ "OptSelfCloseFlag": "char",
2239
+ "OptionSelfCloseLocalID": "string",
2240
+ "ExchangeID": "string",
2241
+ "ParticipantID": "string",
2242
+ "ClientID": "string",
2243
+ "ExchangeInstID": "string",
2244
+ "TraderID": "string",
2245
+ "InstallID": "int",
2246
+ "OrderSubmitStatus": "char",
2247
+ "NotifySequence": "int",
2248
+ "TradingDay": "string",
2249
+ "SettlementID": "int",
2250
+ "OptionSelfCloseSysID": "string",
2251
+ "InsertDate": "string",
2252
+ "InsertTime": "string",
2253
+ "CancelTime": "string",
2254
+ "ExecResult": "char",
2255
+ "ClearingPartID": "string",
2256
+ "SequenceNo": "int",
2257
+ "BranchID": "string",
2258
+ "IPAddress": "string",
2259
+ "MacAddress": "string",
2260
+ }
2261
+
2262
+ CThostFtdcQryOptionSelfCloseActionField = {
2263
+ "BrokerID": "string",
2264
+ "InvestorID": "string",
2265
+ "ExchangeID": "string",
2266
+ }
2267
+
2268
+ CThostFtdcExchangeOptionSelfCloseActionField = {
2269
+ "ExchangeID": "string",
2270
+ "OptionSelfCloseSysID": "string",
2271
+ "ActionFlag": "char",
2272
+ "ActionDate": "string",
2273
+ "ActionTime": "string",
2274
+ "TraderID": "string",
2275
+ "InstallID": "int",
2276
+ "OptionSelfCloseLocalID": "string",
2277
+ "ActionLocalID": "string",
2278
+ "ParticipantID": "string",
2279
+ "ClientID": "string",
2280
+ "BusinessUnit": "string",
2281
+ "OrderActionStatus": "char",
2282
+ "UserID": "string",
2283
+ "BranchID": "string",
2284
+ "IPAddress": "string",
2285
+ "MacAddress": "string",
2286
+ }
2287
+
2288
+ CThostFtdcCombInstrumentGuardField = {
2289
+ "BrokerID": "string",
2290
+ "InstrumentID": "string",
2291
+ "GuarantRatio": "double",
2292
+ }
2293
+
2294
+ CThostFtdcQryCombInstrumentGuardField = {
2295
+ "BrokerID": "string",
2296
+ "InstrumentID": "string",
2297
+ }
2298
+
2299
+ CThostFtdcInputCombActionField = {
2300
+ "BrokerID": "string",
2301
+ "InvestorID": "string",
2302
+ "InstrumentID": "string",
2303
+ "CombActionRef": "string",
2304
+ "UserID": "string",
2305
+ "Direction": "char",
2306
+ "Volume": "int",
2307
+ "CombDirection": "char",
2308
+ "HedgeFlag": "char",
2309
+ "BusinessUnit": "string",
2310
+ "ExchangeID": "string",
2311
+ "IPAddress": "string",
2312
+ "MacAddress": "string",
2313
+ "InvestUnitID": "string",
2314
+ "FrontID": "int",
2315
+ "SessionID": "int",
2316
+ }
2317
+
2318
+ CThostFtdcCombActionField = {
2319
+ "BrokerID": "string",
2320
+ "InvestorID": "string",
2321
+ "InstrumentID": "string",
2322
+ "CombActionRef": "string",
2323
+ "UserID": "string",
2324
+ "Direction": "char",
2325
+ "Volume": "int",
2326
+ "CombDirection": "char",
2327
+ "HedgeFlag": "char",
2328
+ "BusinessUnit": "string",
2329
+ "ActionLocalID": "string",
2330
+ "ExchangeID": "string",
2331
+ "ParticipantID": "string",
2332
+ "ClientID": "string",
2333
+ "ExchangeInstID": "string",
2334
+ "TraderID": "string",
2335
+ "InstallID": "int",
2336
+ "ActionStatus": "char",
2337
+ "NotifySequence": "int",
2338
+ "TradingDay": "string",
2339
+ "SettlementID": "int",
2340
+ "SequenceNo": "int",
2341
+ "FrontID": "int",
2342
+ "SessionID": "int",
2343
+ "UserProductInfo": "string",
2344
+ "StatusMsg": "string",
2345
+ "IPAddress": "string",
2346
+ "MacAddress": "string",
2347
+ "ComTradeID": "string",
2348
+ }
2349
+
2350
+ CThostFtdcInvestorPositionForCombField = {
2351
+ "ExchangeID": "string",
2352
+ "BrokerID": "string",
2353
+ "InvestorID": "string",
2354
+ "LegInstrumentID": "string",
2355
+ "LegHedgeFlag": "char",
2356
+ "LegDirection": "char",
2357
+ "TotalAmt": "int",
2358
+ "LegID": "int",
2359
+ "TradeGroupID": "int",
2360
+ "CombInstrumentID": "string",
2361
+ "CombHedgeFlag": "char",
2362
+ "CombinationType": "char",
2363
+ }
2364
+
2365
+ CThostFtdcQryCombActionField = {
2366
+ "BrokerID": "string",
2367
+ "InvestorID": "string",
2368
+ "InstrumentID": "string",
2369
+ "ExchangeID": "string",
2370
+ }
2371
+
2372
+ CThostFtdcQryInvestorPositionForCombField = {
2373
+ "ExchangeID": "string",
2374
+ "BrokerID": "string",
2375
+ "InvestorID": "string",
2376
+ "LegInstrumentID": "string",
2377
+ }
2378
+
2379
+ CThostFtdcExchangeCombActionField = {
2380
+ "Direction": "char",
2381
+ "Volume": "int",
2382
+ "CombDirection": "char",
2383
+ "HedgeFlag": "char",
2384
+ "ActionLocalID": "string",
2385
+ "ExchangeID": "string",
2386
+ "ParticipantID": "string",
2387
+ "ClientID": "string",
2388
+ "ExchangeInstID": "string",
2389
+ "TraderID": "string",
2390
+ "InstallID": "int",
2391
+ "ActionStatus": "char",
2392
+ "NotifySequence": "int",
2393
+ "TradingDay": "string",
2394
+ "SettlementID": "int",
2395
+ "SequenceNo": "int",
2396
+ "IPAddress": "string",
2397
+ "MacAddress": "string",
2398
+ }
2399
+
2400
+ CThostFtdcQryExchangeCombActionField = {
2401
+ "ParticipantID": "string",
2402
+ "ClientID": "string",
2403
+ "ExchangeInstID": "string",
2404
+ "ExchangeID": "string",
2405
+ "TraderID": "string",
2406
+ }
2407
+
2408
+ CThostFtdcProductExchRateField = {
2409
+ "ProductID": "string",
2410
+ "QuoteCurrencyID": "string",
2411
+ "ExchangeRate": "double",
2412
+ }
2413
+
2414
+ CThostFtdcQryProductExchRateField = {
2415
+ "ProductID": "string",
2416
+ }
2417
+
2418
+ CThostFtdcQryForQuoteParamField = {
2419
+ "BrokerID": "string",
2420
+ "InstrumentID": "string",
2421
+ "ExchangeID": "string",
2422
+ }
2423
+
2424
+ CThostFtdcForQuoteParamField = {
2425
+ "BrokerID": "string",
2426
+ "InstrumentID": "string",
2427
+ "ExchangeID": "string",
2428
+ "LastPrice": "double",
2429
+ "PriceInterval": "double",
2430
+ }
2431
+
2432
+ CThostFtdcMMOptionInstrCommRateField = {
2433
+ "InstrumentID": "string",
2434
+ "InvestorRange": "char",
2435
+ "BrokerID": "string",
2436
+ "InvestorID": "string",
2437
+ "OpenRatioByMoney": "double",
2438
+ "OpenRatioByVolume": "double",
2439
+ "CloseRatioByMoney": "double",
2440
+ "CloseRatioByVolume": "double",
2441
+ "CloseTodayRatioByMoney": "double",
2442
+ "CloseTodayRatioByVolume": "double",
2443
+ "StrikeRatioByMoney": "double",
2444
+ "StrikeRatioByVolume": "double",
2445
+ }
2446
+
2447
+ CThostFtdcQryMMOptionInstrCommRateField = {
2448
+ "BrokerID": "string",
2449
+ "InvestorID": "string",
2450
+ "InstrumentID": "string",
2451
+ }
2452
+
2453
+ CThostFtdcMMInstrumentCommissionRateField = {
2454
+ "InstrumentID": "string",
2455
+ "InvestorRange": "char",
2456
+ "BrokerID": "string",
2457
+ "InvestorID": "string",
2458
+ "OpenRatioByMoney": "double",
2459
+ "OpenRatioByVolume": "double",
2460
+ "CloseRatioByMoney": "double",
2461
+ "CloseRatioByVolume": "double",
2462
+ "CloseTodayRatioByMoney": "double",
2463
+ "CloseTodayRatioByVolume": "double",
2464
+ }
2465
+
2466
+ CThostFtdcQryMMInstrumentCommissionRateField = {
2467
+ "BrokerID": "string",
2468
+ "InvestorID": "string",
2469
+ "InstrumentID": "string",
2470
+ }
2471
+
2472
+ CThostFtdcInstrumentOrderCommRateField = {
2473
+ "InstrumentID": "string",
2474
+ "InvestorRange": "char",
2475
+ "BrokerID": "string",
2476
+ "InvestorID": "string",
2477
+ "HedgeFlag": "char",
2478
+ "OrderCommByVolume": "double",
2479
+ "OrderActionCommByVolume": "double",
2480
+ }
2481
+
2482
+ CThostFtdcQryInstrumentOrderCommRateField = {
2483
+ "BrokerID": "string",
2484
+ "InvestorID": "string",
2485
+ "InstrumentID": "string",
2486
+ "HedgeFlag": "char",
2487
+ }
2488
+
2489
+ CThostFtdcMarketDataField = {
2490
+ "TradingDay": "string",
2491
+ "InstrumentID": "string",
2492
+ "ExchangeID": "string",
2493
+ "ExchangeInstID": "string",
2494
+ "LastPrice": "double",
2495
+ "PreSettlementPrice": "double",
2496
+ "PreClosePrice": "double",
2497
+ "PreOpenInterest": "double",
2498
+ "OpenPrice": "double",
2499
+ "HighestPrice": "double",
2500
+ "LowestPrice": "double",
2501
+ "Volume": "int",
2502
+ "Turnover": "double",
2503
+ "OpenInterest": "double",
2504
+ "ClosePrice": "double",
2505
+ "SettlementPrice": "double",
2506
+ "UpperLimitPrice": "double",
2507
+ "LowerLimitPrice": "double",
2508
+ "PreDelta": "double",
2509
+ "CurrDelta": "double",
2510
+ "UpdateTime": "string",
2511
+ "UpdateMillisec": "int",
2512
+ "ActionDay": "string",
2513
+ }
2514
+
2515
+ CThostFtdcMarketDataBaseField = {
2516
+ "TradingDay": "string",
2517
+ "PreSettlementPrice": "double",
2518
+ "PreClosePrice": "double",
2519
+ "PreOpenInterest": "double",
2520
+ "PreDelta": "double",
2521
+ }
2522
+
2523
+ CThostFtdcMarketDataStaticField = {
2524
+ "OpenPrice": "double",
2525
+ "HighestPrice": "double",
2526
+ "LowestPrice": "double",
2527
+ "ClosePrice": "double",
2528
+ "UpperLimitPrice": "double",
2529
+ "LowerLimitPrice": "double",
2530
+ "SettlementPrice": "double",
2531
+ "CurrDelta": "double",
2532
+ }
2533
+
2534
+ CThostFtdcMarketDataLastMatchField = {
2535
+ "LastPrice": "double",
2536
+ "Volume": "int",
2537
+ "Turnover": "double",
2538
+ "OpenInterest": "double",
2539
+ }
2540
+
2541
+ CThostFtdcMarketDataBestPriceField = {
2542
+ "BidPrice1": "double",
2543
+ "BidVolume1": "int",
2544
+ "AskPrice1": "double",
2545
+ "AskVolume1": "int",
2546
+ }
2547
+
2548
+ CThostFtdcMarketDataBid23Field = {
2549
+ "BidPrice2": "double",
2550
+ "BidVolume2": "int",
2551
+ "BidPrice3": "double",
2552
+ "BidVolume3": "int",
2553
+ }
2554
+
2555
+ CThostFtdcMarketDataAsk23Field = {
2556
+ "AskPrice2": "double",
2557
+ "AskVolume2": "int",
2558
+ "AskPrice3": "double",
2559
+ "AskVolume3": "int",
2560
+ }
2561
+
2562
+ CThostFtdcMarketDataBid45Field = {
2563
+ "BidPrice4": "double",
2564
+ "BidVolume4": "int",
2565
+ "BidPrice5": "double",
2566
+ "BidVolume5": "int",
2567
+ }
2568
+
2569
+ CThostFtdcMarketDataAsk45Field = {
2570
+ "AskPrice4": "double",
2571
+ "AskVolume4": "int",
2572
+ "AskPrice5": "double",
2573
+ "AskVolume5": "int",
2574
+ }
2575
+
2576
+ CThostFtdcMarketDataUpdateTimeField = {
2577
+ "InstrumentID": "string",
2578
+ "UpdateTime": "string",
2579
+ "UpdateMillisec": "int",
2580
+ "ActionDay": "string",
2581
+ }
2582
+
2583
+ CThostFtdcMarketDataExchangeField = {
2584
+ "ExchangeID": "string",
2585
+ }
2586
+
2587
+ CThostFtdcSpecificInstrumentField = {
2588
+ "InstrumentID": "string",
2589
+ }
2590
+
2591
+ CThostFtdcInstrumentStatusField = {
2592
+ "ExchangeID": "string",
2593
+ "ExchangeInstID": "string",
2594
+ "SettlementGroupID": "string",
2595
+ "InstrumentID": "string",
2596
+ "InstrumentStatus": "char",
2597
+ "TradingSegmentSN": "int",
2598
+ "EnterTime": "string",
2599
+ "EnterReason": "char",
2600
+ }
2601
+
2602
+ CThostFtdcQryInstrumentStatusField = {
2603
+ "ExchangeID": "string",
2604
+ "ExchangeInstID": "string",
2605
+ }
2606
+
2607
+ CThostFtdcInvestorAccountField = {
2608
+ "BrokerID": "string",
2609
+ "InvestorID": "string",
2610
+ "AccountID": "string",
2611
+ "CurrencyID": "string",
2612
+ }
2613
+
2614
+ CThostFtdcPositionProfitAlgorithmField = {
2615
+ "BrokerID": "string",
2616
+ "AccountID": "string",
2617
+ "Algorithm": "char",
2618
+ "Memo": "string",
2619
+ "CurrencyID": "string",
2620
+ }
2621
+
2622
+ CThostFtdcDiscountField = {
2623
+ "BrokerID": "string",
2624
+ "InvestorRange": "char",
2625
+ "InvestorID": "string",
2626
+ "Discount": "double",
2627
+ }
2628
+
2629
+ CThostFtdcQryTransferBankField = {
2630
+ "BankID": "string",
2631
+ "BankBrchID": "string",
2632
+ }
2633
+
2634
+ CThostFtdcTransferBankField = {
2635
+ "BankID": "string",
2636
+ "BankBrchID": "string",
2637
+ "BankName": "string",
2638
+ "IsActive": "int",
2639
+ }
2640
+
2641
+ CThostFtdcQryInvestorPositionDetailField = {
2642
+ "BrokerID": "string",
2643
+ "InvestorID": "string",
2644
+ "InstrumentID": "string",
2645
+ }
2646
+
2647
+ CThostFtdcInvestorPositionDetailField = {
2648
+ "InstrumentID": "string",
2649
+ "BrokerID": "string",
2650
+ "InvestorID": "string",
2651
+ "HedgeFlag": "char",
2652
+ "Direction": "char",
2653
+ "OpenDate": "string",
2654
+ "TradeID": "string",
2655
+ "Volume": "int",
2656
+ "OpenPrice": "double",
2657
+ "TradingDay": "string",
2658
+ "SettlementID": "int",
2659
+ "TradeType": "char",
2660
+ "CombInstrumentID": "string",
2661
+ "ExchangeID": "string",
2662
+ "CloseProfitByDate": "double",
2663
+ "CloseProfitByTrade": "double",
2664
+ "PositionProfitByDate": "double",
2665
+ "PositionProfitByTrade": "double",
2666
+ "Margin": "double",
2667
+ "ExchMargin": "double",
2668
+ "MarginRateByMoney": "double",
2669
+ "MarginRateByVolume": "double",
2670
+ "LastSettlementPrice": "double",
2671
+ "SettlementPrice": "double",
2672
+ "CloseVolume": "int",
2673
+ "CloseAmount": "double",
2674
+ }
2675
+
2676
+ CThostFtdcTradingAccountPasswordField = {
2677
+ "BrokerID": "string",
2678
+ "AccountID": "string",
2679
+ "Password": "string",
2680
+ "CurrencyID": "string",
2681
+ }
2682
+
2683
+ CThostFtdcMDTraderOfferField = {
2684
+ "ExchangeID": "string",
2685
+ "TraderID": "string",
2686
+ "ParticipantID": "string",
2687
+ "Password": "string",
2688
+ "InstallID": "int",
2689
+ "OrderLocalID": "string",
2690
+ "TraderConnectStatus": "char",
2691
+ "ConnectRequestDate": "string",
2692
+ "ConnectRequestTime": "string",
2693
+ "LastReportDate": "string",
2694
+ "LastReportTime": "string",
2695
+ "ConnectDate": "string",
2696
+ "ConnectTime": "string",
2697
+ "StartDate": "string",
2698
+ "StartTime": "string",
2699
+ "TradingDay": "string",
2700
+ "BrokerID": "string",
2701
+ "MaxTradeID": "string",
2702
+ "MaxOrderMessageReference": "string",
2703
+ }
2704
+
2705
+ CThostFtdcQryMDTraderOfferField = {
2706
+ "ExchangeID": "string",
2707
+ "ParticipantID": "string",
2708
+ "TraderID": "string",
2709
+ }
2710
+
2711
+ CThostFtdcQryNoticeField = {
2712
+ "BrokerID": "string",
2713
+ }
2714
+
2715
+ CThostFtdcNoticeField = {
2716
+ "BrokerID": "string",
2717
+ "Content": "string",
2718
+ "SequenceLabel": "string",
2719
+ }
2720
+
2721
+ CThostFtdcUserRightField = {
2722
+ "BrokerID": "string",
2723
+ "UserID": "string",
2724
+ "UserRightType": "char",
2725
+ "IsForbidden": "int",
2726
+ }
2727
+
2728
+ CThostFtdcQrySettlementInfoConfirmField = {
2729
+ "BrokerID": "string",
2730
+ "InvestorID": "string",
2731
+ }
2732
+
2733
+ CThostFtdcLoadSettlementInfoField = {
2734
+ "BrokerID": "string",
2735
+ }
2736
+
2737
+ CThostFtdcBrokerWithdrawAlgorithmField = {
2738
+ "BrokerID": "string",
2739
+ "WithdrawAlgorithm": "char",
2740
+ "UsingRatio": "double",
2741
+ "IncludeCloseProfit": "char",
2742
+ "AllWithoutTrade": "char",
2743
+ "AvailIncludeCloseProfit": "char",
2744
+ "IsBrokerUserEvent": "int",
2745
+ "CurrencyID": "string",
2746
+ "FundMortgageRatio": "double",
2747
+ "BalanceAlgorithm": "char",
2748
+ }
2749
+
2750
+ CThostFtdcTradingAccountPasswordUpdateV1Field = {
2751
+ "BrokerID": "string",
2752
+ "InvestorID": "string",
2753
+ "OldPassword": "string",
2754
+ "NewPassword": "string",
2755
+ }
2756
+
2757
+ CThostFtdcTradingAccountPasswordUpdateField = {
2758
+ "BrokerID": "string",
2759
+ "AccountID": "string",
2760
+ "OldPassword": "string",
2761
+ "NewPassword": "string",
2762
+ "CurrencyID": "string",
2763
+ }
2764
+
2765
+ CThostFtdcQryCombinationLegField = {
2766
+ "CombInstrumentID": "string",
2767
+ "LegID": "int",
2768
+ "LegInstrumentID": "string",
2769
+ }
2770
+
2771
+ CThostFtdcQrySyncStatusField = {
2772
+ "TradingDay": "string",
2773
+ }
2774
+
2775
+ CThostFtdcCombinationLegField = {
2776
+ "CombInstrumentID": "string",
2777
+ "LegID": "int",
2778
+ "LegInstrumentID": "string",
2779
+ "Direction": "char",
2780
+ "LegMultiple": "int",
2781
+ "ImplyLevel": "int",
2782
+ }
2783
+
2784
+ CThostFtdcSyncStatusField = {
2785
+ "TradingDay": "string",
2786
+ "DataSyncStatus": "char",
2787
+ }
2788
+
2789
+ CThostFtdcQryLinkManField = {
2790
+ "BrokerID": "string",
2791
+ "InvestorID": "string",
2792
+ }
2793
+
2794
+ CThostFtdcLinkManField = {
2795
+ "BrokerID": "string",
2796
+ "InvestorID": "string",
2797
+ "PersonType": "char",
2798
+ "IdentifiedCardType": "char",
2799
+ "IdentifiedCardNo": "string",
2800
+ "PersonName": "string",
2801
+ "Telephone": "string",
2802
+ "Address": "string",
2803
+ "ZipCode": "string",
2804
+ "Priority": "int",
2805
+ "UOAZipCode": "string",
2806
+ "PersonFullName": "string",
2807
+ }
2808
+
2809
+ CThostFtdcQryBrokerUserEventField = {
2810
+ "BrokerID": "string",
2811
+ "UserID": "string",
2812
+ "UserEventType": "char",
2813
+ }
2814
+
2815
+ CThostFtdcBrokerUserEventField = {
2816
+ "BrokerID": "string",
2817
+ "UserID": "string",
2818
+ "UserEventType": "char",
2819
+ "EventSequenceNo": "int",
2820
+ "EventDate": "string",
2821
+ "EventTime": "string",
2822
+ "UserEventInfo": "string",
2823
+ "InvestorID": "string",
2824
+ "InstrumentID": "string",
2825
+ }
2826
+
2827
+ CThostFtdcQryContractBankField = {
2828
+ "BrokerID": "string",
2829
+ "BankID": "string",
2830
+ "BankBrchID": "string",
2831
+ }
2832
+
2833
+ CThostFtdcContractBankField = {
2834
+ "BrokerID": "string",
2835
+ "BankID": "string",
2836
+ "BankBrchID": "string",
2837
+ "BankName": "string",
2838
+ }
2839
+
2840
+ CThostFtdcInvestorPositionCombineDetailField = {
2841
+ "TradingDay": "string",
2842
+ "OpenDate": "string",
2843
+ "ExchangeID": "string",
2844
+ "SettlementID": "int",
2845
+ "BrokerID": "string",
2846
+ "InvestorID": "string",
2847
+ "ComTradeID": "string",
2848
+ "TradeID": "string",
2849
+ "InstrumentID": "string",
2850
+ "HedgeFlag": "char",
2851
+ "Direction": "char",
2852
+ "TotalAmt": "int",
2853
+ "Margin": "double",
2854
+ "ExchMargin": "double",
2855
+ "MarginRateByMoney": "double",
2856
+ "MarginRateByVolume": "double",
2857
+ "LegID": "int",
2858
+ "LegMultiple": "int",
2859
+ "CombInstrumentID": "string",
2860
+ "TradeGroupID": "int",
2861
+ }
2862
+
2863
+ CThostFtdcParkedOrderField = {
2864
+ "BrokerID": "string",
2865
+ "InvestorID": "string",
2866
+ "InstrumentID": "string",
2867
+ "OrderRef": "string",
2868
+ "UserID": "string",
2869
+ "OrderPriceType": "char",
2870
+ "Direction": "char",
2871
+ "CombOffsetFlag": "string",
2872
+ "CombHedgeFlag": "string",
2873
+ "LimitPrice": "double",
2874
+ "VolumeTotalOriginal": "int",
2875
+ "TimeCondition": "char",
2876
+ "GTDDate": "string",
2877
+ "VolumeCondition": "char",
2878
+ "MinVolume": "int",
2879
+ "ContingentCondition": "char",
2880
+ "StopPrice": "double",
2881
+ "ForceCloseReason": "char",
2882
+ "IsAutoSuspend": "int",
2883
+ "BusinessUnit": "string",
2884
+ "RequestID": "int",
2885
+ "UserForceClose": "int",
2886
+ "ExchangeID": "string",
2887
+ "ParkedOrderID": "string",
2888
+ "UserType": "char",
2889
+ "Status": "char",
2890
+ "ErrorID": "int",
2891
+ "ErrorMsg": "string",
2892
+ "IsSwapOrder": "int",
2893
+ "AccountID": "string",
2894
+ "CurrencyID": "string",
2895
+ "ClientID": "string",
2896
+ "InvestUnitID": "string",
2897
+ "IPAddress": "string",
2898
+ "MacAddress": "string",
2899
+ }
2900
+
2901
+ CThostFtdcParkedOrderActionField = {
2902
+ "BrokerID": "string",
2903
+ "InvestorID": "string",
2904
+ "OrderActionRef": "int",
2905
+ "OrderRef": "string",
2906
+ "RequestID": "int",
2907
+ "FrontID": "int",
2908
+ "SessionID": "int",
2909
+ "ExchangeID": "string",
2910
+ "OrderSysID": "string",
2911
+ "ActionFlag": "char",
2912
+ "LimitPrice": "double",
2913
+ "VolumeChange": "int",
2914
+ "UserID": "string",
2915
+ "InstrumentID": "string",
2916
+ "ParkedOrderActionID": "string",
2917
+ "UserType": "char",
2918
+ "Status": "char",
2919
+ "ErrorID": "int",
2920
+ "ErrorMsg": "string",
2921
+ "InvestUnitID": "string",
2922
+ "IPAddress": "string",
2923
+ "MacAddress": "string",
2924
+ }
2925
+
2926
+ CThostFtdcQryParkedOrderField = {
2927
+ "BrokerID": "string",
2928
+ "InvestorID": "string",
2929
+ "InstrumentID": "string",
2930
+ "ExchangeID": "string",
2931
+ }
2932
+
2933
+ CThostFtdcQryParkedOrderActionField = {
2934
+ "BrokerID": "string",
2935
+ "InvestorID": "string",
2936
+ "InstrumentID": "string",
2937
+ "ExchangeID": "string",
2938
+ }
2939
+
2940
+ CThostFtdcRemoveParkedOrderField = {
2941
+ "BrokerID": "string",
2942
+ "InvestorID": "string",
2943
+ "ParkedOrderID": "string",
2944
+ }
2945
+
2946
+ CThostFtdcRemoveParkedOrderActionField = {
2947
+ "BrokerID": "string",
2948
+ "InvestorID": "string",
2949
+ "ParkedOrderActionID": "string",
2950
+ }
2951
+
2952
+ CThostFtdcInvestorWithdrawAlgorithmField = {
2953
+ "BrokerID": "string",
2954
+ "InvestorRange": "char",
2955
+ "InvestorID": "string",
2956
+ "UsingRatio": "double",
2957
+ "CurrencyID": "string",
2958
+ "FundMortgageRatio": "double",
2959
+ }
2960
+
2961
+ CThostFtdcQryInvestorPositionCombineDetailField = {
2962
+ "BrokerID": "string",
2963
+ "InvestorID": "string",
2964
+ "CombInstrumentID": "string",
2965
+ }
2966
+
2967
+ CThostFtdcMarketDataAveragePriceField = {
2968
+ "AveragePrice": "double",
2969
+ }
2970
+
2971
+ CThostFtdcVerifyInvestorPasswordField = {
2972
+ "BrokerID": "string",
2973
+ "InvestorID": "string",
2974
+ "Password": "string",
2975
+ }
2976
+
2977
+ CThostFtdcUserIPField = {
2978
+ "BrokerID": "string",
2979
+ "UserID": "string",
2980
+ "IPAddress": "string",
2981
+ "IPMask": "string",
2982
+ "MacAddress": "string",
2983
+ }
2984
+
2985
+ CThostFtdcTradingNoticeInfoField = {
2986
+ "BrokerID": "string",
2987
+ "InvestorID": "string",
2988
+ "SendTime": "string",
2989
+ "FieldContent": "string",
2990
+ "SequenceSeries": "int",
2991
+ "SequenceNo": "int",
2992
+ }
2993
+
2994
+ CThostFtdcTradingNoticeField = {
2995
+ "BrokerID": "string",
2996
+ "InvestorRange": "char",
2997
+ "InvestorID": "string",
2998
+ "SequenceSeries": "int",
2999
+ "UserID": "string",
3000
+ "SendTime": "string",
3001
+ "SequenceNo": "int",
3002
+ "FieldContent": "string",
3003
+ }
3004
+
3005
+ CThostFtdcQryTradingNoticeField = {
3006
+ "BrokerID": "string",
3007
+ "InvestorID": "string",
3008
+ }
3009
+
3010
+ CThostFtdcQryErrOrderField = {
3011
+ "BrokerID": "string",
3012
+ "InvestorID": "string",
3013
+ }
3014
+
3015
+ CThostFtdcErrOrderField = {
3016
+ "BrokerID": "string",
3017
+ "InvestorID": "string",
3018
+ "InstrumentID": "string",
3019
+ "OrderRef": "string",
3020
+ "UserID": "string",
3021
+ "OrderPriceType": "char",
3022
+ "Direction": "char",
3023
+ "CombOffsetFlag": "string",
3024
+ "CombHedgeFlag": "string",
3025
+ "LimitPrice": "double",
3026
+ "VolumeTotalOriginal": "int",
3027
+ "TimeCondition": "char",
3028
+ "GTDDate": "string",
3029
+ "VolumeCondition": "char",
3030
+ "MinVolume": "int",
3031
+ "ContingentCondition": "char",
3032
+ "StopPrice": "double",
3033
+ "ForceCloseReason": "char",
3034
+ "IsAutoSuspend": "int",
3035
+ "BusinessUnit": "string",
3036
+ "RequestID": "int",
3037
+ "UserForceClose": "int",
3038
+ "ErrorID": "int",
3039
+ "ErrorMsg": "string",
3040
+ "IsSwapOrder": "int",
3041
+ "ExchangeID": "string",
3042
+ "InvestUnitID": "string",
3043
+ "AccountID": "string",
3044
+ "CurrencyID": "string",
3045
+ "ClientID": "string",
3046
+ "IPAddress": "string",
3047
+ "MacAddress": "string",
3048
+ }
3049
+
3050
+ CThostFtdcErrorConditionalOrderField = {
3051
+ "BrokerID": "string",
3052
+ "InvestorID": "string",
3053
+ "InstrumentID": "string",
3054
+ "OrderRef": "string",
3055
+ "UserID": "string",
3056
+ "OrderPriceType": "char",
3057
+ "Direction": "char",
3058
+ "CombOffsetFlag": "string",
3059
+ "CombHedgeFlag": "string",
3060
+ "LimitPrice": "double",
3061
+ "VolumeTotalOriginal": "int",
3062
+ "TimeCondition": "char",
3063
+ "GTDDate": "string",
3064
+ "VolumeCondition": "char",
3065
+ "MinVolume": "int",
3066
+ "ContingentCondition": "char",
3067
+ "StopPrice": "double",
3068
+ "ForceCloseReason": "char",
3069
+ "IsAutoSuspend": "int",
3070
+ "BusinessUnit": "string",
3071
+ "RequestID": "int",
3072
+ "OrderLocalID": "string",
3073
+ "ExchangeID": "string",
3074
+ "ParticipantID": "string",
3075
+ "ClientID": "string",
3076
+ "ExchangeInstID": "string",
3077
+ "TraderID": "string",
3078
+ "InstallID": "int",
3079
+ "OrderSubmitStatus": "char",
3080
+ "NotifySequence": "int",
3081
+ "TradingDay": "string",
3082
+ "SettlementID": "int",
3083
+ "OrderSysID": "string",
3084
+ "OrderSource": "char",
3085
+ "OrderStatus": "char",
3086
+ "OrderType": "char",
3087
+ "VolumeTraded": "int",
3088
+ "VolumeTotal": "int",
3089
+ "InsertDate": "string",
3090
+ "InsertTime": "string",
3091
+ "ActiveTime": "string",
3092
+ "SuspendTime": "string",
3093
+ "UpdateTime": "string",
3094
+ "CancelTime": "string",
3095
+ "ActiveTraderID": "string",
3096
+ "ClearingPartID": "string",
3097
+ "SequenceNo": "int",
3098
+ "FrontID": "int",
3099
+ "SessionID": "int",
3100
+ "UserProductInfo": "string",
3101
+ "StatusMsg": "string",
3102
+ "UserForceClose": "int",
3103
+ "ActiveUserID": "string",
3104
+ "BrokerOrderSeq": "int",
3105
+ "RelativeOrderSysID": "string",
3106
+ "ZCETotalTradedVolume": "int",
3107
+ "ErrorID": "int",
3108
+ "ErrorMsg": "string",
3109
+ "IsSwapOrder": "int",
3110
+ "BranchID": "string",
3111
+ "InvestUnitID": "string",
3112
+ "AccountID": "string",
3113
+ "CurrencyID": "string",
3114
+ "IPAddress": "string",
3115
+ "MacAddress": "string",
3116
+ }
3117
+
3118
+ CThostFtdcQryErrOrderActionField = {
3119
+ "BrokerID": "string",
3120
+ "InvestorID": "string",
3121
+ }
3122
+
3123
+ CThostFtdcErrOrderActionField = {
3124
+ "BrokerID": "string",
3125
+ "InvestorID": "string",
3126
+ "OrderActionRef": "int",
3127
+ "OrderRef": "string",
3128
+ "RequestID": "int",
3129
+ "FrontID": "int",
3130
+ "SessionID": "int",
3131
+ "ExchangeID": "string",
3132
+ "OrderSysID": "string",
3133
+ "ActionFlag": "char",
3134
+ "LimitPrice": "double",
3135
+ "VolumeChange": "int",
3136
+ "ActionDate": "string",
3137
+ "ActionTime": "string",
3138
+ "TraderID": "string",
3139
+ "InstallID": "int",
3140
+ "OrderLocalID": "string",
3141
+ "ActionLocalID": "string",
3142
+ "ParticipantID": "string",
3143
+ "ClientID": "string",
3144
+ "BusinessUnit": "string",
3145
+ "OrderActionStatus": "char",
3146
+ "UserID": "string",
3147
+ "StatusMsg": "string",
3148
+ "InstrumentID": "string",
3149
+ "BranchID": "string",
3150
+ "InvestUnitID": "string",
3151
+ "IPAddress": "string",
3152
+ "MacAddress": "string",
3153
+ "ErrorID": "int",
3154
+ "ErrorMsg": "string",
3155
+ }
3156
+
3157
+ CThostFtdcQryExchangeSequenceField = {
3158
+ "ExchangeID": "string",
3159
+ }
3160
+
3161
+ CThostFtdcExchangeSequenceField = {
3162
+ "ExchangeID": "string",
3163
+ "SequenceNo": "int",
3164
+ "MarketStatus": "char",
3165
+ }
3166
+
3167
+ CThostFtdcQueryMaxOrderVolumeWithPriceField = {
3168
+ "BrokerID": "string",
3169
+ "InvestorID": "string",
3170
+ "InstrumentID": "string",
3171
+ "Direction": "char",
3172
+ "OffsetFlag": "char",
3173
+ "HedgeFlag": "char",
3174
+ "MaxVolume": "int",
3175
+ "Price": "double",
3176
+ }
3177
+
3178
+ CThostFtdcQryBrokerTradingParamsField = {
3179
+ "BrokerID": "string",
3180
+ "InvestorID": "string",
3181
+ "CurrencyID": "string",
3182
+ }
3183
+
3184
+ CThostFtdcBrokerTradingParamsField = {
3185
+ "BrokerID": "string",
3186
+ "InvestorID": "string",
3187
+ "MarginPriceType": "char",
3188
+ "Algorithm": "char",
3189
+ "AvailIncludeCloseProfit": "char",
3190
+ "CurrencyID": "string",
3191
+ "OptionRoyaltyPriceType": "char",
3192
+ }
3193
+
3194
+ CThostFtdcQryBrokerTradingAlgosField = {
3195
+ "BrokerID": "string",
3196
+ "ExchangeID": "string",
3197
+ "InstrumentID": "string",
3198
+ }
3199
+
3200
+ CThostFtdcBrokerTradingAlgosField = {
3201
+ "BrokerID": "string",
3202
+ "ExchangeID": "string",
3203
+ "InstrumentID": "string",
3204
+ "HandlePositionAlgoID": "char",
3205
+ "FindMarginRateAlgoID": "char",
3206
+ "HandleTradingAccountAlgoID": "char",
3207
+ }
3208
+
3209
+ CThostFtdcQueryBrokerDepositField = {
3210
+ "BrokerID": "string",
3211
+ "ExchangeID": "string",
3212
+ }
3213
+
3214
+ CThostFtdcBrokerDepositField = {
3215
+ "TradingDay": "string",
3216
+ "BrokerID": "string",
3217
+ "ParticipantID": "string",
3218
+ "ExchangeID": "string",
3219
+ "PreBalance": "double",
3220
+ "CurrMargin": "double",
3221
+ "CloseProfit": "double",
3222
+ "Balance": "double",
3223
+ "Deposit": "double",
3224
+ "Withdraw": "double",
3225
+ "Available": "double",
3226
+ "Reserve": "double",
3227
+ "FrozenMargin": "double",
3228
+ }
3229
+
3230
+ CThostFtdcQryCFMMCBrokerKeyField = {
3231
+ "BrokerID": "string",
3232
+ }
3233
+
3234
+ CThostFtdcCFMMCBrokerKeyField = {
3235
+ "BrokerID": "string",
3236
+ "ParticipantID": "string",
3237
+ "CreateDate": "string",
3238
+ "CreateTime": "string",
3239
+ "KeyID": "int",
3240
+ "CurrentKey": "string",
3241
+ "KeyKind": "char",
3242
+ }
3243
+
3244
+ CThostFtdcCFMMCTradingAccountKeyField = {
3245
+ "BrokerID": "string",
3246
+ "ParticipantID": "string",
3247
+ "AccountID": "string",
3248
+ "KeyID": "int",
3249
+ "CurrentKey": "string",
3250
+ }
3251
+
3252
+ CThostFtdcQryCFMMCTradingAccountKeyField = {
3253
+ "BrokerID": "string",
3254
+ "InvestorID": "string",
3255
+ }
3256
+
3257
+ CThostFtdcBrokerUserOTPParamField = {
3258
+ "BrokerID": "string",
3259
+ "UserID": "string",
3260
+ "OTPVendorsID": "string",
3261
+ "SerialNumber": "string",
3262
+ "AuthKey": "string",
3263
+ "LastDrift": "int",
3264
+ "LastSuccess": "int",
3265
+ "OTPType": "char",
3266
+ }
3267
+
3268
+ CThostFtdcManualSyncBrokerUserOTPField = {
3269
+ "BrokerID": "string",
3270
+ "UserID": "string",
3271
+ "OTPType": "char",
3272
+ "FirstOTP": "string",
3273
+ "SecondOTP": "string",
3274
+ }
3275
+
3276
+ CThostFtdcCommRateModelField = {
3277
+ "BrokerID": "string",
3278
+ "CommModelID": "string",
3279
+ "CommModelName": "string",
3280
+ }
3281
+
3282
+ CThostFtdcQryCommRateModelField = {
3283
+ "BrokerID": "string",
3284
+ "CommModelID": "string",
3285
+ }
3286
+
3287
+ CThostFtdcMarginModelField = {
3288
+ "BrokerID": "string",
3289
+ "MarginModelID": "string",
3290
+ "MarginModelName": "string",
3291
+ }
3292
+
3293
+ CThostFtdcQryMarginModelField = {
3294
+ "BrokerID": "string",
3295
+ "MarginModelID": "string",
3296
+ }
3297
+
3298
+ CThostFtdcEWarrantOffsetField = {
3299
+ "TradingDay": "string",
3300
+ "BrokerID": "string",
3301
+ "InvestorID": "string",
3302
+ "ExchangeID": "string",
3303
+ "InstrumentID": "string",
3304
+ "Direction": "char",
3305
+ "HedgeFlag": "char",
3306
+ "Volume": "int",
3307
+ }
3308
+
3309
+ CThostFtdcQryEWarrantOffsetField = {
3310
+ "BrokerID": "string",
3311
+ "InvestorID": "string",
3312
+ "ExchangeID": "string",
3313
+ "InstrumentID": "string",
3314
+ }
3315
+
3316
+ CThostFtdcQryInvestorProductGroupMarginField = {
3317
+ "BrokerID": "string",
3318
+ "InvestorID": "string",
3319
+ "ProductGroupID": "string",
3320
+ "HedgeFlag": "char",
3321
+ }
3322
+
3323
+ CThostFtdcInvestorProductGroupMarginField = {
3324
+ "ProductGroupID": "string",
3325
+ "BrokerID": "string",
3326
+ "InvestorID": "string",
3327
+ "TradingDay": "string",
3328
+ "SettlementID": "int",
3329
+ "FrozenMargin": "double",
3330
+ "LongFrozenMargin": "double",
3331
+ "ShortFrozenMargin": "double",
3332
+ "UseMargin": "double",
3333
+ "LongUseMargin": "double",
3334
+ "ShortUseMargin": "double",
3335
+ "ExchMargin": "double",
3336
+ "LongExchMargin": "double",
3337
+ "ShortExchMargin": "double",
3338
+ "CloseProfit": "double",
3339
+ "FrozenCommission": "double",
3340
+ "Commission": "double",
3341
+ "FrozenCash": "double",
3342
+ "CashIn": "double",
3343
+ "PositionProfit": "double",
3344
+ "OffsetAmount": "double",
3345
+ "LongOffsetAmount": "double",
3346
+ "ShortOffsetAmount": "double",
3347
+ "ExchOffsetAmount": "double",
3348
+ "LongExchOffsetAmount": "double",
3349
+ "ShortExchOffsetAmount": "double",
3350
+ "HedgeFlag": "char",
3351
+ }
3352
+
3353
+ CThostFtdcQueryCFMMCTradingAccountTokenField = {
3354
+ "BrokerID": "string",
3355
+ "InvestorID": "string",
3356
+ }
3357
+
3358
+ CThostFtdcCFMMCTradingAccountTokenField = {
3359
+ "BrokerID": "string",
3360
+ "ParticipantID": "string",
3361
+ "AccountID": "string",
3362
+ "KeyID": "int",
3363
+ "Token": "string",
3364
+ }
3365
+
3366
+ CThostFtdcQryProductGroupField = {
3367
+ "ProductID": "string",
3368
+ "ExchangeID": "string",
3369
+ }
3370
+
3371
+ CThostFtdcProductGroupField = {
3372
+ "ProductID": "string",
3373
+ "ExchangeID": "string",
3374
+ "ProductGroupID": "string",
3375
+ }
3376
+
3377
+ CThostFtdcBulletinField = {
3378
+ "ExchangeID": "string",
3379
+ "TradingDay": "string",
3380
+ "BulletinID": "int",
3381
+ "SequenceNo": "int",
3382
+ "NewsType": "string",
3383
+ "NewsUrgency": "char",
3384
+ "SendTime": "string",
3385
+ "Abstract": "string",
3386
+ "ComeFrom": "string",
3387
+ "Content": "string",
3388
+ "URLLink": "string",
3389
+ "MarketID": "string",
3390
+ }
3391
+
3392
+ CThostFtdcQryBulletinField = {
3393
+ "ExchangeID": "string",
3394
+ "BulletinID": "int",
3395
+ "SequenceNo": "int",
3396
+ "NewsType": "string",
3397
+ "NewsUrgency": "char",
3398
+ }
3399
+
3400
+ CThostFtdcReqOpenAccountField = {
3401
+ "TradeCode": "string",
3402
+ "BankID": "string",
3403
+ "BankBranchID": "string",
3404
+ "BrokerID": "string",
3405
+ "BrokerBranchID": "string",
3406
+ "TradeDate": "string",
3407
+ "TradeTime": "string",
3408
+ "BankSerial": "string",
3409
+ "TradingDay": "string",
3410
+ "PlateSerial": "int",
3411
+ "LastFragment": "char",
3412
+ "SessionID": "int",
3413
+ "CustomerName": "string",
3414
+ "IdCardType": "char",
3415
+ "IdentifiedCardNo": "string",
3416
+ "Gender": "char",
3417
+ "CountryCode": "string",
3418
+ "CustType": "char",
3419
+ "Address": "string",
3420
+ "ZipCode": "string",
3421
+ "Telephone": "string",
3422
+ "MobilePhone": "string",
3423
+ "Fax": "string",
3424
+ "EMail": "string",
3425
+ "MoneyAccountStatus": "char",
3426
+ "BankAccount": "string",
3427
+ "BankPassWord": "string",
3428
+ "AccountID": "string",
3429
+ "Password": "string",
3430
+ "InstallID": "int",
3431
+ "VerifyCertNoFlag": "char",
3432
+ "CurrencyID": "string",
3433
+ "CashExchangeCode": "char",
3434
+ "Digest": "string",
3435
+ "BankAccType": "char",
3436
+ "DeviceID": "string",
3437
+ "BankSecuAccType": "char",
3438
+ "BrokerIDByBank": "string",
3439
+ "BankSecuAcc": "string",
3440
+ "BankPwdFlag": "char",
3441
+ "SecuPwdFlag": "char",
3442
+ "OperNo": "string",
3443
+ "TID": "int",
3444
+ "UserID": "string",
3445
+ }
3446
+
3447
+ CThostFtdcReqCancelAccountField = {
3448
+ "TradeCode": "string",
3449
+ "BankID": "string",
3450
+ "BankBranchID": "string",
3451
+ "BrokerID": "string",
3452
+ "BrokerBranchID": "string",
3453
+ "TradeDate": "string",
3454
+ "TradeTime": "string",
3455
+ "BankSerial": "string",
3456
+ "TradingDay": "string",
3457
+ "PlateSerial": "int",
3458
+ "LastFragment": "char",
3459
+ "SessionID": "int",
3460
+ "CustomerName": "string",
3461
+ "IdCardType": "char",
3462
+ "IdentifiedCardNo": "string",
3463
+ "Gender": "char",
3464
+ "CountryCode": "string",
3465
+ "CustType": "char",
3466
+ "Address": "string",
3467
+ "ZipCode": "string",
3468
+ "Telephone": "string",
3469
+ "MobilePhone": "string",
3470
+ "Fax": "string",
3471
+ "EMail": "string",
3472
+ "MoneyAccountStatus": "char",
3473
+ "BankAccount": "string",
3474
+ "BankPassWord": "string",
3475
+ "AccountID": "string",
3476
+ "Password": "string",
3477
+ "InstallID": "int",
3478
+ "VerifyCertNoFlag": "char",
3479
+ "CurrencyID": "string",
3480
+ "CashExchangeCode": "char",
3481
+ "Digest": "string",
3482
+ "BankAccType": "char",
3483
+ "DeviceID": "string",
3484
+ "BankSecuAccType": "char",
3485
+ "BrokerIDByBank": "string",
3486
+ "BankSecuAcc": "string",
3487
+ "BankPwdFlag": "char",
3488
+ "SecuPwdFlag": "char",
3489
+ "OperNo": "string",
3490
+ "TID": "int",
3491
+ "UserID": "string",
3492
+ }
3493
+
3494
+ CThostFtdcReqChangeAccountField = {
3495
+ "TradeCode": "string",
3496
+ "BankID": "string",
3497
+ "BankBranchID": "string",
3498
+ "BrokerID": "string",
3499
+ "BrokerBranchID": "string",
3500
+ "TradeDate": "string",
3501
+ "TradeTime": "string",
3502
+ "BankSerial": "string",
3503
+ "TradingDay": "string",
3504
+ "PlateSerial": "int",
3505
+ "LastFragment": "char",
3506
+ "SessionID": "int",
3507
+ "CustomerName": "string",
3508
+ "IdCardType": "char",
3509
+ "IdentifiedCardNo": "string",
3510
+ "Gender": "char",
3511
+ "CountryCode": "string",
3512
+ "CustType": "char",
3513
+ "Address": "string",
3514
+ "ZipCode": "string",
3515
+ "Telephone": "string",
3516
+ "MobilePhone": "string",
3517
+ "Fax": "string",
3518
+ "EMail": "string",
3519
+ "MoneyAccountStatus": "char",
3520
+ "BankAccount": "string",
3521
+ "BankPassWord": "string",
3522
+ "NewBankAccount": "string",
3523
+ "NewBankPassWord": "string",
3524
+ "AccountID": "string",
3525
+ "Password": "string",
3526
+ "BankAccType": "char",
3527
+ "InstallID": "int",
3528
+ "VerifyCertNoFlag": "char",
3529
+ "CurrencyID": "string",
3530
+ "BrokerIDByBank": "string",
3531
+ "BankPwdFlag": "char",
3532
+ "SecuPwdFlag": "char",
3533
+ "TID": "int",
3534
+ "Digest": "string",
3535
+ }
3536
+
3537
+ CThostFtdcReqTransferField = {
3538
+ "TradeCode": "string",
3539
+ "BankID": "string",
3540
+ "BankBranchID": "string",
3541
+ "BrokerID": "string",
3542
+ "BrokerBranchID": "string",
3543
+ "TradeDate": "string",
3544
+ "TradeTime": "string",
3545
+ "BankSerial": "string",
3546
+ "TradingDay": "string",
3547
+ "PlateSerial": "int",
3548
+ "LastFragment": "char",
3549
+ "SessionID": "int",
3550
+ "CustomerName": "string",
3551
+ "IdCardType": "char",
3552
+ "IdentifiedCardNo": "string",
3553
+ "CustType": "char",
3554
+ "BankAccount": "string",
3555
+ "BankPassWord": "string",
3556
+ "AccountID": "string",
3557
+ "Password": "string",
3558
+ "InstallID": "int",
3559
+ "FutureSerial": "int",
3560
+ "UserID": "string",
3561
+ "VerifyCertNoFlag": "char",
3562
+ "CurrencyID": "string",
3563
+ "TradeAmount": "double",
3564
+ "FutureFetchAmount": "double",
3565
+ "FeePayFlag": "char",
3566
+ "CustFee": "double",
3567
+ "BrokerFee": "double",
3568
+ "Message": "string",
3569
+ "Digest": "string",
3570
+ "BankAccType": "char",
3571
+ "DeviceID": "string",
3572
+ "BankSecuAccType": "char",
3573
+ "BrokerIDByBank": "string",
3574
+ "BankSecuAcc": "string",
3575
+ "BankPwdFlag": "char",
3576
+ "SecuPwdFlag": "char",
3577
+ "OperNo": "string",
3578
+ "RequestID": "int",
3579
+ "TID": "int",
3580
+ "TransferStatus": "char",
3581
+ }
3582
+
3583
+ CThostFtdcRspTransferField = {
3584
+ "TradeCode": "string",
3585
+ "BankID": "string",
3586
+ "BankBranchID": "string",
3587
+ "BrokerID": "string",
3588
+ "BrokerBranchID": "string",
3589
+ "TradeDate": "string",
3590
+ "TradeTime": "string",
3591
+ "BankSerial": "string",
3592
+ "TradingDay": "string",
3593
+ "PlateSerial": "int",
3594
+ "LastFragment": "char",
3595
+ "SessionID": "int",
3596
+ "CustomerName": "string",
3597
+ "IdCardType": "char",
3598
+ "IdentifiedCardNo": "string",
3599
+ "CustType": "char",
3600
+ "BankAccount": "string",
3601
+ "BankPassWord": "string",
3602
+ "AccountID": "string",
3603
+ "Password": "string",
3604
+ "InstallID": "int",
3605
+ "FutureSerial": "int",
3606
+ "UserID": "string",
3607
+ "VerifyCertNoFlag": "char",
3608
+ "CurrencyID": "string",
3609
+ "TradeAmount": "double",
3610
+ "FutureFetchAmount": "double",
3611
+ "FeePayFlag": "char",
3612
+ "CustFee": "double",
3613
+ "BrokerFee": "double",
3614
+ "Message": "string",
3615
+ "Digest": "string",
3616
+ "BankAccType": "char",
3617
+ "DeviceID": "string",
3618
+ "BankSecuAccType": "char",
3619
+ "BrokerIDByBank": "string",
3620
+ "BankSecuAcc": "string",
3621
+ "BankPwdFlag": "char",
3622
+ "SecuPwdFlag": "char",
3623
+ "OperNo": "string",
3624
+ "RequestID": "int",
3625
+ "TID": "int",
3626
+ "TransferStatus": "char",
3627
+ "ErrorID": "int",
3628
+ "ErrorMsg": "string",
3629
+ }
3630
+
3631
+ CThostFtdcReqRepealField = {
3632
+ "RepealTimeInterval": "int",
3633
+ "RepealedTimes": "int",
3634
+ "BankRepealFlag": "char",
3635
+ "BrokerRepealFlag": "char",
3636
+ "PlateRepealSerial": "int",
3637
+ "BankRepealSerial": "string",
3638
+ "FutureRepealSerial": "int",
3639
+ "TradeCode": "string",
3640
+ "BankID": "string",
3641
+ "BankBranchID": "string",
3642
+ "BrokerID": "string",
3643
+ "BrokerBranchID": "string",
3644
+ "TradeDate": "string",
3645
+ "TradeTime": "string",
3646
+ "BankSerial": "string",
3647
+ "TradingDay": "string",
3648
+ "PlateSerial": "int",
3649
+ "LastFragment": "char",
3650
+ "SessionID": "int",
3651
+ "CustomerName": "string",
3652
+ "IdCardType": "char",
3653
+ "IdentifiedCardNo": "string",
3654
+ "CustType": "char",
3655
+ "BankAccount": "string",
3656
+ "BankPassWord": "string",
3657
+ "AccountID": "string",
3658
+ "Password": "string",
3659
+ "InstallID": "int",
3660
+ "FutureSerial": "int",
3661
+ "UserID": "string",
3662
+ "VerifyCertNoFlag": "char",
3663
+ "CurrencyID": "string",
3664
+ "TradeAmount": "double",
3665
+ "FutureFetchAmount": "double",
3666
+ "FeePayFlag": "char",
3667
+ "CustFee": "double",
3668
+ "BrokerFee": "double",
3669
+ "Message": "string",
3670
+ "Digest": "string",
3671
+ "BankAccType": "char",
3672
+ "DeviceID": "string",
3673
+ "BankSecuAccType": "char",
3674
+ "BrokerIDByBank": "string",
3675
+ "BankSecuAcc": "string",
3676
+ "BankPwdFlag": "char",
3677
+ "SecuPwdFlag": "char",
3678
+ "OperNo": "string",
3679
+ "RequestID": "int",
3680
+ "TID": "int",
3681
+ "TransferStatus": "char",
3682
+ }
3683
+
3684
+ CThostFtdcRspRepealField = {
3685
+ "RepealTimeInterval": "int",
3686
+ "RepealedTimes": "int",
3687
+ "BankRepealFlag": "char",
3688
+ "BrokerRepealFlag": "char",
3689
+ "PlateRepealSerial": "int",
3690
+ "BankRepealSerial": "string",
3691
+ "FutureRepealSerial": "int",
3692
+ "TradeCode": "string",
3693
+ "BankID": "string",
3694
+ "BankBranchID": "string",
3695
+ "BrokerID": "string",
3696
+ "BrokerBranchID": "string",
3697
+ "TradeDate": "string",
3698
+ "TradeTime": "string",
3699
+ "BankSerial": "string",
3700
+ "TradingDay": "string",
3701
+ "PlateSerial": "int",
3702
+ "LastFragment": "char",
3703
+ "SessionID": "int",
3704
+ "CustomerName": "string",
3705
+ "IdCardType": "char",
3706
+ "IdentifiedCardNo": "string",
3707
+ "CustType": "char",
3708
+ "BankAccount": "string",
3709
+ "BankPassWord": "string",
3710
+ "AccountID": "string",
3711
+ "Password": "string",
3712
+ "InstallID": "int",
3713
+ "FutureSerial": "int",
3714
+ "UserID": "string",
3715
+ "VerifyCertNoFlag": "char",
3716
+ "CurrencyID": "string",
3717
+ "TradeAmount": "double",
3718
+ "FutureFetchAmount": "double",
3719
+ "FeePayFlag": "char",
3720
+ "CustFee": "double",
3721
+ "BrokerFee": "double",
3722
+ "Message": "string",
3723
+ "Digest": "string",
3724
+ "BankAccType": "char",
3725
+ "DeviceID": "string",
3726
+ "BankSecuAccType": "char",
3727
+ "BrokerIDByBank": "string",
3728
+ "BankSecuAcc": "string",
3729
+ "BankPwdFlag": "char",
3730
+ "SecuPwdFlag": "char",
3731
+ "OperNo": "string",
3732
+ "RequestID": "int",
3733
+ "TID": "int",
3734
+ "TransferStatus": "char",
3735
+ "ErrorID": "int",
3736
+ "ErrorMsg": "string",
3737
+ }
3738
+
3739
+ CThostFtdcReqQueryAccountField = {
3740
+ "TradeCode": "string",
3741
+ "BankID": "string",
3742
+ "BankBranchID": "string",
3743
+ "BrokerID": "string",
3744
+ "BrokerBranchID": "string",
3745
+ "TradeDate": "string",
3746
+ "TradeTime": "string",
3747
+ "BankSerial": "string",
3748
+ "TradingDay": "string",
3749
+ "PlateSerial": "int",
3750
+ "LastFragment": "char",
3751
+ "SessionID": "int",
3752
+ "CustomerName": "string",
3753
+ "IdCardType": "char",
3754
+ "IdentifiedCardNo": "string",
3755
+ "CustType": "char",
3756
+ "BankAccount": "string",
3757
+ "BankPassWord": "string",
3758
+ "AccountID": "string",
3759
+ "Password": "string",
3760
+ "FutureSerial": "int",
3761
+ "InstallID": "int",
3762
+ "UserID": "string",
3763
+ "VerifyCertNoFlag": "char",
3764
+ "CurrencyID": "string",
3765
+ "Digest": "string",
3766
+ "BankAccType": "char",
3767
+ "DeviceID": "string",
3768
+ "BankSecuAccType": "char",
3769
+ "BrokerIDByBank": "string",
3770
+ "BankSecuAcc": "string",
3771
+ "BankPwdFlag": "char",
3772
+ "SecuPwdFlag": "char",
3773
+ "OperNo": "string",
3774
+ "RequestID": "int",
3775
+ "TID": "int",
3776
+ }
3777
+
3778
+ CThostFtdcRspQueryAccountField = {
3779
+ "TradeCode": "string",
3780
+ "BankID": "string",
3781
+ "BankBranchID": "string",
3782
+ "BrokerID": "string",
3783
+ "BrokerBranchID": "string",
3784
+ "TradeDate": "string",
3785
+ "TradeTime": "string",
3786
+ "BankSerial": "string",
3787
+ "TradingDay": "string",
3788
+ "PlateSerial": "int",
3789
+ "LastFragment": "char",
3790
+ "SessionID": "int",
3791
+ "CustomerName": "string",
3792
+ "IdCardType": "char",
3793
+ "IdentifiedCardNo": "string",
3794
+ "CustType": "char",
3795
+ "BankAccount": "string",
3796
+ "BankPassWord": "string",
3797
+ "AccountID": "string",
3798
+ "Password": "string",
3799
+ "FutureSerial": "int",
3800
+ "InstallID": "int",
3801
+ "UserID": "string",
3802
+ "VerifyCertNoFlag": "char",
3803
+ "CurrencyID": "string",
3804
+ "Digest": "string",
3805
+ "BankAccType": "char",
3806
+ "DeviceID": "string",
3807
+ "BankSecuAccType": "char",
3808
+ "BrokerIDByBank": "string",
3809
+ "BankSecuAcc": "string",
3810
+ "BankPwdFlag": "char",
3811
+ "SecuPwdFlag": "char",
3812
+ "OperNo": "string",
3813
+ "RequestID": "int",
3814
+ "TID": "int",
3815
+ "BankUseAmount": "double",
3816
+ "BankFetchAmount": "double",
3817
+ }
3818
+
3819
+ CThostFtdcFutureSignIOField = {
3820
+ "TradeCode": "string",
3821
+ "BankID": "string",
3822
+ "BankBranchID": "string",
3823
+ "BrokerID": "string",
3824
+ "BrokerBranchID": "string",
3825
+ "TradeDate": "string",
3826
+ "TradeTime": "string",
3827
+ "BankSerial": "string",
3828
+ "TradingDay": "string",
3829
+ "PlateSerial": "int",
3830
+ "LastFragment": "char",
3831
+ "SessionID": "int",
3832
+ "InstallID": "int",
3833
+ "UserID": "string",
3834
+ "Digest": "string",
3835
+ "CurrencyID": "string",
3836
+ "DeviceID": "string",
3837
+ "BrokerIDByBank": "string",
3838
+ "OperNo": "string",
3839
+ "RequestID": "int",
3840
+ "TID": "int",
3841
+ }
3842
+
3843
+ CThostFtdcRspFutureSignInField = {
3844
+ "TradeCode": "string",
3845
+ "BankID": "string",
3846
+ "BankBranchID": "string",
3847
+ "BrokerID": "string",
3848
+ "BrokerBranchID": "string",
3849
+ "TradeDate": "string",
3850
+ "TradeTime": "string",
3851
+ "BankSerial": "string",
3852
+ "TradingDay": "string",
3853
+ "PlateSerial": "int",
3854
+ "LastFragment": "char",
3855
+ "SessionID": "int",
3856
+ "InstallID": "int",
3857
+ "UserID": "string",
3858
+ "Digest": "string",
3859
+ "CurrencyID": "string",
3860
+ "DeviceID": "string",
3861
+ "BrokerIDByBank": "string",
3862
+ "OperNo": "string",
3863
+ "RequestID": "int",
3864
+ "TID": "int",
3865
+ "ErrorID": "int",
3866
+ "ErrorMsg": "string",
3867
+ "PinKey": "string",
3868
+ "MacKey": "string",
3869
+ }
3870
+
3871
+ CThostFtdcReqFutureSignOutField = {
3872
+ "TradeCode": "string",
3873
+ "BankID": "string",
3874
+ "BankBranchID": "string",
3875
+ "BrokerID": "string",
3876
+ "BrokerBranchID": "string",
3877
+ "TradeDate": "string",
3878
+ "TradeTime": "string",
3879
+ "BankSerial": "string",
3880
+ "TradingDay": "string",
3881
+ "PlateSerial": "int",
3882
+ "LastFragment": "char",
3883
+ "SessionID": "int",
3884
+ "InstallID": "int",
3885
+ "UserID": "string",
3886
+ "Digest": "string",
3887
+ "CurrencyID": "string",
3888
+ "DeviceID": "string",
3889
+ "BrokerIDByBank": "string",
3890
+ "OperNo": "string",
3891
+ "RequestID": "int",
3892
+ "TID": "int",
3893
+ }
3894
+
3895
+ CThostFtdcRspFutureSignOutField = {
3896
+ "TradeCode": "string",
3897
+ "BankID": "string",
3898
+ "BankBranchID": "string",
3899
+ "BrokerID": "string",
3900
+ "BrokerBranchID": "string",
3901
+ "TradeDate": "string",
3902
+ "TradeTime": "string",
3903
+ "BankSerial": "string",
3904
+ "TradingDay": "string",
3905
+ "PlateSerial": "int",
3906
+ "LastFragment": "char",
3907
+ "SessionID": "int",
3908
+ "InstallID": "int",
3909
+ "UserID": "string",
3910
+ "Digest": "string",
3911
+ "CurrencyID": "string",
3912
+ "DeviceID": "string",
3913
+ "BrokerIDByBank": "string",
3914
+ "OperNo": "string",
3915
+ "RequestID": "int",
3916
+ "TID": "int",
3917
+ "ErrorID": "int",
3918
+ "ErrorMsg": "string",
3919
+ }
3920
+
3921
+ CThostFtdcReqQueryTradeResultBySerialField = {
3922
+ "TradeCode": "string",
3923
+ "BankID": "string",
3924
+ "BankBranchID": "string",
3925
+ "BrokerID": "string",
3926
+ "BrokerBranchID": "string",
3927
+ "TradeDate": "string",
3928
+ "TradeTime": "string",
3929
+ "BankSerial": "string",
3930
+ "TradingDay": "string",
3931
+ "PlateSerial": "int",
3932
+ "LastFragment": "char",
3933
+ "SessionID": "int",
3934
+ "Reference": "int",
3935
+ "RefrenceIssureType": "char",
3936
+ "RefrenceIssure": "string",
3937
+ "CustomerName": "string",
3938
+ "IdCardType": "char",
3939
+ "IdentifiedCardNo": "string",
3940
+ "CustType": "char",
3941
+ "BankAccount": "string",
3942
+ "BankPassWord": "string",
3943
+ "AccountID": "string",
3944
+ "Password": "string",
3945
+ "CurrencyID": "string",
3946
+ "TradeAmount": "double",
3947
+ "Digest": "string",
3948
+ }
3949
+
3950
+ CThostFtdcRspQueryTradeResultBySerialField = {
3951
+ "TradeCode": "string",
3952
+ "BankID": "string",
3953
+ "BankBranchID": "string",
3954
+ "BrokerID": "string",
3955
+ "BrokerBranchID": "string",
3956
+ "TradeDate": "string",
3957
+ "TradeTime": "string",
3958
+ "BankSerial": "string",
3959
+ "TradingDay": "string",
3960
+ "PlateSerial": "int",
3961
+ "LastFragment": "char",
3962
+ "SessionID": "int",
3963
+ "ErrorID": "int",
3964
+ "ErrorMsg": "string",
3965
+ "Reference": "int",
3966
+ "RefrenceIssureType": "char",
3967
+ "RefrenceIssure": "string",
3968
+ "OriginReturnCode": "string",
3969
+ "OriginDescrInfoForReturnCode": "string",
3970
+ "BankAccount": "string",
3971
+ "BankPassWord": "string",
3972
+ "AccountID": "string",
3973
+ "Password": "string",
3974
+ "CurrencyID": "string",
3975
+ "TradeAmount": "double",
3976
+ "Digest": "string",
3977
+ }
3978
+
3979
+ CThostFtdcReqDayEndFileReadyField = {
3980
+ "TradeCode": "string",
3981
+ "BankID": "string",
3982
+ "BankBranchID": "string",
3983
+ "BrokerID": "string",
3984
+ "BrokerBranchID": "string",
3985
+ "TradeDate": "string",
3986
+ "TradeTime": "string",
3987
+ "BankSerial": "string",
3988
+ "TradingDay": "string",
3989
+ "PlateSerial": "int",
3990
+ "LastFragment": "char",
3991
+ "SessionID": "int",
3992
+ "FileBusinessCode": "char",
3993
+ "Digest": "string",
3994
+ }
3995
+
3996
+ CThostFtdcReturnResultField = {
3997
+ "ReturnCode": "string",
3998
+ "DescrInfoForReturnCode": "string",
3999
+ }
4000
+
4001
+ CThostFtdcVerifyFuturePasswordField = {
4002
+ "TradeCode": "string",
4003
+ "BankID": "string",
4004
+ "BankBranchID": "string",
4005
+ "BrokerID": "string",
4006
+ "BrokerBranchID": "string",
4007
+ "TradeDate": "string",
4008
+ "TradeTime": "string",
4009
+ "BankSerial": "string",
4010
+ "TradingDay": "string",
4011
+ "PlateSerial": "int",
4012
+ "LastFragment": "char",
4013
+ "SessionID": "int",
4014
+ "AccountID": "string",
4015
+ "Password": "string",
4016
+ "BankAccount": "string",
4017
+ "BankPassWord": "string",
4018
+ "InstallID": "int",
4019
+ "TID": "int",
4020
+ "CurrencyID": "string",
4021
+ }
4022
+
4023
+ CThostFtdcVerifyCustInfoField = {
4024
+ "CustomerName": "string",
4025
+ "IdCardType": "char",
4026
+ "IdentifiedCardNo": "string",
4027
+ "CustType": "char",
4028
+ }
4029
+
4030
+ CThostFtdcVerifyFuturePasswordAndCustInfoField = {
4031
+ "CustomerName": "string",
4032
+ "IdCardType": "char",
4033
+ "IdentifiedCardNo": "string",
4034
+ "CustType": "char",
4035
+ "AccountID": "string",
4036
+ "Password": "string",
4037
+ "CurrencyID": "string",
4038
+ }
4039
+
4040
+ CThostFtdcDepositResultInformField = {
4041
+ "DepositSeqNo": "string",
4042
+ "BrokerID": "string",
4043
+ "InvestorID": "string",
4044
+ "Deposit": "double",
4045
+ "RequestID": "int",
4046
+ "ReturnCode": "string",
4047
+ "DescrInfoForReturnCode": "string",
4048
+ }
4049
+
4050
+ CThostFtdcReqSyncKeyField = {
4051
+ "TradeCode": "string",
4052
+ "BankID": "string",
4053
+ "BankBranchID": "string",
4054
+ "BrokerID": "string",
4055
+ "BrokerBranchID": "string",
4056
+ "TradeDate": "string",
4057
+ "TradeTime": "string",
4058
+ "BankSerial": "string",
4059
+ "TradingDay": "string",
4060
+ "PlateSerial": "int",
4061
+ "LastFragment": "char",
4062
+ "SessionID": "int",
4063
+ "InstallID": "int",
4064
+ "UserID": "string",
4065
+ "Message": "string",
4066
+ "DeviceID": "string",
4067
+ "BrokerIDByBank": "string",
4068
+ "OperNo": "string",
4069
+ "RequestID": "int",
4070
+ "TID": "int",
4071
+ }
4072
+
4073
+ CThostFtdcRspSyncKeyField = {
4074
+ "TradeCode": "string",
4075
+ "BankID": "string",
4076
+ "BankBranchID": "string",
4077
+ "BrokerID": "string",
4078
+ "BrokerBranchID": "string",
4079
+ "TradeDate": "string",
4080
+ "TradeTime": "string",
4081
+ "BankSerial": "string",
4082
+ "TradingDay": "string",
4083
+ "PlateSerial": "int",
4084
+ "LastFragment": "char",
4085
+ "SessionID": "int",
4086
+ "InstallID": "int",
4087
+ "UserID": "string",
4088
+ "Message": "string",
4089
+ "DeviceID": "string",
4090
+ "BrokerIDByBank": "string",
4091
+ "OperNo": "string",
4092
+ "RequestID": "int",
4093
+ "TID": "int",
4094
+ "ErrorID": "int",
4095
+ "ErrorMsg": "string",
4096
+ }
4097
+
4098
+ CThostFtdcNotifyQueryAccountField = {
4099
+ "TradeCode": "string",
4100
+ "BankID": "string",
4101
+ "BankBranchID": "string",
4102
+ "BrokerID": "string",
4103
+ "BrokerBranchID": "string",
4104
+ "TradeDate": "string",
4105
+ "TradeTime": "string",
4106
+ "BankSerial": "string",
4107
+ "TradingDay": "string",
4108
+ "PlateSerial": "int",
4109
+ "LastFragment": "char",
4110
+ "SessionID": "int",
4111
+ "CustomerName": "string",
4112
+ "IdCardType": "char",
4113
+ "IdentifiedCardNo": "string",
4114
+ "CustType": "char",
4115
+ "BankAccount": "string",
4116
+ "BankPassWord": "string",
4117
+ "AccountID": "string",
4118
+ "Password": "string",
4119
+ "FutureSerial": "int",
4120
+ "InstallID": "int",
4121
+ "UserID": "string",
4122
+ "VerifyCertNoFlag": "char",
4123
+ "CurrencyID": "string",
4124
+ "Digest": "string",
4125
+ "BankAccType": "char",
4126
+ "DeviceID": "string",
4127
+ "BankSecuAccType": "char",
4128
+ "BrokerIDByBank": "string",
4129
+ "BankSecuAcc": "string",
4130
+ "BankPwdFlag": "char",
4131
+ "SecuPwdFlag": "char",
4132
+ "OperNo": "string",
4133
+ "RequestID": "int",
4134
+ "TID": "int",
4135
+ "BankUseAmount": "double",
4136
+ "BankFetchAmount": "double",
4137
+ "ErrorID": "int",
4138
+ "ErrorMsg": "string",
4139
+ }
4140
+
4141
+ CThostFtdcTransferSerialField = {
4142
+ "PlateSerial": "int",
4143
+ "TradeDate": "string",
4144
+ "TradingDay": "string",
4145
+ "TradeTime": "string",
4146
+ "TradeCode": "string",
4147
+ "SessionID": "int",
4148
+ "BankID": "string",
4149
+ "BankBranchID": "string",
4150
+ "BankAccType": "char",
4151
+ "BankAccount": "string",
4152
+ "BankSerial": "string",
4153
+ "BrokerID": "string",
4154
+ "BrokerBranchID": "string",
4155
+ "FutureAccType": "char",
4156
+ "AccountID": "string",
4157
+ "InvestorID": "string",
4158
+ "FutureSerial": "int",
4159
+ "IdCardType": "char",
4160
+ "IdentifiedCardNo": "string",
4161
+ "CurrencyID": "string",
4162
+ "TradeAmount": "double",
4163
+ "CustFee": "double",
4164
+ "BrokerFee": "double",
4165
+ "AvailabilityFlag": "char",
4166
+ "OperatorCode": "string",
4167
+ "BankNewAccount": "string",
4168
+ "ErrorID": "int",
4169
+ "ErrorMsg": "string",
4170
+ }
4171
+
4172
+ CThostFtdcQryTransferSerialField = {
4173
+ "BrokerID": "string",
4174
+ "AccountID": "string",
4175
+ "BankID": "string",
4176
+ "CurrencyID": "string",
4177
+ }
4178
+
4179
+ CThostFtdcNotifyFutureSignInField = {
4180
+ "TradeCode": "string",
4181
+ "BankID": "string",
4182
+ "BankBranchID": "string",
4183
+ "BrokerID": "string",
4184
+ "BrokerBranchID": "string",
4185
+ "TradeDate": "string",
4186
+ "TradeTime": "string",
4187
+ "BankSerial": "string",
4188
+ "TradingDay": "string",
4189
+ "PlateSerial": "int",
4190
+ "LastFragment": "char",
4191
+ "SessionID": "int",
4192
+ "InstallID": "int",
4193
+ "UserID": "string",
4194
+ "Digest": "string",
4195
+ "CurrencyID": "string",
4196
+ "DeviceID": "string",
4197
+ "BrokerIDByBank": "string",
4198
+ "OperNo": "string",
4199
+ "RequestID": "int",
4200
+ "TID": "int",
4201
+ "ErrorID": "int",
4202
+ "ErrorMsg": "string",
4203
+ "PinKey": "string",
4204
+ "MacKey": "string",
4205
+ }
4206
+
4207
+ CThostFtdcNotifyFutureSignOutField = {
4208
+ "TradeCode": "string",
4209
+ "BankID": "string",
4210
+ "BankBranchID": "string",
4211
+ "BrokerID": "string",
4212
+ "BrokerBranchID": "string",
4213
+ "TradeDate": "string",
4214
+ "TradeTime": "string",
4215
+ "BankSerial": "string",
4216
+ "TradingDay": "string",
4217
+ "PlateSerial": "int",
4218
+ "LastFragment": "char",
4219
+ "SessionID": "int",
4220
+ "InstallID": "int",
4221
+ "UserID": "string",
4222
+ "Digest": "string",
4223
+ "CurrencyID": "string",
4224
+ "DeviceID": "string",
4225
+ "BrokerIDByBank": "string",
4226
+ "OperNo": "string",
4227
+ "RequestID": "int",
4228
+ "TID": "int",
4229
+ "ErrorID": "int",
4230
+ "ErrorMsg": "string",
4231
+ }
4232
+
4233
+ CThostFtdcNotifySyncKeyField = {
4234
+ "TradeCode": "string",
4235
+ "BankID": "string",
4236
+ "BankBranchID": "string",
4237
+ "BrokerID": "string",
4238
+ "BrokerBranchID": "string",
4239
+ "TradeDate": "string",
4240
+ "TradeTime": "string",
4241
+ "BankSerial": "string",
4242
+ "TradingDay": "string",
4243
+ "PlateSerial": "int",
4244
+ "LastFragment": "char",
4245
+ "SessionID": "int",
4246
+ "InstallID": "int",
4247
+ "UserID": "string",
4248
+ "Message": "string",
4249
+ "DeviceID": "string",
4250
+ "BrokerIDByBank": "string",
4251
+ "OperNo": "string",
4252
+ "RequestID": "int",
4253
+ "TID": "int",
4254
+ "ErrorID": "int",
4255
+ "ErrorMsg": "string",
4256
+ }
4257
+
4258
+ CThostFtdcQryAccountregisterField = {
4259
+ "BrokerID": "string",
4260
+ "AccountID": "string",
4261
+ "BankID": "string",
4262
+ "BankBranchID": "string",
4263
+ "CurrencyID": "string",
4264
+ }
4265
+
4266
+ CThostFtdcAccountregisterField = {
4267
+ "TradeDay": "string",
4268
+ "BankID": "string",
4269
+ "BankBranchID": "string",
4270
+ "BankAccount": "string",
4271
+ "BrokerID": "string",
4272
+ "BrokerBranchID": "string",
4273
+ "AccountID": "string",
4274
+ "IdCardType": "char",
4275
+ "IdentifiedCardNo": "string",
4276
+ "CustomerName": "string",
4277
+ "CurrencyID": "string",
4278
+ "OpenOrDestroy": "char",
4279
+ "RegDate": "string",
4280
+ "OutDate": "string",
4281
+ "TID": "int",
4282
+ "CustType": "char",
4283
+ "BankAccType": "char",
4284
+ }
4285
+
4286
+ CThostFtdcOpenAccountField = {
4287
+ "TradeCode": "string",
4288
+ "BankID": "string",
4289
+ "BankBranchID": "string",
4290
+ "BrokerID": "string",
4291
+ "BrokerBranchID": "string",
4292
+ "TradeDate": "string",
4293
+ "TradeTime": "string",
4294
+ "BankSerial": "string",
4295
+ "TradingDay": "string",
4296
+ "PlateSerial": "int",
4297
+ "LastFragment": "char",
4298
+ "SessionID": "int",
4299
+ "CustomerName": "string",
4300
+ "IdCardType": "char",
4301
+ "IdentifiedCardNo": "string",
4302
+ "Gender": "char",
4303
+ "CountryCode": "string",
4304
+ "CustType": "char",
4305
+ "Address": "string",
4306
+ "ZipCode": "string",
4307
+ "Telephone": "string",
4308
+ "MobilePhone": "string",
4309
+ "Fax": "string",
4310
+ "EMail": "string",
4311
+ "MoneyAccountStatus": "char",
4312
+ "BankAccount": "string",
4313
+ "BankPassWord": "string",
4314
+ "AccountID": "string",
4315
+ "Password": "string",
4316
+ "InstallID": "int",
4317
+ "VerifyCertNoFlag": "char",
4318
+ "CurrencyID": "string",
4319
+ "CashExchangeCode": "char",
4320
+ "Digest": "string",
4321
+ "BankAccType": "char",
4322
+ "DeviceID": "string",
4323
+ "BankSecuAccType": "char",
4324
+ "BrokerIDByBank": "string",
4325
+ "BankSecuAcc": "string",
4326
+ "BankPwdFlag": "char",
4327
+ "SecuPwdFlag": "char",
4328
+ "OperNo": "string",
4329
+ "TID": "int",
4330
+ "UserID": "string",
4331
+ "ErrorID": "int",
4332
+ "ErrorMsg": "string",
4333
+ }
4334
+
4335
+ CThostFtdcCancelAccountField = {
4336
+ "TradeCode": "string",
4337
+ "BankID": "string",
4338
+ "BankBranchID": "string",
4339
+ "BrokerID": "string",
4340
+ "BrokerBranchID": "string",
4341
+ "TradeDate": "string",
4342
+ "TradeTime": "string",
4343
+ "BankSerial": "string",
4344
+ "TradingDay": "string",
4345
+ "PlateSerial": "int",
4346
+ "LastFragment": "char",
4347
+ "SessionID": "int",
4348
+ "CustomerName": "string",
4349
+ "IdCardType": "char",
4350
+ "IdentifiedCardNo": "string",
4351
+ "Gender": "char",
4352
+ "CountryCode": "string",
4353
+ "CustType": "char",
4354
+ "Address": "string",
4355
+ "ZipCode": "string",
4356
+ "Telephone": "string",
4357
+ "MobilePhone": "string",
4358
+ "Fax": "string",
4359
+ "EMail": "string",
4360
+ "MoneyAccountStatus": "char",
4361
+ "BankAccount": "string",
4362
+ "BankPassWord": "string",
4363
+ "AccountID": "string",
4364
+ "Password": "string",
4365
+ "InstallID": "int",
4366
+ "VerifyCertNoFlag": "char",
4367
+ "CurrencyID": "string",
4368
+ "CashExchangeCode": "char",
4369
+ "Digest": "string",
4370
+ "BankAccType": "char",
4371
+ "DeviceID": "string",
4372
+ "BankSecuAccType": "char",
4373
+ "BrokerIDByBank": "string",
4374
+ "BankSecuAcc": "string",
4375
+ "BankPwdFlag": "char",
4376
+ "SecuPwdFlag": "char",
4377
+ "OperNo": "string",
4378
+ "TID": "int",
4379
+ "UserID": "string",
4380
+ "ErrorID": "int",
4381
+ "ErrorMsg": "string",
4382
+ }
4383
+
4384
+ CThostFtdcChangeAccountField = {
4385
+ "TradeCode": "string",
4386
+ "BankID": "string",
4387
+ "BankBranchID": "string",
4388
+ "BrokerID": "string",
4389
+ "BrokerBranchID": "string",
4390
+ "TradeDate": "string",
4391
+ "TradeTime": "string",
4392
+ "BankSerial": "string",
4393
+ "TradingDay": "string",
4394
+ "PlateSerial": "int",
4395
+ "LastFragment": "char",
4396
+ "SessionID": "int",
4397
+ "CustomerName": "string",
4398
+ "IdCardType": "char",
4399
+ "IdentifiedCardNo": "string",
4400
+ "Gender": "char",
4401
+ "CountryCode": "string",
4402
+ "CustType": "char",
4403
+ "Address": "string",
4404
+ "ZipCode": "string",
4405
+ "Telephone": "string",
4406
+ "MobilePhone": "string",
4407
+ "Fax": "string",
4408
+ "EMail": "string",
4409
+ "MoneyAccountStatus": "char",
4410
+ "BankAccount": "string",
4411
+ "BankPassWord": "string",
4412
+ "NewBankAccount": "string",
4413
+ "NewBankPassWord": "string",
4414
+ "AccountID": "string",
4415
+ "Password": "string",
4416
+ "BankAccType": "char",
4417
+ "InstallID": "int",
4418
+ "VerifyCertNoFlag": "char",
4419
+ "CurrencyID": "string",
4420
+ "BrokerIDByBank": "string",
4421
+ "BankPwdFlag": "char",
4422
+ "SecuPwdFlag": "char",
4423
+ "TID": "int",
4424
+ "Digest": "string",
4425
+ "ErrorID": "int",
4426
+ "ErrorMsg": "string",
4427
+ }
4428
+
4429
+ CThostFtdcSecAgentACIDMapField = {
4430
+ "BrokerID": "string",
4431
+ "UserID": "string",
4432
+ "AccountID": "string",
4433
+ "CurrencyID": "string",
4434
+ "BrokerSecAgentID": "string",
4435
+ }
4436
+
4437
+ CThostFtdcQrySecAgentACIDMapField = {
4438
+ "BrokerID": "string",
4439
+ "UserID": "string",
4440
+ "AccountID": "string",
4441
+ "CurrencyID": "string",
4442
+ }
4443
+
4444
+ CThostFtdcUserRightsAssignField = {
4445
+ "BrokerID": "string",
4446
+ "UserID": "string",
4447
+ "DRIdentityID": "int",
4448
+ }
4449
+
4450
+ CThostFtdcBrokerUserRightAssignField = {
4451
+ "BrokerID": "string",
4452
+ "DRIdentityID": "int",
4453
+ "Tradeable": "int",
4454
+ }
4455
+
4456
+ CThostFtdcDRTransferField = {
4457
+ "OrigDRIdentityID": "int",
4458
+ "DestDRIdentityID": "int",
4459
+ "OrigBrokerID": "string",
4460
+ "DestBrokerID": "string",
4461
+ }
4462
+
4463
+ CThostFtdcFensUserInfoField = {
4464
+ "BrokerID": "string",
4465
+ "UserID": "string",
4466
+ "LoginMode": "char",
4467
+ }
4468
+
4469
+ CThostFtdcCurrTransferIdentityField = {
4470
+ "IdentityID": "int",
4471
+ }
4472
+
4473
+ CThostFtdcLoginForbiddenUserField = {
4474
+ "BrokerID": "string",
4475
+ "UserID": "string",
4476
+ "IPAddress": "string",
4477
+ }
4478
+
4479
+ CThostFtdcQryLoginForbiddenUserField = {
4480
+ "BrokerID": "string",
4481
+ "UserID": "string",
4482
+ }
4483
+
4484
+ CThostFtdcMulticastGroupInfoField = {
4485
+ "GroupIP": "string",
4486
+ "GroupPort": "int",
4487
+ "SourceIP": "string",
4488
+ }
4489
+
4490
+ CThostFtdcTradingAccountReserveField = {
4491
+ "BrokerID": "string",
4492
+ "AccountID": "string",
4493
+ "Reserve": "double",
4494
+ "CurrencyID": "string",
4495
+ }
4496
+
4497
+ CThostFtdcReserveOpenAccountConfirmField = {
4498
+ "TradeCode": "string",
4499
+ "BankID": "string",
4500
+ "BankBranchID": "string",
4501
+ "BrokerID": "string",
4502
+ "BrokerBranchID": "string",
4503
+ "TradeDate": "string",
4504
+ "TradeTime": "string",
4505
+ "BankSerial": "string",
4506
+ "TradingDay": "string",
4507
+ "PlateSerial": "int",
4508
+ "LastFragment": "char",
4509
+ "SessionID": "int",
4510
+ "CustomerName": "string",
4511
+ "IdCardType": "char",
4512
+ "IdentifiedCardNo": "string",
4513
+ "Gender": "char",
4514
+ "CountryCode": "string",
4515
+ "CustType": "char",
4516
+ "Address": "string",
4517
+ "ZipCode": "string",
4518
+ "Telephone": "string",
4519
+ "MobilePhone": "string",
4520
+ "Fax": "string",
4521
+ "EMail": "string",
4522
+ "MoneyAccountStatus": "char",
4523
+ "BankAccount": "string",
4524
+ "BankPassWord": "string",
4525
+ "InstallID": "int",
4526
+ "VerifyCertNoFlag": "char",
4527
+ "CurrencyID": "string",
4528
+ "Digest": "string",
4529
+ "BankAccType": "char",
4530
+ "BrokerIDByBank": "string",
4531
+ "TID": "int",
4532
+ "AccountID": "string",
4533
+ "Password": "string",
4534
+ "BankReserveOpenSeq": "string",
4535
+ "BookDate": "string",
4536
+ "BookPsw": "string",
4537
+ "ErrorID": "int",
4538
+ "ErrorMsg": "string",
4539
+ }
4540
+
4541
+ CThostFtdcReserveOpenAccountField = {
4542
+ "TradeCode": "string",
4543
+ "BankID": "string",
4544
+ "BankBranchID": "string",
4545
+ "BrokerID": "string",
4546
+ "BrokerBranchID": "string",
4547
+ "TradeDate": "string",
4548
+ "TradeTime": "string",
4549
+ "BankSerial": "string",
4550
+ "TradingDay": "string",
4551
+ "PlateSerial": "int",
4552
+ "LastFragment": "char",
4553
+ "SessionID": "int",
4554
+ "CustomerName": "string",
4555
+ "IdCardType": "char",
4556
+ "IdentifiedCardNo": "string",
4557
+ "Gender": "char",
4558
+ "CountryCode": "string",
4559
+ "CustType": "char",
4560
+ "Address": "string",
4561
+ "ZipCode": "string",
4562
+ "Telephone": "string",
4563
+ "MobilePhone": "string",
4564
+ "Fax": "string",
4565
+ "EMail": "string",
4566
+ "MoneyAccountStatus": "char",
4567
+ "BankAccount": "string",
4568
+ "BankPassWord": "string",
4569
+ "InstallID": "int",
4570
+ "VerifyCertNoFlag": "char",
4571
+ "CurrencyID": "string",
4572
+ "Digest": "string",
4573
+ "BankAccType": "char",
4574
+ "BrokerIDByBank": "string",
4575
+ "TID": "int",
4576
+ "ReserveOpenAccStas": "char",
4577
+ "ErrorID": "int",
4578
+ "ErrorMsg": "string",
4579
+ }
4580
+
4581
+ CThostFtdcMBLMarketDataField = {
4582
+ "InstrumentID": "string",
4583
+ "ExchangeID": "string",
4584
+ "Direction": "char",
4585
+ "Price": "double",
4586
+ "Volume": "int",
4587
+ }
4588
+
4589
+ CThostFtdcUserSystemInfoField = {
4590
+ "BrokerID": "string",
4591
+ "UserID": "string",
4592
+ "ClientSystemInfoLen": "int",
4593
+ "ClientSystemInfo": "string",
4594
+ "ClientPublicIP": "string",
4595
+ "ClientIPPort": "int",
4596
+ "ClientLoginTime": "string",
4597
+ "ClientAppID": "string",
4598
+ }
4599
+