以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://weistock.com/bbs/index.asp)
--  高级功能研发区  (http://weistock.com/bbs/list.asp?boardid=5)
----  序号几是最近一次交易的记录?  (http://weistock.com/bbs/dispbbs.asp?boardid=5&id=164883)

--  作者:投资老友-WAN
--  发布时间:2018/8/13 13:43:31
--  序号几是最近一次交易的记录?
请问在下面代码里,是i(基于0索引的成交明细)为0,或是i为OrderCount-1, 是最近一次交易的记录?

OrderCount = order.GetAllOrderDetaliedCount("")\'调取当前登录默认账户

For i = 0 To OrderCount-1
  Result = Order.GetAllOrderDetaliedInfo(i,"",Date,Code,Market,OrderType,Action,Price,Volume,Remaining,Kaiping,HoldType,Status,BH,OrderID)
  If Result <> 0 Then
   Application.MsgOut Date&"--"&Code&"--"&OrderID
  End If
Next