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