-
Notifications
You must be signed in to change notification settings - Fork 3
/
types.go
1569 lines (1526 loc) · 30.1 KB
/
types.go
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
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package goctp
// 响应信息
type RspInfoField struct {
///错误代码
ErrorID int32
///错误信息
ErrorMsg string
}
// 合约状态
type InstrumentStatusField struct {
///交易所代码
ExchangeID string
///保留的无效字段
reserve1 string
///结算组代码
SettlementGroupID string
///保留的无效字段
reserve2 string
///合约交易状态
InstrumentStatus byte
///交易阶段编号
TradingSegmentSN int
///进入本状态时间
EnterTime string
///进入本状态原因
EnterReason byte
///合约在交易所的代码
ExchangeInstID string
///合约代码
InstrumentID string
}
// 查询合约保证金率
type QryInstrumentMarginRateField struct {
///经纪公司代码
BrokerID string
///投资者代码
InvestorID string
///保留的无效字段
reserve1 string
///投机套保标志
HedgeFlag byte
///交易所代码
ExchangeID string
///投资单元代码
InvestUnitID string
///合约代码
InstrumentID string
}
// 查询签约银行响应
type ContractBankField struct {
///经纪公司代码
BrokerID string
///银行代码
BankID string
///银行分中心代码
BankBrchID string
///银行名称
BankName string
}
// 查询投资者持仓
type QryInvestorPositionField struct {
///经纪公司代码
BrokerID string
///投资者代码
InvestorID string
///保留的无效字段
reserve1 string
///交易所代码
ExchangeID string
///投资单元代码
InvestUnitID string
///合约代码
InstrumentID string
}
// 查询结算信息确认域
type QrySettlementInfoConfirmField struct {
///经纪公司代码
BrokerID string
///投资者代码
InvestorID string
///投资者帐号
AccountID string
///币种代码
CurrencyID string
}
// 银期转账交易流水表
type TransferSerialField struct {
///平台流水号
PlateSerial int
///交易发起方日期
TradeDate string
///交易日期
TradingDay string
///交易时间
TradeTime string
///交易代码
TradeCode string
///会话编号
SessionID int
///银行编码
BankID string
///银行分支机构编码
BankBranchID string
///银行帐号类型
BankAccType byte
///银行帐号
BankAccount string
///银行流水号
BankSerial string
///期货公司编码
BrokerID string
///期商分支机构代码
BrokerBranchID string
///期货公司帐号类型
FutureAccType byte
///投资者帐号
AccountID string
///投资者代码
InvestorID string
///期货公司流水号
FutureSerial int
///证件类型
IdCardType byte
///证件号码
IdentifiedCardNo string
///币种代码
CurrencyID string
///交易金额
TradeAmount float64
///应收客户费用
CustFee float64
///应收期货公司费用
BrokerFee float64
///有效标志
AvailabilityFlag byte
///操作员
OperatorCode string
///新银行帐号
BankNewAccount string
///错误代码
ErrorID int
///错误信息
ErrorMsg string
}
// 投资者结算结果确认信息
type SettlementInfoConfirmField struct {
///经纪公司代码
BrokerID string
///投资者代码
InvestorID string
///确认日期
ConfirmDate string
///确认时间
ConfirmTime string
///结算编号
SettlementID int
///投资者帐号
AccountID string
///币种代码
CurrencyID string
}
// 资金账户口令变更域
type TradingAccountPasswordUpdateField struct {
///经纪公司代码
BrokerID string
///投资者帐号
AccountID string
///原来的口令
OldPassword string
///新的口令
NewPassword string
///币种代码
CurrencyID string
}
// 经纪公司交易参数
type BrokerTradingParamsField struct {
///经纪公司代码
BrokerID string
///投资者代码
InvestorID string
///保证金价格类型
MarginPriceType byte
///盈亏算法
Algorithm byte
///可用是否包含平仓盈利
AvailIncludeCloseProfit byte
///币种代码
CurrencyID string
///期权权利金价格类型
OptionRoyaltyPriceType byte
///投资者帐号
AccountID string
}
// 查询合约
type QryInstrumentField struct {
///保留的无效字段
reserve1 string
///交易所代码
ExchangeID string
///保留的无效字段
reserve2 string
///保留的无效字段
reserve3 string
///合约代码
InstrumentID string
///合约在交易所的代码
ExchangeInstID string
///产品代码
ProductID string
}
// 客户端认证请求
type ReqAuthenticateField struct {
///经纪公司代码
BrokerID string
///用户代码
UserID string
///用户端产品信息
UserProductInfo string
///认证码
AuthCode string
///App代码
AppID string
}
// 资金账户
type TradingAccountField struct {
///经纪公司代码
BrokerID string
///投资者帐号
AccountID string
///上次质押金额
PreMortgage float64
///上次信用额度
PreCredit float64
///上次存款额
PreDeposit float64
///上次结算准备金
PreBalance float64
///上次占用的保证金
PreMargin float64
///利息基数
InterestBase float64
///利息收入
Interest float64
///入金金额
Deposit float64
///出金金额
Withdraw float64
///冻结的保证金
FrozenMargin float64
///冻结的资金
FrozenCash float64
///冻结的手续费
FrozenCommission float64
///当前保证金总额
CurrMargin float64
///资金差额
CashIn float64
///手续费
Commission float64
///平仓盈亏
CloseProfit float64
///持仓盈亏
PositionProfit float64
///期货结算准备金
Balance float64
///可用资金
Available float64
///可取资金
WithdrawQuota float64
///基本准备金
Reserve float64
///交易日
TradingDay string
///结算编号
SettlementID int
///信用额度
Credit float64
///质押金额
Mortgage float64
///交易所保证金
ExchangeMargin float64
///投资者交割保证金
DeliveryMargin float64
///交易所交割保证金
ExchangeDeliveryMargin float64
///保底期货结算准备金
ReserveBalance float64
///币种代码
CurrencyID string
///上次货币质入金额
PreFundMortgageIn float64
///上次货币质出金额
PreFundMortgageOut float64
///货币质入金额
FundMortgageIn float64
///货币质出金额
FundMortgageOut float64
///货币质押余额
FundMortgageAvailable float64
///可质押货币金额
MortgageableFund float64
///特殊产品占用保证金
SpecProductMargin float64
///特殊产品冻结保证金
SpecProductFrozenMargin float64
///特殊产品手续费
SpecProductCommission float64
///特殊产品冻结手续费
SpecProductFrozenCommission float64
///特殊产品持仓盈亏
SpecProductPositionProfit float64
///特殊产品平仓盈亏
SpecProductCloseProfit float64
///根据持仓盈亏算法计算的特殊产品持仓盈亏
SpecProductPositionProfitByAlg float64
///特殊产品交易所保证金
SpecProductExchangeMargin float64
///业务类型
BizType byte
///延时换汇冻结金额
FrozenSwap float64
///剩余换汇额度
RemainSwap float64
}
// 输入报单操作
type InputOrderActionField struct {
///经纪公司代码
BrokerID string
///投资者代码
InvestorID string
///报单操作引用
OrderActionRef int
///报单引用
OrderRef string
///请求编号
RequestID int
///前置编号
FrontID int
///会话编号
SessionID int
///交易所代码
ExchangeID string
///报单编号
OrderSysID string
///操作标志
ActionFlag byte
///价格
LimitPrice float64
///数量变化
VolumeChange int
///用户代码
UserID string
///保留的无效字段
reserve1 string
///投资单元代码
InvestUnitID string
///保留的无效字段
reserve2 string
///Mac地址
MacAddress string
///合约代码
InstrumentID string
///IP地址
IPAddress string
}
// 请求查询转帐流水
type QryTransferSerialField struct {
///经纪公司代码
BrokerID string
///投资者帐号
AccountID string
///银行编码
BankID string
///币种代码
CurrencyID string
}
// 查询报单
type QryOrderField struct {
///经纪公司代码
BrokerID string
///投资者代码
InvestorID string
///保留的无效字段
reserve1 string
///交易所代码
ExchangeID string
///报单编号
OrderSysID string
///开始时间
InsertTimeStart string
///结束时间
InsertTimeEnd string
///投资单元代码
InvestUnitID string
///合约代码
InstrumentID string
}
// 投资者结算结果
type SettlementInfoField struct {
///交易日
TradingDay string
///结算编号
SettlementID int
///经纪公司代码
BrokerID string
///投资者代码
InvestorID string
///序号
SequenceNo int
///消息正文
Content string
///投资者帐号
AccountID string
///币种代码
CurrencyID string
}
// 深度行情
type DepthMarketDataField struct {
///交易日
TradingDay string
///保留的无效字段
reserve1 string
///交易所代码
ExchangeID string
///保留的无效字段
reserve2 string
///最新价
LastPrice float64
///上次结算价
PreSettlementPrice float64
///昨收盘
PreClosePrice float64
///昨持仓量
PreOpenInterest float64
///今开盘
OpenPrice float64
///最高价
HighestPrice float64
///最低价
LowestPrice float64
///数量
Volume int
///成交金额
Turnover float64
///持仓量
OpenInterest float64
///今收盘
ClosePrice float64
///本次结算价
SettlementPrice float64
///涨停板价
UpperLimitPrice float64
///跌停板价
LowerLimitPrice float64
///昨虚实度
PreDelta float64
///今虚实度
CurrDelta float64
///最后修改时间
UpdateTime string
///最后修改毫秒
UpdateMillisec int
///申买价一
BidPrice1 float64
///申买量一
BidVolume1 int
///申卖价一
AskPrice1 float64
///申卖量一
AskVolume1 int
///申买价二
BidPrice2 float64
///申买量二
BidVolume2 int
///申卖价二
AskPrice2 float64
///申卖量二
AskVolume2 int
///申买价三
BidPrice3 float64
///申买量三
BidVolume3 int
///申卖价三
AskPrice3 float64
///申卖量三
AskVolume3 int
///申买价四
BidPrice4 float64
///申买量四
BidVolume4 int
///申卖价四
AskPrice4 float64
///申卖量四
AskVolume4 int
///申买价五
BidPrice5 float64
///申买量五
BidVolume5 int
///申卖价五
AskPrice5 float64
///申卖量五
AskVolume5 int
///当日均价
AveragePrice float64
///业务日期
ActionDay string
///合约代码
InstrumentID string
///合约在交易所的代码
ExchangeInstID string
///上带价
BandingUpperPrice float64
///下带价
BandingLowerPrice float64
}
// 合约手续费率
type InstrumentCommissionRateField struct {
///保留的无效字段
reserve1 string
///投资者范围
InvestorRange byte
///经纪公司代码
BrokerID string
///投资者代码
InvestorID string
///开仓手续费率
OpenRatioByMoney float64
///开仓手续费
OpenRatioByVolume float64
///平仓手续费率
CloseRatioByMoney float64
///平仓手续费
CloseRatioByVolume float64
///平今手续费率
CloseTodayRatioByMoney float64
///平今手续费
CloseTodayRatioByVolume float64
///交易所代码
ExchangeID string
///业务类型
BizType byte
///投资单元代码
InvestUnitID string
///合约代码
InstrumentID string
}
// 输入报单
type InputOrderField struct {
///经纪公司代码
BrokerID string
///投资者代码
InvestorID string
///保留的无效字段
reserve1 string
///报单引用
OrderRef string
///用户代码
UserID string
///报单价格条件
OrderPriceType byte
///买卖方向
Direction byte
///组合开平标志
CombOffsetFlag string
///组合投机套保标志
CombHedgeFlag string
///价格
LimitPrice float64
///数量
VolumeTotalOriginal int
///有效期类型
TimeCondition byte
///GTD日期
GTDDate string
///成交量类型
VolumeCondition byte
///最小成交量
MinVolume int
///触发条件
ContingentCondition byte
///止损价
StopPrice float64
///强平原因
ForceCloseReason byte
///自动挂起标志
IsAutoSuspend int
///业务单元
BusinessUnit string
///请求编号
RequestID int
///用户强评标志
UserForceClose int
///互换单标志
IsSwapOrder int
///交易所代码
ExchangeID string
///投资单元代码
InvestUnitID string
///资金账号
AccountID string
///币种代码
CurrencyID string
///交易编码
ClientID string
///保留的无效字段
reserve2 string
///Mac地址
MacAddress string
///合约代码
InstrumentID string
///IP地址
IPAddress string
}
// 成交
type TradeField struct {
///经纪公司代码
BrokerID string
///投资者代码
InvestorID string
///保留的无效字段
reserve1 string
///报单引用
OrderRef string
///用户代码
UserID string
///交易所代码
ExchangeID string
///成交编号
TradeID string
///买卖方向
Direction byte
///报单编号
OrderSysID string
///会员代码
ParticipantID string
///客户代码
ClientID string
///交易角色
TradingRole byte
///保留的无效字段
reserve2 string
///开平标志
OffsetFlag byte
///投机套保标志
HedgeFlag byte
///价格
Price float64
///数量
Volume int
///成交时期
TradeDate string
///成交时间
TradeTime string
///成交类型
TradeType byte
///成交价来源
PriceSource byte
///交易所交易员代码
TraderID string
///本地报单编号
OrderLocalID string
///结算会员编号
ClearingPartID string
///业务单元
BusinessUnit string
///序号
SequenceNo int
///交易日
TradingDay string
///结算编号
SettlementID int
///经纪公司报单编号
BrokerOrderSeq int
///成交来源
TradeSource byte
///投资单元代码
InvestUnitID string
///合约代码
InstrumentID string
///合约在交易所的代码
ExchangeInstID string
}
// 银行发起银行资金转期货响应
type RspTransferField struct {
///业务功能码
TradeCode string
///银行代码
BankID string
///银行分支机构代码
BankBranchID string
///期商代码
BrokerID string
///期商分支机构代码
BrokerBranchID string
///交易日期
TradeDate string
///交易时间
TradeTime string
///银行流水号
BankSerial string
///交易系统日期
TradingDay string
///银期平台消息流水号
PlateSerial int
///最后分片标志
LastFragment byte
///会话号
SessionID int
///客户姓名
CustomerName string
///证件类型
IdCardType byte
///证件号码
IdentifiedCardNo string
///客户类型
CustType byte
///银行帐号
BankAccount string
///银行密码
BankPassWord string
///投资者帐号
AccountID string
///期货密码
Password string
///安装编号
InstallID int
///期货公司流水号
FutureSerial int
///用户标识
UserID string
///验证客户证件号码标志
VerifyCertNoFlag byte
///币种代码
CurrencyID string
///转帐金额
TradeAmount float64
///期货可取金额
FutureFetchAmount float64
///费用支付标志
FeePayFlag byte
///应收客户费用
CustFee float64
///应收期货公司费用
BrokerFee float64
///发送方给接收方的消息
Message string
///摘要
Digest string
///银行帐号类型
BankAccType byte
///渠道标志
DeviceID string
///期货单位帐号类型
BankSecuAccType byte
///期货公司银行编码
BrokerIDByBank string
///期货单位帐号
BankSecuAcc string
///银行密码标志
BankPwdFlag byte
///期货资金密码核对标志
SecuPwdFlag byte
///交易柜员
OperNo string
///请求编号
RequestID int
///交易ID
TID int
///转账交易状态
TransferStatus byte
///错误代码
ErrorID int
///错误信息
ErrorMsg string
///长客户姓名
LongCustomerName string
}
// 用户事件通知信息
type TradingNoticeInfoField struct {
///经纪公司代码
BrokerID string
///投资者代码
InvestorID string
///发送时间
SendTime string
///消息正文
FieldContent string
///序列系列号
SequenceSeries int16
///序列号
SequenceNo int
///投资单元代码
InvestUnitID string
}
// 投资者持仓
type InvestorPositionField struct {
///保留的无效字段
reserve1 string
///经纪公司代码
BrokerID string
///投资者代码
InvestorID string
///持仓多空方向
PosiDirection byte
///投机套保标志
HedgeFlag byte
///持仓日期
PositionDate byte
///上日持仓
YdPosition int
///今日持仓
Position int
///多头冻结
LongFrozen int
///空头冻结
ShortFrozen int
///开仓冻结金额
LongFrozenAmount float64
///开仓冻结金额
ShortFrozenAmount float64
///开仓量
OpenVolume int
///平仓量
CloseVolume int
///开仓金额
OpenAmount float64
///平仓金额
CloseAmount float64
///持仓成本
PositionCost float64
///上次占用的保证金
PreMargin float64
///占用的保证金
UseMargin float64
///冻结的保证金
FrozenMargin float64
///冻结的资金
FrozenCash float64
///冻结的手续费
FrozenCommission float64
///资金差额
CashIn float64
///手续费
Commission float64
///平仓盈亏
CloseProfit float64
///持仓盈亏
PositionProfit float64
///上次结算价
PreSettlementPrice float64
///本次结算价
SettlementPrice float64
///交易日
TradingDay string
///结算编号
SettlementID int
///开仓成本
OpenCost float64
///交易所保证金
ExchangeMargin float64
///组合成交形成的持仓
CombPosition int
///组合多头冻结
CombLongFrozen int
///组合空头冻结
CombShortFrozen int
///逐日盯市平仓盈亏
CloseProfitByDate float64
///逐笔对冲平仓盈亏
CloseProfitByTrade float64
///今日持仓
TodayPosition int
///保证金率
MarginRateByMoney float64
///保证金率(按手数)
MarginRateByVolume float64
///执行冻结
StrikeFrozen int
///执行冻结金额
StrikeFrozenAmount float64
///放弃执行冻结
AbandonFrozen int
///交易所代码
ExchangeID string
///执行冻结的昨仓
YdStrikeFrozen int
///投资单元代码
InvestUnitID string
///大商所持仓成本差值,只有大商所使用
PositionCostOffset float64
///tas持仓手数
TasPosition int
///tas持仓成本
TasPositionCost float64
///合约代码
InstrumentID string
}
// 报单
type OrderField struct {
///经纪公司代码
BrokerID string
///投资者代码
InvestorID string
///保留的无效字段
reserve1 string
///报单引用
OrderRef string
///用户代码
UserID string
///报单价格条件
OrderPriceType byte
///买卖方向
Direction byte
///组合开平标志
CombOffsetFlag string
///组合投机套保标志
CombHedgeFlag string
///价格
LimitPrice float64
///数量
VolumeTotalOriginal int
///有效期类型
TimeCondition byte
///GTD日期
GTDDate string
///成交量类型
VolumeCondition byte
///最小成交量
MinVolume int
///触发条件
ContingentCondition byte
///止损价
StopPrice float64
///强平原因
ForceCloseReason byte
///自动挂起标志
IsAutoSuspend int
///业务单元
BusinessUnit string
///请求编号
RequestID int
///本地报单编号
OrderLocalID string
///交易所代码
ExchangeID string
///会员代码
ParticipantID string
///客户代码
ClientID string
///保留的无效字段
reserve2 string
///交易所交易员代码
TraderID string
///安装编号
InstallID int
///报单提交状态
OrderSubmitStatus byte
///报单提示序号
NotifySequence int
///交易日
TradingDay string
///结算编号
SettlementID int