# TradeDetalied2 方法
TradeDetalied2(Index, Date, Code, Market, OrderType, Action, Price, Volume, Kaiping, Account)
取指定基于0索引序号的帐户成交明细。
返回值:成功返回1,失败返回0
参数
参数 | 说明 | 备注 |
---|---|---|
Index | 基于0索引的成交明细 | 输入参数 |
Date | 成交时间 | 输出参数 |
Code | 品种代码。 注意:如果频繁调用该属性,请注意使用完毕后释放返回值 | 输出参数 |
Market | 品种市场。 注意:如果频繁调用该属性,请注意使用完毕后释放返回值 | 输出参数 |
OrderType | 成交单类型: 0限价 1 市价 2 停损 3 限价停损 4 fak 5 fok 6 对手方最优价优先 7 本方最优价优先 | 输出参数 |
Action | 成交方向 0买入 1卖出 | 输出参数 |
Price | 成交价格 | 输出参数 |
Volume | 成交量 | 输出参数 |
Kaiping | 开平仓类型 0开仓 1平仓 | 输出参数 |
Account | 成交帐户,可省略,若省略则表示当前默认激活帐户。注意:如果频繁调用该属性,请注意使用完毕后释放返回值 | 输入参数 |
示例
Sub Test()
'显示成交明细数量
msgbox order.TradeCount2
dim date
dim code
dim market
dim ordertype
dim Action
dim Price
dim Volume
dim Kaiping
'读取第一个成交记录
order.TradeDetalied2 0,date,code,market,ordertype,action,price,volume,Kaiping,"351579"
'显示取到成交明细时间
msgbox date
'释放字符串变量内存
Set Code = nothing
Set Market = nothing
Set Account = nothing
End Sub
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
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
应用于