forked from QuantBox/QuantBox_XAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDelegate.cs
25 lines (21 loc) · 1.62 KB
/
Delegate.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QuantBox.XAPI
{
public delegate void DelegateOnConnectionStatus(object sender,ConnectionStatus status,ref RspUserLoginField userLogin,int size1);
public delegate void DelegateOnRtnError(object sender, ref ErrorField error);
public delegate void DelegateOnRtnDepthMarketData(object sender,ref DepthMarketDataField marketData);
public delegate void DelegateOnRtnQuoteRequest(object sender,ref QuoteRequestField quoteRequest);
public delegate void DelegateOnRspQryInstrument(object sender, ref InstrumentField instrument,int size1, bool bIsLast);
public delegate void DelegateOnRspQryTradingAccount(object sender, ref AccountField account, int size1, bool bIsLast);
public delegate void DelegateOnRspQryInvestorPosition(object sender, ref PositionField position, int size1, bool bIsLast);
public delegate void DelegateOnRspQrySettlementInfo(object sender, ref SettlementInfoField settlementInfo, int size1, bool bIsLast);
public delegate void DelegateOnRtnOrder(object sender, ref OrderField order);
public delegate void DelegateOnRtnTrade(object sender, ref TradeField trade);
public delegate void DelegateOnRtnQuote(object sender, ref QuoteField quote);
public delegate void DelegateOnRspQryHistoricalTicks(object sender, IntPtr pTicks, int size1, ref HistoricalDataRequestField request, int size2, bool bIsLast);
public delegate void DelegateOnRspQryHistoricalBars(object sender, IntPtr pBars, int size1, ref HistoricalDataRequestField request, int size2, bool bIsLast);
}