# 期货交易消息推送
# 场景说明
订单的委托状态发生变化即会推送消息,包括:委托、撤单、改单、成交。
# 消息说明
消息类型:NotifyMsgType.FuturesTradeStockDeliverMsgType
- 推送结果实体
message TradeStockDeliverNotify {
string fundAccount = 1; //资金账号
string stockCode = 2; //股票代码
string stockName = 3; //股票名称
string entrustBs = 4; //委托方向
string businessPrice = 5; //成交价格
string businessAmount = 6; //成交数量
string businessDate = 7; //成交日期
string businessTime = 8; //成交时间
string entrustStatus = 10; //委托状态
string clientId = 11; //客户号
string entrustNo=12; //委托编号
string sumBusinessAmount = 13; //总数量
string sumBusinessBalance=14; //总金额
string recordNo=20; //订单号,与entrustNo相同
string matchNo=22; //成交流水号,有成交的情况才会有
}