# SynchroByAccount 方法
ReqSettlementInfo(Account,date)
请求期货CTP接口的结算信息
参数
参数 | 说明 |
---|---|
Account | 账户名称,若为空字符串则表示当前登录账户 |
date | 结算日期 注意:当天日期需要盘后结算后才能获取,一般我们取上个交易日之前的日期 |
注意:
柜台返回的结算信息字符串在ActionNotify中标志为0的事件中获取。
示例
'获取2017/5/5日的期货账户结算信息
Sub Test()
Order.ReqSettlementInfo "",#2017/5/5#
End Sub
'事件接收处理函数
Sub ORDER_ActionNotify(Types, Account, Data)
If Types = 0 Then
Application.MsgOut Data '打印输出结算信息字符串
End If
End Sub
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
应用于