forked from QuantBox/QuantBox_XAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRequestType.cs
44 lines (36 loc) · 965 Bytes
/
RequestType.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QuantBox.XAPI
{
public enum RequestType:byte
{
Create = 0, // 创建
Release, // 销毁
Register, // 注册回调
Config, // 配置参数
Connect, // 开始/连接
Disconnect, // 停止/断开
Clear, // 清理
Process, // 处理
Subscribe, // 订阅
Unsubscribe, // 取消订阅
SubscribeQuote, // 订阅应价
UnsubscribeQuote, // 取消应价
ReqOrderInsert,
ReqQuoteInsert,
ReqOrderAction,
ReqQuoteAction,
ReqQryOrder,
ReqQryTrade,
ReqQryInstrument,
ReqQryTradingAccount,
ReqQryInvestorPosition,
ReqQryInvestorPositionDetail,
ReqQryInstrumentCommissionRate,
ReqQryInstrumentMarginRate,
ReqQrySettlementInfo,
}
}