forked from QuantBox/QuantBox_XAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDFITCApiStruct.h
1043 lines (867 loc) · 51 KB
/
DFITCApiStruct.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* 版权所有(C)2012-2016, 大连飞创信息技术有限公司
* 文件名称:DFITCApiStruct.h
* 文件说明:定义接口所需的数据接口
* 当前版本:1.0.13
* 作者:XSpeed项目组
* 发布日期:2014年5月27日
*/
#ifndef DFITCAPISTRUCT_H_
#define DFITCAPISTRUCT_H_
#ifndef DFITCAPIDATATYPE_H
#include "DFITCApiDataType.h"
#endif
#ifdef WIN32
#ifdef DFITCAPI_EXPORTS
#define APISTRUCT __declspec(dllexport)
#else
#define APISTRUCT __declspec(dllimport)
#endif//DFITCAPI_EXPORTS
#else
#define APISTRUCT
#endif//WIN32
///心跳包
struct APISTRUCT DFITCTimeOutField
{
DFITCRequestIDType lRequestID; //请求ID
};
///请求报单数据类型(基本报单)
struct APISTRUCT DFITCInsertOrderField
{
DFITCAccountIDType accountID; //资金账户
DFITCLocalOrderIDType localOrderID; //本地委托号, 由API使用者维护,在同一个会话中不能重复
DFITCInstrumentIDType instrumentID; //合约代码, 支持目前国内4个期货交易所的所有合约,包括大商所/郑商所的套利合约
DFITCPriceType insertPrice; //报单价格, 当报单类型为市价时,该字段不起作用
DFITCAmountType orderAmount; //报单数量
DFITCBuySellTypeType buySellType; //买卖标志
DFITCOpenCloseTypeType openCloseType; //开平标志
DFITCSpeculatorType speculator; //投保类型, 支持投机、套利、套保
DFITCInsertType insertType; //委托类别(默认为普通订单)
DFITCOrderTypeType orderType; //报单类型, 支持限价 、市价;上期所合约不支持市价,均按限价进行处理
DFITCOrderPropertyType orderProperty; //报单附加属性, 支持None、FAK、FOK,目前只有大商所合约支持该报单附加属性 FAK/FOK
DFITCInstrumentTypeType instrumentType; //合约类型, 可选值:期货、期权
DFITCReservedType reservedType1; //预留字段1
DFITCReservedType reservedType2; //预留字段2
DFITCRequestIDType lRequestID; //请求ID
DFITCCustomCategoryType customCategory; //自定义类别
DFITCInsertOrderField();
};
///撤单数据类型
struct APISTRUCT DFITCCancelOrderField
{
DFITCAccountIDType accountID; //资金账户ID
DFITCSPDOrderIDType spdOrderID; //柜台委托号
DFITCLocalOrderIDType localOrderID; //本地委托号
DFITCInstrumentIDType instrumentID; //合约代码
DFITCRequestIDType lRequestID; //请求ID
DFITCCancelOrderField();
};
///委托响应类型
struct APISTRUCT DFITCOrderRspDataRtnField
{
DFITCLocalOrderIDType localOrderID; //本地委托号
DFITCSPDOrderIDType spdOrderID; //柜台委托号
DFITCOrderAnswerStatusType orderStatus; //委托状态
DFITCRequestIDType lRequestID; //请求ID
DFITCPriceType fee; //手续费,该字段仅供下单时使用
DFITCPriceType margin; //冻结保证金,该字段仅供下单时使用
DFITCCustomCategoryType customCategory; //自定义类别
DFITCOrderRspDataRtnField();
};
///查询资金数据类型
struct APISTRUCT DFITCCapitalField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户ID
DFITCCapitalField();
};
///查询持仓数据类型
struct APISTRUCT DFITCPositionField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户ID
DFITCInstrumentIDType instrumentID; //合约代码
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCPositionField();
};
///交易所合约
struct APISTRUCT DFITCExchangeInstrumentField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户ID
DFITCExchangeIDType exchangeID; //交易所编码
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCExchangeInstrumentField();
};
///用户登录数据类型
struct APISTRUCT DFITCUserLoginField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户ID
DFITCPasswdType passwd; //密码
DFITCCompanyIDType companyID; //厂商ID
DFITCUserLoginField();
};
///用户退出类型
struct APISTRUCT DFITCUserLogoutField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金帐号ID
DFITCSessionIDType sessionID; //会话ID
DFITCUserLogoutField();
};
///委托回报
struct APISTRUCT DFITCOrderRtnField
{
DFITCLocalOrderIDType localOrderID; //本地委托号
DFITCSPDOrderIDType spdOrderID; //柜台委托号
DFITCOrderSysIDType OrderSysID; //报单编号
DFITCOrderAnswerStatusType orderStatus; //委托状态
DFITCSessionIDType sessionID; //会话ID
DFITCDateType SuspendTime; //挂起时间
DFITCInstrumentIDType instrumentID; //合约代码
DFITCExchangeIDType exchangeID; //交易所
DFITCBuySellTypeType buySellType; //买卖
DFITCOpenCloseTypeType openCloseType; //开平
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCSpeculatorType speculator; //投资类别
DFITCPriceType insertPrice; //委托价
DFITCAccountIDType accountID; //资金账号
DFITCAmountType cancelAmount; //撤单数量
DFITCAmountType orderAmount; //委托数量
DFITCInsertType insertType; //委托类别
DFITCSPDOrderIDType extSpdOrderID; //算法单编号
DFITCReservedType reservedType2; //预留字段2
DFITCCustomCategoryType customCategory; //自定义类别
DFITCOrderRtnField();
};
///成交回报
struct APISTRUCT DFITCMatchRtnField
{
DFITCLocalOrderIDType localOrderID; //本地委托号
DFITCOrderSysIDType OrderSysID; //报单编号(交易所报单编号)
DFITCMatchIDType matchID; //成交编号
DFITCInstrumentIDType instrumentID; //合约代码
DFITCBuySellTypeType buySellType; //买卖
DFITCOpenCloseTypeType openCloseType; //开平标志
DFITCPriceType matchedPrice; //成交价格
DFITCAmountType orderAmount; //委托数量
DFITCAmountType matchedAmount; //成交数量
DFITCDateType matchedTime; //成交时间
DFITCPriceType insertPrice; //报价
DFITCSPDOrderIDType spdOrderID; //柜台委托号
DFITCMatchType matchType; //成交类型
DFITCSpeculatorType speculator; //投保
DFITCExchangeIDType exchangeID; //交易所ID
DFITCFeeType fee; //手续费
DFITCSessionIDType sessionID; //会话标识
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCAccountIDType accountID; //资金账号
DFITCOrderAnswerStatusType orderStatus; //申报结果
DFITCPriceType margin; //开仓为保证金,平仓为解冻保证金
DFITCPriceType frozenCapita; //成交解冻委托冻结的资金
DFITCAdjustmentInfoType adjustmentInfo; //组合或对锁的保证金调整信息,格式:[合约代码,买卖标志,投资类别,调整金额;]
DFITCCustomCategoryType customCategory; //自定义类别
DFITCPriceType turnover; //成交金额
DFITCMatchRtnField();
};
///撤单回报
struct APISTRUCT DFITCOrderCanceledRtnField
{
DFITCLocalOrderIDType localOrderID; //本地委托号
DFITCOrderSysIDType OrderSysID; //报单编号
DFITCInstrumentIDType instrumentID; //合约代码
DFITCPriceType insertPrice; //报单价格
DFITCBuySellTypeType buySellType; //买卖类型
DFITCOpenCloseTypeType openCloseType; //开平标志
DFITCAmountType cancelAmount; //撤单数量
DFITCSPDOrderIDType spdOrderID; //柜台委托号
DFITCSpeculatorType speculator; //投保
DFITCExchangeIDType exchangeID; //交易所ID
DFITCDateType canceledTime; //撤单时间
DFITCSessionIDType sessionID; //会话标识
DFITCOrderAnswerStatusType orderStatus; //申报结果
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCAccountIDType accountID; //资金账号
DFITCAmountType orderAmount; //委托数量
DFITCPriceType margin; //保证金
DFITCPriceType fee; //手续费
DFITCOrderCanceledRtnField();
};
///错误信息
struct APISTRUCT DFITCErrorRtnField
{
DFITCRequestIDType requestID; //请求ID
DFITCSessionIDType sessionID; //会话标识
DFITCAccountIDType accountID; //资金账号
DFITCErrorIDType nErrorID; //错误ID
DFITCSPDOrderIDType spdOrderID; //柜台委托号
DFITCLocalOrderIDType localOrderID; //本地委托号
DFITCErrorMsgInfoType errorMsg; //错误信息
DFITCErrorRtnField();
};
///返回资金信息
struct APISTRUCT DFITCCapitalInfoRtnField
{
DFITCRequestIDType requestID; //请求ID
DFITCAccountIDType accountID; //资金帐号
DFITCEquityType preEquity; //上日权益
DFITCEquityType todayEquity; //当日客户权益
DFITCProfitLossType closeProfitLoss; //平仓盈亏
DFITCProfitLossType positionProfitLoss; //持仓盈亏
DFITCProfitLossType frozenMargin; //冻结资金
DFITCProfitLossType margin; //持仓保证金
DFITCProfitLossType fee; //当日手续费
DFITCProfitLossType available; //可用资金
DFITCProfitLossType withdraw; //可取资金
DFITCRiskDegreeType riskDegree; //风险度
DFITCPremiumType todayPremiumIncome; //本日权利金收入
DFITCPremiumType todayPremiumPay; //本日权利金付出
DFITCPremiumType yesterdayPremium; //昨权利金收付
DFITCMarketValueType optMarketValue; //期权市值
DFITCProfitLossType floatProfitLoss; //浮动盈亏
DFITCProfitLossType totFundOut; //总出金
DFITCProfitLossType totFundIn; //总入金
DFITCCapitalInfoRtnField();
};
///返回持仓信息
struct APISTRUCT DFITCPositionInfoRtnField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金帐号ID
DFITCExchangeIDType exchangeID; //交易所代码
DFITCInstrumentIDType instrumentID; //合约号
DFITCBuySellTypeType buySellType; //买卖
DFITCPriceType openAvgPrice; //开仓均价
DFITCPriceType positionAvgPrice; //持仓均价
DFITCAmountType positionAmount; //持仓量
DFITCAmountType totalAvaiAmount; //总可用
DFITCAmountType todayAvaiAmount; //今可用
DFITCAmountType lastAvaiAmount; //昨可用
DFITCAmountType todayAmount; //今仓
DFITCAmountType lastAmount; //昨仓
DFITCAmountType tradingAmount; //挂单量
DFITCProfitLossType datePositionProfitLoss; //盯市持仓盈亏
DFITCProfitLossType dateCloseProfitLoss; //盯市平仓盈亏
DFITCProfitLossType dPremium; //权利金
DFITCProfitLossType floatProfitLoss; //浮动盈亏
DFITCProfitLossType dMargin; //占用保证金
DFITCSpeculatorType speculator; //投保类别
DFITCClientIDType clientID; //交易编码
DFITCPriceType preSettlementPrice; //昨结算价
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCPositionInfoRtnField();
};
///用户登录返回信息
struct APISTRUCT DFITCUserLoginInfoRtnField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金帐号ID
DFITCAccountLoginResultType loginResult; //登录结果
DFITCLocalOrderIDType initLocalOrderID; //初始本地委托号
DFITCSessionIDType sessionID; //sessionID
DFITCErrorIDType nErrorID; //错误ID
DFITCErrorMsgInfoType errorMsg; //错误信息
DFITCTimeType DCEtime; //大商所时间
DFITCTimeType SHFETime; //上期所时间
DFITCTimeType CFFEXTime; //中金所时间
DFITCTimeType CZCETime; //郑商所时间
DFITCUserLoginInfoRtnField();
};
///用户退出返回信息
struct APISTRUCT DFITCUserLogoutInfoRtnField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户ID
DFITCAccountLogoutResultType logoutResult; //退出结果
DFITCErrorIDType nErrorID; //错误ID
DFITCErrorMsgInfoType errorMsg; //错误信息
DFITCUserLogoutInfoRtnField();
};
///套利合约查询
struct APISTRUCT DFITCAbiInstrumentField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户ID
DFITCExchangeIDType exchangeID; //交易所代码
DFITCAbiInstrumentField();
};
///套利合约返回信息
struct APISTRUCT DFITCAbiInstrumentRtnField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCExchangeIDType exchangeID; //交易所编码
DFITCInstrumentIDType InstrumentID; //合约代码
DFITCInstrumentNameType instrumentName; //合约名称
DFITCAbiInstrumentRtnField();
};
///指定的合约
struct APISTRUCT DFITCSpecificInstrumentField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户ID
DFITCInstrumentIDType InstrumentID; //合约代码
DFITCExchangeIDType exchangeID; //交易所ID
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCSpecificInstrumentField();
};
///行情订阅返回信息
struct APISTRUCT DFITCActiveContractField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCActiveContractType activeContract; //有效合约
DFITCActiveContractField();
};
///交易所合约返回信息
struct APISTRUCT DFITCExchangeInstrumentRtnField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCExchangeIDType exchangeID; //交易所编码
DFITCInstrumentIDType instrumentID; //合约代码
DFITCVarietyNameType VarietyName; //品种名称
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCAmountType orderTopLimit; //委托上限
DFITCPriceType contractMultiplier; //合约乘数
DFITCPriceType minPriceFluctuation; //最小变动价位
DFITCInstrumentMaturityType instrumentMaturity; //合约最后交易日
DFITCPriceType upperLimitPrice; //涨停板价
DFITCPriceType lowerLimitPrice; //跌停板价
DFITCPriceType preClosePrice; //昨收盘
DFITCPriceType preSettlementPrice; //昨结算价
DFITCPriceType settlementPrice; //结算价
DFITCAmountType preOpenInterest; //昨持仓量
DFITCExchangeInstrumentRtnField();
};
///委托查询数据结构
struct APISTRUCT DFITCOrderField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户ID
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCCustomCategoryType customCategory; //自定义类别
DFITCOrderField();
};
///成交查询数据结构
struct APISTRUCT DFITCMatchField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户ID
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCCustomCategoryType customCategory; //自定义类别
DFITCMatchField();
};
///委托查询响应数据结构
struct APISTRUCT DFITCOrderCommRtnField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCSPDOrderIDType spdOrderID; //柜台委托号
DFITCOrderAnswerStatusType orderStatus; //委托状态
DFITCInstrumentIDType instrumentID; //合约代码
DFITCBuySellTypeType buySellType; //买卖
DFITCOpenCloseTypeType openClose; //开平标志
DFITCPriceType insertPrice; //委托价
DFITCAmountType orderAmount; //委托数量
DFITCPriceType matchedPrice; //成交价格
DFITCAmountType matchedAmount; //成交数量
DFITCAmountType cancelAmount; //撤单数量
DFITCInsertType insertType; //委托类别
DFITCSpeculatorType speculator; //投保
DFITCDateType commTime; //委托时间
DFITCDateType submitTime; //申报时间
DFITCClientIDType clientID; //交易编码
DFITCExchangeIDType exchangeID; //交易所ID
DFITCFrontAddrType operStation; //委托地址
DFITCAccountIDType accountID; //客户号
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCReservedType reservedType1; //预留字段1
DFITCReservedType reservedType2; //预留字段2
DFITCOrderSysIDType OrderSysID; //报单编号
DFITCCustomCategoryType customCategory; //自定义类别
DFITCPriceType margin; //保证金
DFITCPriceType fee; //手续费
DFITCLocalOrderIDType localOrderID; //本地委托号
DFITCOrderCommRtnField();
};
//成交查询数据响应
struct APISTRUCT DFITCMatchedRtnField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCSPDOrderIDType spdOrderID; //柜台委托号
DFITCExchangeIDType exchangeID; //交易所ID
DFITCInstrumentIDType instrumentID; //合约代码
DFITCBuySellTypeType buySellType; //买卖
DFITCOpenCloseTypeType openClose; //开平
DFITCPriceType matchedPrice; //成交价格
DFITCAmountType matchedAmount; //成交数量
DFITCPriceType matchedMort; //成交金额
DFITCSpeculatorType speculator; //投保类别
DFITCDateType matchedTime; //成交时间
DFITCMatchIDType matchedID; //成交编号
DFITCLocalOrderIDType localOrderID; //本地委托号
DFITCClientIDType clientID; //交易编码
DFITCMatchType matchType; //成交类型
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCReservedType reservedType1; //预留字段1
DFITCReservedType reservedType2; //预留字段2
DFITCCustomCategoryType customCategory; //自定义类别
DFITCPriceType fee; //手续费
DFITCMatchedRtnField();
};
///返回合约信息数据结构
struct APISTRUCT DFITCInstrumentRtnField
{
DFITCRequestIDType lRequestID; //请求编号
DFITCInstrumentIDType instrumentID; //合约代码
DFITCRatioType longMarginRatio; //多头保证金率
DFITCRatioType shortMarginRatio; //空头保证金率
DFITCRatioType openFeeVolRatio; //开仓手续费 按手数计算
DFITCRatioType closeFeeVolRatio; //平仓手续费 按手数计算
DFITCRatioType closeTodayFeeVolRatio; //平今手续费 按手数计算
DFITCRatioType openFeeAmtRatio; //开仓手续费率 按金额计算
DFITCRatioType closeFeeAmtRatio; //平仓手续费率 按金额计算
DFITCRatioType closeTodayFeeAmtRatio; //平今手续费率 按金额计算
DFITCAmountType orderTopLimit; //委托上限
DFITCPriceType contractMultiplier; //合约乘数
DFITCPriceType minimumPriceChange; //最小变动价位
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCInstrumentMaturityType instrumentMaturity; //合约最后交易日
DFITCComputeModeType computeMode; //计算方式
DFITCPriceType atMoneyNorm; //平值按定额
DFITCPriceType upperLimitPrice; //涨停板价
DFITCPriceType lowerLimitPrice; //跌停板价
DFITCPriceType preClosePrice; //昨收盘
DFITCPriceType preSettlementPrice; //昨结算价
DFITCPriceType settlementPrice; //结算价
DFITCAmountType preOpenInterest; //昨持仓量
DFITCRatioType optExecRatio; //期权:行权按比例 期货:交割按比例
DFITCRatioType optExecRatioPerVol; //期权:行权按定额 期货:交割按定额
DFITCInstrumentRtnField();
};
///深度行情
struct APISTRUCT DFITCDepthMarketDataField
{
DFITCDateType tradingDay; //交易日
DFITCInstrumentIDType instrumentID; //合约代码
DFITCExchangeIDType exchangeID; //交易所代码
DFITCInstrumentIDType exchangeInstID; //合约在交易所的代码
DFITCPriceType lastPrice; //最新价
DFITCPriceType preSettlementPrice; //上次结算价
DFITCPriceType preClosePrice; //昨收盘
DFITCAmountType preOpenInterest; //昨持仓量
DFITCPriceType openPrice; //今开盘
DFITCPriceType highestPrice; //最高价
DFITCPriceType lowestPrice; //最低价
DFITCAmountType Volume; //成交数量
DFITCPriceType turnover; //成交金额
DFITCAmountType openInterest; //持仓量
DFITCPriceType closePrice; //今收盘
DFITCPriceType settlementPrice; //本次结算价
DFITCPriceType upperLimitPrice; //涨停板价
DFITCPriceType lowerLimitPrice; //跌停板价
DFITCDeltaType preDelta; //昨虚实度
DFITCDeltaType currDelta; //今虚实度
DFITCDateType UpdateTime; //最后修改时间
DFITCMilliSecType UpdateMillisec; //最后修改毫秒
DFITCPriceType BidPrice1; //申买价一
DFITCVolumeType BidVolume1; //申买量一
DFITCPriceType AskPrice1; //申卖价一
DFITCVolumeType AskVolume1; //申卖量一
DFITCPriceType BidPrice2; //申买价二
DFITCVolumeType BidVolume2; //申买量二
DFITCPriceType AskPrice2; //申卖价二
DFITCVolumeType AskVolume2; //申卖量二
DFITCPriceType BidPrice3; //申买价三
DFITCVolumeType BidVolume3; //申买量三
DFITCPriceType AskPrice3; //申卖价三
DFITCVolumeType AskVolume3; //申卖量三
DFITCPriceType BidPrice4; //申买价四
DFITCVolumeType BidVolume4; //申买量四
DFITCPriceType AskPrice4; //申卖价四
DFITCVolumeType AskVolume4; //申卖量四
DFITCPriceType BidPrice5; //申买价五
DFITCVolumeType BidVolume5; //申买量五
DFITCPriceType AskPrice5; //申卖价五
DFITCVolumeType AskVolume5; //申卖量五
DFITCPriceType AveragePrice; //当日均价
DFITCDateType XSpeedTime; //柜台系统时间
DFITCDepthMarketDataField();
};
//自定义组合行情
struct APISTRUCT DFITCCustomMarketDataField
{
DFITCInstrumentIDType instrumentID; //合约代码
DFITCExchangeIDType exchangeID; //交易所
DFITCVolumeType bidVolume1; //买一量
DFITCPriceType bidPrice1; //买一价(挂价价差)
DFITCVolumeType askVolume1; //卖一量
DFITCPriceType askPrice1; //卖一价(对价价差)
DFITCPriceType lastPrice; //最新价价差
DFITCCustomMarketDataField();
};
///查询持仓明细
struct APISTRUCT DFITCPositionDetailField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户ID
DFITCInstrumentIDType instrumentID; //合约代码
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCPositionDetailField();
};
///查询持仓明细响应
struct APISTRUCT DFITCPositionDetailRtnField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金帐号ID
DFITCExchangeIDType exchangeID; //交易所代码
DFITCInstrumentIDType instrumentID; //合约号
DFITCBuySellTypeType buySellType; //买卖
DFITCPriceType openPrice; //开仓价
DFITCAmountType volume; //手数
DFITCMatchIDType matchID; //成交编号
DFITCDateType matchedDate; //成交日期
DFITCProfitLossType datePositionProfitLoss; //盯市持仓盈亏
DFITCProfitLossType dateCloseProfitLoss; //盯市平仓盈亏
DFITCProfitLossType floatProfitLoss; //浮动盈亏
DFITCProfitLossType dMargin; //占用保证金
DFITCSpeculatorType speculator; //投保类别
DFITCClientIDType clientID; //交易编码
DFITCPriceType preSettlementPrice; //昨结算价
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCSPDOrderIDType spdOrderID; //柜台委托号
DFITCCustomCategoryType customCategory; //自定义类别
DFITCPositionDetailRtnField();
};
///用户事件通知信息
struct APISTRUCT DFITCTradingNoticeInfoField
{
DFITCAccountIDType accountID; //资金帐号ID
DFITCTimeType SendTime; //发送时间
DFITCContentType FieldContent; //消息正文
DFITCNoticeType noticeType; //消息类型
DFITCTradingNoticeInfoField();
};
///用户密码修改
struct APISTRUCT DFITCResetPwdField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金帐号ID
DFITCPasswdType oldpasswd; //旧密码
DFITCPasswdType newpasswd; //新密码
DFITCResetPwdField();
};
///用户密码修改返回信息
struct APISTRUCT DFITCResetPwdRspField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户ID
DFITCExecStateType execState; //状态标志
DFITCResetPwdRspField();
};
///账单确认
struct APISTRUCT DFITCBillConfirmField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金帐号ID
DFITCDateType date; //确认日期 格式:yyyy.mm.dd
DFITCConfirmMarkType confirmFlag; //确认标志
DFITCBillConfirmField();
};
///账单确认响应
struct APISTRUCT DFITCBillConfirmRspField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户ID
DFITCExecStateType execState; //状态标志
DFITCBillConfirmRspField();
};
///交易编码查询
struct APISTRUCT DFITCQryTradeCodeField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户ID
DFITCQryTradeCodeField();
};
///交易编码查询响应
struct APISTRUCT DFITCQryTradeCodeRtnField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户
DFITCExchangeIDType exchangeCode; //交易所编码
DFITCClientIDType clientID; //交易编码
DFITCClientStatusType clientStatus; //交易编码状态
DFITCSpeculatorType clientIDType; //交易编码类型
DFITCQryTradeCodeRtnField();
};
///浮盈浮亏是否计算到权益中
struct APISTRUCT DFITCEquityComputModeRtnField
{
DFITCCapControlModeType capConMode; //资金控制方式,该方式需要用户按位判断,可能为多种组合
DFITCPriceNoteType priceNote; //期权保证金计算说明
DFITCEquityComputModeRtnField();
};
///查询账单
struct APISTRUCT DFITCQryBillField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户
DFITCDateType date; //查询日期 格式:yyyy.mm.dd
DFITCQryBillField();
};
///查询账单响应
struct APISTRUCT DFITCQryBillRtnField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户
DFITCMsgInfoType message; //返回信息
DFITCQryBillRtnField();
};
///厂商ID确认请求
struct APISTRUCT DFITCProductField
{
DFITCProductIDType productID; //产品编号
DFITCSoftwareVendorIDType vendorID; //软件供应商编号
DFITCProductField();
};
///厂商ID确认响应
struct APISTRUCT DFITCProductRtnField
{
DFITCProductIDType productID; //产品编号
DFITCSoftwareVendorIDType vendorID; //软件供应商
DFITCProductOnlineCountType productOnlineCount; //产品在线数量
DFITCBrokerInfoType brokerInfoName; //期货公司名称
DFITCFrontIDType frontID; //前置机ID
DFITCProductRtnField();
};
//请求算法单报单数据类型
struct APISTRUCT DFITCInsertExtOrderField
{
DFITCAccountIDType accountID; //资金账号
DFITCLocalOrderIDType localOrderID; //本地委托号
DFITCInstrumentIDType instrumentID; //合约代码
DFITCRequestIDType lRequestID; //请求ID
DFITCPriceType insertPrice; //委托价格
DFITCAmountType orderAmount; //委托数量
DFITCBuySellTypeType buySellType; //买卖标志
DFITCOpenCloseTypeType openCloseType; //开平标志
DFITCSpeculatorType speculator; //投保类型,支持投机、套利、套保
DFITCInsertType insertType; //委托类别(默认为普通订单)
DFITCOrderTypeType orderType; //报单类型, 支持限价 、市价;上期所合约不支持市价,均按限价进行处理
DFITCExtOrderType extOrderType; //算法单类型
DFITCTriggerTime triggerTime; //触发时间
DFITCPriceReference priceReference; //价格参照
DFITCCompareFlag compareFlag; //比较标志
DFITCOvernightFlag overnightFlag; //隔夜标志
DFITCArbitragePrice arbitragePrice; //套利价格
DFITCInstrumentTypeType instrumentType; //合约类型, 可选值:期货、期权
DFITCCustomCategoryType customCategory; //自定义类别
DFITCReservedType reservedType1; //预留字段1
DFITCReservedType reservedType2; //预留字段2
DFITCInsertExtOrderField();
};
///算法单委托查询数据结构
struct APISTRUCT DFITCExtOrderField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCAccountIDType accountID; //资金账户ID
DFITCSPDOrderIDType spdOrderID; //柜台委托号
DFITCExtOrderField();
};
///算法单查询响应
struct APISTRUCT DFITCExtOrderCommRtnField
{
DFITCAccountIDType accountID; //资金账号
DFITCSPDOrderIDType spdOrderID; //柜台委托号
DFITCInstrumentIDType instrumentID; //合约代码
DFITCRequestIDType lRequestID; //请求ID
DFITCPriceType insertPrice; //委托价格
DFITCAmountType orderAmount; //委托数量
DFITCBuySellTypeType buySellType; //买卖标志
DFITCOpenCloseTypeType openCloseType; //开平标志
DFITCSpeculatorType speculator; //投保类型,支持投机、套利、套保
DFITCInsertType insertType; //委托类别(默认为普通订单)
DFITCOrderTypeType orderType; //报单类型, 支持限价 、市价;上期所合约不支持市价,均按限价进行处理
DFITCExtOrderType extOrderType; //算法单类型
DFITCTriggerTime triggerTime; //触发时间
DFITCPriceReference priceReference; //价格参照
DFITCCompareFlag compareFlag; //比较标志
DFITCOvernightFlag overnightFlag; //隔夜标志
DFITCOrderAnswerStatusType extOrderStatus; //算法单报单状态
DFITCExchangeIDType exchangeCode; //交易所编码
DFITCClientIDType clientID; //交易编码
DFITCMsgInfoType message; //返回信息
DFITCExtOrderCommRtnField();
};
///查询交易日请求
struct APISTRUCT DFITCTradingDayField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCTradingDayField();
};
///交易日请求响应
struct APISTRUCT DFITCTradingDayRtnField
{
DFITCRequestIDType lRequestID; //请求ID
DFITCDateType date; //交易日
DFITCTradingDayRtnField();
};
///报价通知订阅请求
struct APISTRUCT DFITCQuoteSubscribeField
{
DFITCAccountIDType accountID; //资金账号
DFITCRequestIDType lRequestID; //请求ID
DFITCExchangeIDType exchangeID; //交易所
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCQuoteSubscribeField();
};
///报价通知订阅响应
struct APISTRUCT DFITCQuoteSubscribeRspField
{
DFITCExecStateType subscribeFlag; //订阅状态
DFITCRequestIDType lRequestID; //请求ID
DFITCQuoteSubscribeRspField();
};
///报价通知退订请求
struct APISTRUCT DFITCQuoteUnSubscribeField
{
DFITCAccountIDType accountID; //资金账号
DFITCRequestIDType lRequestID; //请求ID
DFITCExchangeIDType exchangeID; //交易所
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCQuoteUnSubscribeField();
};
///报价通知退订响应
struct APISTRUCT DFITCQuoteUnSubscribeRspField
{
DFITCExecStateType subscribeFlag; //退订状态
DFITCRequestIDType lRequestID; //请求ID
DFITCQuoteUnSubscribeRspField();
};
///报价通知订阅回报
struct APISTRUCT DFITCQuoteSubscribeRtnField
{
DFITCQuoteIDType quoteID; //询价编号
DFITCExchangeIDType exchangeID; //交易所
DFITCInstrumentIDType instrumentID; //合约代码
DFITCBuySellTypeType buySellType; //买卖标志
DFITCSourceType source; //来源
DFITCClientIDType clientID; //交易编码
DFITCSeatCodeType seatCode; //席位代码
DFITCDateType tradingDate; //交易日期
DFITCDateType quoteTime; //询价时间
DFITCDateType quoteRecvTime; //询价接收时间
DFITCQuoteSubscribeRtnField();
};
//做市商报单请求
struct APISTRUCT DFITCQuoteInsertField
{
DFITCAccountIDType accountID; //资金账号
DFITCRequestIDType lRequestID; //请求ID
DFITCLocalOrderIDType localOrderID; //本地委托号
DFITCInsertType insertType; //委托类别
DFITCInstrumentIDType instrumentID; //合约代码
DFITCQuoteIDType quoteID; //询价编号
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCAmountType bOrderAmount; //报单数量(买)
DFITCAmountType sOrderAmount; //报单数量(卖)
DFITCPriceType bInsertPrice; //委托价格(买)
DFITCPriceType sInsertPrice; //委托价格(卖)
DFITCOpenCloseTypeType bOpenCloseType; //开平标志(买)
DFITCOpenCloseTypeType sOpenCloseType; //开平标志(卖)
DFITCSpeculatorType bSpeculator; //投资类别(买)
DFITCSpeculatorType sSpeculator; //投资类别(卖)
DFITCStayTimeType stayTime; //停留时间,仅支持郑州。其它情况可设置为0
DFITCBuySellTypeType buySellType; //买卖标志
DFITCQuoteInsertField();
};
//做市商报单响应
struct APISTRUCT DFITCQuoteRspField
{
DFITCLocalOrderIDType localOrderID; //本地委托号
DFITCSPDOrderIDType spdOrderID; //柜台委托号
DFITCRequestIDType lRequestID; //请求ID
DFITCPriceType fee; //双边手续费之和
DFITCPriceType margin; //双边保证金之和
DFITCDateType orderTime; //委托时间
DFITCQuoteRspField();
};
//做市商报单回报
struct APISTRUCT DFITCQuoteRtnField
{
DFITCExchangeIDType exchangeID; //交易所
DFITCClientIDType clientID; //交易编码
DFITCOrderSysIDType orderSysID; //报单编号
DFITCInstrumentIDType instrumentID; //合约代码
DFITCLocalOrderIDType localOrderID; //本地委托号
DFITCSeatCodeType seatCode; //席位代码
DFITCOpenCloseTypeType bOpenCloseType; //开平标志(买)
DFITCOpenCloseTypeType sOpenCloseType; //开平标志(卖)
DFITCSpeculatorType bSpeculator; //投资类别(买)
DFITCSpeculatorType sSpeculator; //投资类别(卖)
DFITCAmountType bOrderAmount; //委托数量(买)
DFITCAmountType sOrderAmount; //委托数量(卖)
DFITCPriceType bInsertPrice; //委托价 (买)
DFITCPriceType sInsertPrice; //委托价 (卖)
DFITCSPDOrderIDType spdOrderID; //柜台委托号
DFITCAccountIDType accountID; //资金账号
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCDateType suspendTime; //挂单时间
DFITCCloseIDType closeID; //平仓执行单号
DFITCEntrusTellerType entrusTeller; //委托柜员
DFITCOrderAnswerStatusType orderStatus; //委托状态
DFITCOrderSysIDType bOrderSysID; //买方主场单号
DFITCOrderSysIDType sOrderSysID; //卖方主场单号
///以下字段仅在 orderStatus为2的时候返回
DFITCAmountType bCancelAmount; //撤单数量(买)
DFITCAmountType sCancelAmount; //撤单数量(卖)
DFITCPriceType fee; //解冻手续费
DFITCPriceType margin; //解冻保证金
DFITCErrorMsgInfoType errorMsg; //错误信息
DFITCQuoteRtnField();
};
//做市场撤单回报
struct APISTRUCT DFITCQuoteCanceledRtnField
{
DFITCLocalOrderIDType localOrderID; //本地委托号
DFITCOrderSysIDType orderSysID; //报单编号
DFITCInstrumentIDType instrumentID; //合约代码
DFITCInstrumentTypeType instrumentType; //合约类型
DFITCPriceType bInsertPrice; //委托价格(买)
DFITCPriceType sInsertPrice; //委托价格(卖)
DFITCAmountType bAmount; //撤单数量(买)