forked from QuantBox/QuantBox_XAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApiDataType.h
130 lines (105 loc) · 5.3 KB
/
ApiDataType.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
#ifndef _API_DATA_TYPE_H_
#define _API_DATA_TYPE_H_
/////////////////////////////////////////////////////////////////////////
///ErrorIDType是一个错误代码类型
/////////////////////////////////////////////////////////////////////////
typedef int ErrorIDType;
/////////////////////////////////////////////////////////////////////////
///ErrorMsgType是一个错误信息类型
/////////////////////////////////////////////////////////////////////////
typedef char ErrorMsgType[256];
/////////////////////////////////////////////////////////////////////////
///PriceType是一个价格类型
/////////////////////////////////////////////////////////////////////////
typedef double PriceType;
/////////////////////////////////////////////////////////////////////////
///VolumeType是一个交易量类型
/////////////////////////////////////////////////////////////////////////
typedef int VolumeType;
/////////////////////////////////////////////////////////////////////////
///QtyType是一个交易量类型
/////////////////////////////////////////////////////////////////////////
typedef double QtyType;
/////////////////////////////////////////////////////////////////////////
///LargeVolumeType是一个大额数量类型
/////////////////////////////////////////////////////////////////////////
typedef double LargeVolumeType;
/////////////////////////////////////////////////////////////////////////
///InstrumentIDType是一个合约代码类型
/////////////////////////////////////////////////////////////////////////
typedef char InstrumentIDType[31];
/////////////////////////////////////////////////////////////////////////
///SymbolType是一个合约唯一符号类型
/////////////////////////////////////////////////////////////////////////
typedef char SymbolType[64];
/////////////////////////////////////////////////////////////////////////
///DateTimeType是一个日期时间类型
/////////////////////////////////////////////////////////////////////////
typedef char DateTimeType[32];
/////////////////////////////////////////////////////////////////////////
///ExchangeIDType是一个交易所代码类型
/////////////////////////////////////////////////////////////////////////
typedef char ExchangeIDType[9];
/////////////////////////////////////////////////////////////////////////
///MoneyType是一个资金类型
/////////////////////////////////////////////////////////////////////////
typedef double MoneyType;
/////////////////////////////////////////////////////////////////////////
///DateType是一个日期类型
/////////////////////////////////////////////////////////////////////////
typedef char DateType[9];
typedef int DateIntType;
/////////////////////////////////////////////////////////////////////////
///TimeType是一个时间类型
/////////////////////////////////////////////////////////////////////////
typedef char TimeType[9];
typedef int TimeIntType;
/////////////////////////////////////////////////////////////////////////
///UserIDType是一个用户代码类型
/////////////////////////////////////////////////////////////////////////
typedef char UserIDType[16];
/////////////////////////////////////////////////////////////////////////
///TFtdcPasswordType是一个密码类型
/////////////////////////////////////////////////////////////////////////
typedef char PasswordType[41];
/////////////////////////////////////////////////////////////////////////
///ProductInfoType是一个产品信息类型
/////////////////////////////////////////////////////////////////////////
typedef char ProductInfoType[11];
/////////////////////////////////////////////////////////////////////////
///BrokerIDType是一个经纪公司代码类型
/////////////////////////////////////////////////////////////////////////
typedef char BrokerIDType[11];
/////////////////////////////////////////////////////////////////////////
///AuthCodeType是一个客户端认证码类型
/////////////////////////////////////////////////////////////////////////
typedef char AuthCodeType[17];
/////////////////////////////////////////////////////////////////////////
///AddressType是一个地址类型
/////////////////////////////////////////////////////////////////////////
typedef char AddressType[512];
/////////////////////////////////////////////////////////////////////////
///VolumeMultipleType是一个合约数量乘数类型
/////////////////////////////////////////////////////////////////////////
typedef int VolumeMultipleType;
/////////////////////////////////////////////////////////////////////////
///InstrumentNameType是一个合约名称类型
/////////////////////////////////////////////////////////////////////////
typedef char InstrumentNameType[21];
/////////////////////////////////////////////////////////////////////////
///ContentType是一个消息正文类型
/////////////////////////////////////////////////////////////////////////
typedef char ContentType[501];
/////////////////////////////////////////////////////////////////////////
///SessionIDType是一个会话编号类型
/////////////////////////////////////////////////////////////////////////
typedef char SessionIDType[32];
/////////////////////////////////////////////////////////////////////////
///OrderIDType是一个订单唯一编号类型
/////////////////////////////////////////////////////////////////////////
typedef char OrderIDType[64];
/////////////////////////////////////////////////////////////////////////
///TradeIDType是一个成交编号类型
/////////////////////////////////////////////////////////////////////////
typedef char TradeIDType[64];
#endif