EMT TraderAPI  ver: 2.2.0
emt_quote_struct.h
浏览该文件的文档.
1 #pragma once
2 
3 #ifndef __EMT_MARKETDATA_H__
4 #define __EMT_MARKETDATA_H__ extern "C" _declspec(dllimport)
5 
6 #include "emt_api_data_type.h"
7 #include <inttypes.h>
8 
9 #pragma pack(1) // 内存以1字节为单位对齐
10 
11 #define MAX_LEVEL_NUM 10
12 #define MAX_LEVEL_ORDERS_NUM 50
13 #define EMT_ERR_MSG_LEN 124
14 
17 {
23 
25 typedef struct _EMTRspInfoStruct
26 {
28  int32_t error_id;
32 
34 typedef struct _EMTIndexDataStruct
35 {
41  int64_t data_time;
45  double open_price;
47  double last_price;
49  double high_price;
51  double low_price;
53  int64_t qty;
55  double turnover;
56 
58 
61 {
63  double iopv;
65  int32_t etf_buy_count;
67  int32_t etf_sell_count;
69  double etf_buy_qty;
71  double etf_buy_money;
73  double etf_sell_qty;
77  double pre_iopv;
79 
80 
83 {
91 
94 {
102 
105 {
109  int64_t auction_qty;
112 
113  // 期权数据
121  double settl_price;
123 
125 typedef struct _EMTMarketDataStruct
126 {
131 
132  // 价格
134  double last_price;
138  double open_price;
140  double high_price;
142  double low_price;
144  double close_price;
145 
146  // 涨跌停
152  double pre_delta;
154  double curr_delta;
156  int64_t data_time;
157 
158  // 量额数据
160  int64_t qty;
162  double turnover;
164  double avg_price;
165 
166  // 买卖盘
168  double bid[10];
170  double ask[10];
172  int64_t bid_qty[10];
174  int64_t ask_qty[10];
175 
177  int64_t trades_count;
179  char ticker_status[8];
180 
182  int64_t total_bid_qty;
184  int64_t total_ask_qty;
186  double ma_bid_price;
188  double ma_ask_price;
189 
211  int32_t num_bid_orders;
213  int32_t num_ask_orders;
215  union {
224  };
227 
229 
231 typedef struct _EMTTickByTickEntrust
232 {
234  int32_t channel_no;
236  char side;
238  char ord_type;
240  char __filler[2];
242  int64_t seq;
244  double price;
246  int64_t qty;
248 
250 typedef struct _EMTTickByTickTrade
251 {
253  int32_t channel_no;
257  char __filler[3];
259  int64_t seq;
261  int64_t bid_no;
263  int64_t ask_no;
265  double price;
267  int64_t qty;
269  double money;
270 
272 
274 typedef struct _EMTTickByTickStruct
275 {
277  int64_t data_time;
279  int64_t seq;
286 
288  union {
291  };
292 
294 
295 // ///
296 // /// @brief EMT_QUALIFICATION_TYPE是一个证券适当性枚举类型
297 // typedef enum _EMT_QUALIFICATION_TYPE
298 // {
299 // EMT_QUALIFICATION_PUBLIC = 0, /// 公众投资者,合格投资者与机构投资者均可
300 // EMT_QUALIFICATION_COMMON = 1, /// 仅合格投资者与公众投资者
301 // EMT_QUALIFICATION_ORGANIZATION = 2, /// 仅限机构投资者
302 // EMT_QUALIFICATION_UNKNOWN = 3 /// 未知,期权等可能为此种类型
303 // }EMT_QUALIFICATION_TYPE;
304 
306 typedef struct _EMTQuoteStaticInfo {
322  double price_tick;
324  int32_t buy_qty_unit;
326  int32_t sell_qty_unit;
328 
330 typedef struct _EMTQuoteFullInfo {
344  bool is_VIE;
346  bool is_noprofit;
358  double price_tick;
364  int32_t bid_qty_unit;
370  int32_t ask_qty_unit;
384  uint64_t unknown[4];
386 
388 typedef struct _EMTOrderBookStruct {
393 
395  double last_price;
397  int64_t qty;
399  double turnover;
401  int64_t trades_count;
402 
403  // 买卖盘
405  double bid[10];
407  double ask[10];
409  int64_t bid_qty[10];
411  int64_t ask_qty[10];
413  int64_t data_time;
415 
417 typedef struct _EMTMinuteInfo {
425  int64_t data_time;
427  double last_price;
429  int64_t volume_trade;
431  double value_trade;
433  double avg_price;
435 
438 {
442  uint32_t max_bid1_count;
444  uint32_t bid1_count;
446  int64_t bid1_qty[50];
448  uint32_t max_ask1_count;
450  uint32_t ask1_count;
452  int64_t ask1_qty[50];
454 
456 typedef struct _EMTLatestDataStruct
457 {
460 
462  union {
467  };
469 
470 
471 
472 #pragma pack() // 恢复默认内存对齐方式
473 
474 #endif // !__EMT_MARKETDATA_H__
定义兼容数据基本类型
EMT_TBT_TYPE
EMT_TBT_TYPE是一个逐笔回报类型
Definition: emt_api_data_type.h:393
EMT_SECURITY_TYPE
EMT_SECURITY_TYPE是一个证券详细分类枚举类型
Definition: emt_api_data_type.h:556
EMT_TICKER_TYPE
EMT_TICKER_TYPE证券类型
Definition: emt_api_data_type.h:289
EMT_EXCHANGE_TYPE
EMT_EXCHANGE_TYPE是交易所类型,行情里使用
Definition: emt_api_data_type.h:85
EMT_QUALIFICATION_TYPE
EMT_QUALIFICATION_TYPE是一个证券适当性枚举类型
Definition: emt_api_data_type.h:546
#define EMT_TICKER_NAME_LEN
存放证券名称的字符串长度
Definition: emt_api_data_type.h:24
#define EMT_TICKER_LEN
存放证券代码的字符串长度
Definition: emt_api_data_type.h:22
struct _EMTRspInfoStruct EMTRspInfoStruct
响应信息
struct _EMTQuoteFullInfo EMTQuoteFullInfo
股票行情全量静态信息
struct _EMTMarketDataStruct EMTMarketDataStruct
快照行情结构体
struct _EMTLatestDataStruct EMTLatestDataStruct
最新快照指数数据
struct _EMTTickByTickStruct EMTTickByTickStruct
逐笔数据信息
struct _EMTQuoteStaticInfo EMTQuoteStaticInfo
股票行情静态信息
struct _EMTMarketDataFullStruct EMTMarketDataFullStruct
现货快照
struct _EMTIndexDataStruct EMTIndexDataStruct
指数行情结构体
struct _EMTOrderBookStruct EMTOrderBookStruct
订单簿
#define EMT_ERR_MSG_LEN
Definition: emt_quote_struct.h:13
struct _EMTMinuteInfo EMTMinuteInfo
现货(股票、基金、债券)和期权分时快照
struct _EMTSpecificTickerStruct EMTSpecificTickerStruct
指定的合约
struct _EMTMarketDataFundExData EMTMarketDataFundExData
基金额外数据结构体
struct _EMTMarketDataOptionExData EMTMarketDataOptionExData
期权额外数据
struct _EMTTickByTickTrade EMTTickByTickTrade
逐笔成交数据
struct _EMTMarketDataWarrantExData EMTMarketDataWarrantExData
权证额外数据
struct _EMTMarketDataBondExData EMTMarketDataBondExData
债券额外数据结构体
struct _EMTTickByTickEntrust EMTTickByTickEntrust
逐笔委托数据(当前仅适用深交所)
指数行情结构体
Definition: emt_quote_struct.h:35
int64_t qty
数量,为总成交量(单位股,与交易所一致)
Definition: emt_quote_struct.h:53
double high_price
最高价
Definition: emt_quote_struct.h:49
char ticker[EMT_TICKER_LEN]
合约代码(不包含交易所信息),不带空格,以"\0"结尾
Definition: emt_quote_struct.h:39
double low_price
最低价
Definition: emt_quote_struct.h:51
EMT_EXCHANGE_TYPE exchange_id
交易所代码
Definition: emt_quote_struct.h:37
double last_price
最新价
Definition: emt_quote_struct.h:47
double open_price
今日开盘价
Definition: emt_quote_struct.h:45
int64_t data_time
行情时间,格式为YYYYMMDDHHMMSSssss
Definition: emt_quote_struct.h:41
double turnover
成交金额,为总成交金额(单位元,与交易所一致)
Definition: emt_quote_struct.h:55
double pre_close_price
昨日收盘价
Definition: emt_quote_struct.h:43
最新快照指数数据
Definition: emt_quote_struct.h:457
EMTIndexDataStruct indexdata
最新指数数据
Definition: emt_quote_struct.h:466
EMTMarketDataFullStruct markdata
最新快照数据
Definition: emt_quote_struct.h:464
EMT_TICKER_TYPE ticker_type
合约类型
Definition: emt_quote_struct.h:459
债券额外数据结构体
Definition: emt_quote_struct.h:83
double ma_bond_ask_price
债券加权平均委卖价格(SH)
Definition: emt_quote_struct.h:87
double ma_bond_bid_price
债券加权平均委买价格(SH)
Definition: emt_quote_struct.h:85
double yield_to_maturity
债券到期收益率(SH)
Definition: emt_quote_struct.h:89
现货快照
Definition: emt_quote_struct.h:438
uint32_t bid1_count
买一档委托数
Definition: emt_quote_struct.h:444
int64_t ask1_qty[50]
卖一档委托详情
Definition: emt_quote_struct.h:452
uint32_t ask1_count
卖一档委托数
Definition: emt_quote_struct.h:450
int64_t bid1_qty[50]
买一档委托详情
Definition: emt_quote_struct.h:446
uint32_t max_ask1_count
卖一档委托总笔数
Definition: emt_quote_struct.h:448
EMTMarketDataStruct marketData
现货快照
Definition: emt_quote_struct.h:440
uint32_t max_bid1_count
买一档委托总笔数
Definition: emt_quote_struct.h:442
基金额外数据结构体
Definition: emt_quote_struct.h:61
double etf_sell_money
ETF赎回金额(SH)
Definition: emt_quote_struct.h:75
int32_t etf_sell_count
ETF赎回笔数(SH)
Definition: emt_quote_struct.h:67
double pre_iopv
基金T-1日净值(SZ)
Definition: emt_quote_struct.h:77
double etf_buy_money
ETF申购金额(SH)
Definition: emt_quote_struct.h:71
double iopv
基金实时参考净值(SH,SZ)
Definition: emt_quote_struct.h:63
double etf_buy_qty
ETF申购数量(SH)
Definition: emt_quote_struct.h:69
int32_t etf_buy_count
ETF申购笔数(SH)
Definition: emt_quote_struct.h:65
double etf_sell_qty
ETF赎回数量(SH)
Definition: emt_quote_struct.h:73
期权额外数据
Definition: emt_quote_struct.h:105
int64_t last_enquiry_time
最近询价时间(SH)
Definition: emt_quote_struct.h:111
int64_t auction_qty
波段性中断集合竞价虚拟匹配量(SH)
Definition: emt_quote_struct.h:109
int64_t total_long_positon
持仓量(张)(目前未填写)
Definition: emt_quote_struct.h:117
double settl_price
今日结算价(目前未填写)
Definition: emt_quote_struct.h:121
int64_t pre_total_long_positon
昨日持仓量(张)(目前未填写)
Definition: emt_quote_struct.h:115
double auction_price
波段性中断参考价(SH)
Definition: emt_quote_struct.h:107
double pre_settl_price
昨日结算价(目前未填写)
Definition: emt_quote_struct.h:119
快照行情结构体
Definition: emt_quote_struct.h:126
double upper_limit_price
涨停价(SZ)
Definition: emt_quote_struct.h:148
int64_t qty
数量,为总成交量(单位股,与交易所一致)
Definition: emt_quote_struct.h:160
double lower_limit_price
跌停价(SZ)
Definition: emt_quote_struct.h:150
EMTMarketDataWarrantExData warrant
权证额外数据
Definition: emt_quote_struct.h:221
int64_t total_bid_qty
委托买入总量(SH,SZ)
Definition: emt_quote_struct.h:182
int64_t total_buy_count
买入总笔数(SH)
Definition: emt_quote_struct.h:203
char ticker_status[8]
当前交易状态说明(SH)
Definition: emt_quote_struct.h:179
double high_price
最高价
Definition: emt_quote_struct.h:140
int32_t duration_after_buy
买入委托成交最大等待时间(SH)
Definition: emt_quote_struct.h:207
int32_t num_bid_orders
买方委托价位数(SH)
Definition: emt_quote_struct.h:211
EMTMarketDataBondExData bond
债券额外数据
Definition: emt_quote_struct.h:217
int32_t num_ask_orders
卖方委托价位数(SH)
Definition: emt_quote_struct.h:213
double avg_price
当日均价=(turnover/qty)
Definition: emt_quote_struct.h:164
double curr_delta
预留(目前未填写)
Definition: emt_quote_struct.h:154
char ticker[EMT_TICKER_LEN]
合约代码(不包含交易所信息),不带空格。以"\0"结尾
Definition: emt_quote_struct.h:130
EMTMarketDataFundExData fund
基金额外数据
Definition: emt_quote_struct.h:219
double low_price
最低价
Definition: emt_quote_struct.h:142
double cancel_buy_money
买入撤单金额(SH)
Definition: emt_quote_struct.h:199
EMTMarketDataOptionExData opt
期权额外数据
Definition: emt_quote_struct.h:223
double ask[10]
十档申卖价
Definition: emt_quote_struct.h:170
int32_t cancel_buy_count
买入撤单笔数(SH)
Definition: emt_quote_struct.h:191
double cancel_sell_qty
卖出撤单数量(SH)
Definition: emt_quote_struct.h:197
int64_t trades_count
成交笔数
Definition: emt_quote_struct.h:177
double ma_bid_price
加权平均委买价格(SH,SZ)
Definition: emt_quote_struct.h:186
EMT_EXCHANGE_TYPE exchange_id
交易所代码
Definition: emt_quote_struct.h:128
double bid[10]
十档申买价
Definition: emt_quote_struct.h:168
double last_price
最新价
Definition: emt_quote_struct.h:134
int64_t bid_qty[10]
十档申买量
Definition: emt_quote_struct.h:172
double ma_ask_price
加权平均委卖价格(SH,SZ)
Definition: emt_quote_struct.h:188
int64_t total_ask_qty
委托卖出总量(SH,SZ)
Definition: emt_quote_struct.h:184
double open_price
今开盘价
Definition: emt_quote_struct.h:138
int32_t duration_after_sell
卖出委托成交最大等待时间(SH)
Definition: emt_quote_struct.h:209
int64_t data_time
行情时间,格式为YYYYMMDDHHMMSSssss
Definition: emt_quote_struct.h:156
double cancel_sell_money
卖出撤单金额(SH)
Definition: emt_quote_struct.h:201
int32_t cancel_sell_count
卖出撤单笔数(SH)
Definition: emt_quote_struct.h:193
EMT_TICKER_TYPE data_type
证券类别;1:股票,基金,债券,权证,质押式回购;2:期权;决定了union是哪种数据类型
Definition: emt_quote_struct.h:226
int64_t ask_qty[10]
十档申卖量
Definition: emt_quote_struct.h:174
double cancel_buy_qty
买入撤单数量(SH)
Definition: emt_quote_struct.h:195
double pre_delta
预留(目前未填写)
Definition: emt_quote_struct.h:152
int64_t total_sell_count
卖出总笔数(SH)
Definition: emt_quote_struct.h:205
double turnover
成交金额,为总成交金额(单位元,与交易所一致)
Definition: emt_quote_struct.h:162
double pre_close_price
昨日收盘价
Definition: emt_quote_struct.h:136
double close_price
今收盘价(SH)
Definition: emt_quote_struct.h:144
权证额外数据
Definition: emt_quote_struct.h:94
double total_warrant_exec_qty
权证执行的总数量(SH)
Definition: emt_quote_struct.h:96
double warrant_upper_price
权证涨停价格(元)(SH)
Definition: emt_quote_struct.h:100
double warrant_lower_price
权证跌停价格(元)(SH)
Definition: emt_quote_struct.h:98
现货(股票、基金、债券)和期权分时快照
Definition: emt_quote_struct.h:417
double avg_price
均价,单位:元
Definition: emt_quote_struct.h:433
EMT_EXCHANGE_TYPE exchange_type
交易所代码
Definition: emt_quote_struct.h:419
EMT_TICKER_TYPE ticker_type
合约类型
Definition: emt_quote_struct.h:421
char ticker[EMT_TICKER_LEN]
合约代码(不包含交易所信息),不带空格,以'\0'结尾
Definition: emt_quote_struct.h:423
int64_t volume_trade
一分钟内成交总量,单位:股
Definition: emt_quote_struct.h:429
double last_price
最新价
Definition: emt_quote_struct.h:427
int64_t data_time
时间,格式为YYYYMMDDHHMMSSsss
Definition: emt_quote_struct.h:425
double value_trade
一分钟内成交总金额,单位:元
Definition: emt_quote_struct.h:431
订单簿
Definition: emt_quote_struct.h:388
int64_t qty
数量,为总成交量
Definition: emt_quote_struct.h:397
char ticker[EMT_TICKER_LEN]
合约代码(不包含交易所信息),不带空格,以'\0'结尾
Definition: emt_quote_struct.h:392
double ask[10]
十档申卖价
Definition: emt_quote_struct.h:407
int64_t trades_count
成交笔数
Definition: emt_quote_struct.h:401
EMT_EXCHANGE_TYPE exchange_id
交易所代码
Definition: emt_quote_struct.h:390
double bid[10]
十档申买价
Definition: emt_quote_struct.h:405
double last_price
最新价
Definition: emt_quote_struct.h:395
int64_t bid_qty[10]
十档申买量
Definition: emt_quote_struct.h:409
int64_t data_time
时间类
Definition: emt_quote_struct.h:413
int64_t ask_qty[10]
十档申卖量
Definition: emt_quote_struct.h:411
double turnover
成交金额,为总成交金额
Definition: emt_quote_struct.h:399
股票行情全量静态信息
Definition: emt_quote_struct.h:330
double upper_limit_price
涨停价(仅在有涨跌幅限制时有效)
Definition: emt_quote_struct.h:352
int32_t market_ask_qty_unit
市价卖数量单位
Definition: emt_quote_struct.h:382
EMT_SECURITY_TYPE security_type
合约详细类型
Definition: emt_quote_struct.h:338
double lower_limit_price
跌停价(仅在有涨跌幅限制时有效)
Definition: emt_quote_struct.h:354
int32_t ask_qty_lower_limit
限价卖委托数量下限
Definition: emt_quote_struct.h:368
EMT_QUALIFICATION_TYPE ticker_qualification_class
合约适当性类别
Definition: emt_quote_struct.h:340
bool is_have_price_limit
是否有涨跌幅限制(注:不提供具体幅度,可通过涨跌停价和昨收价来计算幅度)
Definition: emt_quote_struct.h:350
int32_t market_bid_qty_unit
市价买数量单位
Definition: emt_quote_struct.h:376
double price_tick
价格最小变动价位
Definition: emt_quote_struct.h:358
char ticker[EMT_TICKER_LEN]
证券代码
Definition: emt_quote_struct.h:334
int32_t bid_qty_upper_limit
限价买委托数量上限
Definition: emt_quote_struct.h:360
int32_t bid_qty_lower_limit
限价买委托数量下限
Definition: emt_quote_struct.h:362
bool is_registration
是否注册制(仅适用创业板股票,创新企业股票及存托凭证)
Definition: emt_quote_struct.h:342
int32_t market_ask_qty_upper_limit
市价卖委托数量上限
Definition: emt_quote_struct.h:378
int32_t market_bid_qty_upper_limit
市价买委托数量上限
Definition: emt_quote_struct.h:372
int32_t ask_qty_unit
限价卖数量单位
Definition: emt_quote_struct.h:370
bool is_VIE
是否具有协议控制架构(仅适用创业板股票,创新企业股票及存托凭证)
Definition: emt_quote_struct.h:344
EMT_EXCHANGE_TYPE exchange_id
交易所代码
Definition: emt_quote_struct.h:332
int32_t bid_qty_unit
限价买数量单位
Definition: emt_quote_struct.h:364
bool is_noprofit
是否尚未盈利(仅适用创业板股票,创新企业股票及存托凭证)
Definition: emt_quote_struct.h:346
bool is_weighted_voting_rights
是否存在投票权差异(仅适用创业板股票,创新企业股票及存托凭证)
Definition: emt_quote_struct.h:348
int32_t market_ask_qty_lower_limit
市价卖委托数量下限
Definition: emt_quote_struct.h:380
char ticker_name[EMT_TICKER_NAME_LEN]
证券名称
Definition: emt_quote_struct.h:336
uint64_t unknown[4]
保留字段
Definition: emt_quote_struct.h:384
double pre_close_price
昨收价
Definition: emt_quote_struct.h:356
int32_t ask_qty_upper_limit
限价卖委托数量上限
Definition: emt_quote_struct.h:366
int32_t market_bid_qty_lower_limit
市价买委托数量下限
Definition: emt_quote_struct.h:374
股票行情静态信息
Definition: emt_quote_struct.h:306
double upper_limit_price
涨停板价
Definition: emt_quote_struct.h:318
double lower_limit_price
跌停板价
Definition: emt_quote_struct.h:320
EMT_TICKER_TYPE ticker_type
合约类型
Definition: emt_quote_struct.h:314
double price_tick
最小变动价位
Definition: emt_quote_struct.h:322
char ticker[EMT_TICKER_LEN]
合约代码(不包含交易所信息),不带空格,以'\0'结尾
Definition: emt_quote_struct.h:310
EMT_EXCHANGE_TYPE exchange_id
交易所代码
Definition: emt_quote_struct.h:308
char ticker_name[EMT_TICKER_NAME_LEN]
合约名称
Definition: emt_quote_struct.h:312
int32_t sell_qty_unit
合约最小交易量(卖)
Definition: emt_quote_struct.h:326
int32_t buy_qty_unit
合约最小交易量(买)
Definition: emt_quote_struct.h:324
double pre_close_price
昨收盘
Definition: emt_quote_struct.h:316
响应信息
Definition: emt_quote_struct.h:26
int32_t error_id
错误代码
Definition: emt_quote_struct.h:28
char error_msg[EMT_ERR_MSG_LEN]
错误信息
Definition: emt_quote_struct.h:30
指定的合约
Definition: emt_quote_struct.h:17
char ticker[EMT_TICKER_LEN]
合约代码(不包含交易所信息)例如"600000",不带空格,以'\0'结尾
Definition: emt_quote_struct.h:21
EMT_EXCHANGE_TYPE exchange_id
交易所代码
Definition: emt_quote_struct.h:19
逐笔委托数据(当前仅适用深交所)
Definition: emt_quote_struct.h:232
int64_t qty
委托数量
Definition: emt_quote_struct.h:246
int32_t channel_no
频道代码
Definition: emt_quote_struct.h:234
double price
委托价格
Definition: emt_quote_struct.h:244
char __filler[2]
填充字段
Definition: emt_quote_struct.h:240
char side
买卖方向:1":买;"2":卖;"G":借入;"F":出借
Definition: emt_quote_struct.h:236
char ord_type
订单类别:"1":市价;"2":限价;"U":本方最优
Definition: emt_quote_struct.h:238
int64_t seq
委托序号(在同一个channel_no内唯一,从1开始连续)
Definition: emt_quote_struct.h:242
逐笔数据信息
Definition: emt_quote_struct.h:275
EMT_TBT_TYPE type
逐笔类型;"1":逐笔委托;"2":逐笔成交
Definition: emt_quote_struct.h:285
char ticker[EMT_TICKER_LEN]
合约代码(不包含交易所信息),不带空格,以"\0"结尾
Definition: emt_quote_struct.h:283
EMTTickByTickEntrust entrust
Definition: emt_quote_struct.h:289
EMTTickByTickTrade trade
Definition: emt_quote_struct.h:290
EMT_EXCHANGE_TYPE exchange_id
交易所代码
Definition: emt_quote_struct.h:281
int64_t data_time
委托时间or成交时间
Definition: emt_quote_struct.h:277
int64_t seq
消息记录号,从1开始
Definition: emt_quote_struct.h:279
逐笔成交数据
Definition: emt_quote_struct.h:251
int64_t bid_no
买方订单号(SH);买方委托索引(SZ)
Definition: emt_quote_struct.h:261
int64_t qty
成交量(股票:股;债券:手)
Definition: emt_quote_struct.h:267
int32_t channel_no
成交通道(SH);频道代码(SZ)
Definition: emt_quote_struct.h:253
int64_t ask_no
卖方订单号(SH);卖方委托索引(SZ)
Definition: emt_quote_struct.h:263
double money
成交金额(元;仅适用于上交所;等于成交价格*成交数量)
Definition: emt_quote_struct.h:269
char __filler[3]
填充字段
Definition: emt_quote_struct.h:257
double price
成交价格(元)
Definition: emt_quote_struct.h:265
char trade_flag
SH:内外盘标识('B':主动买; 'S':主动卖; 'N':未知);SZ:成交类别('4':Cancelled,表示已撤销;'F':Trade,表示已成交)
Definition: emt_quote_struct.h:255
int64_t seq
成交序号(SH);消息记录号(SZ)(在同一个channel_no内唯一,从1开始连续)
Definition: emt_quote_struct.h:259