Skip to main content

取得批次委託列表

BatchOrderLists

輸入參數

參數類別說明
accountAccount帳號

Result 回傳

參數類別說明
isSuccessbool是否成功
dataList回傳批次單資訊
messagestring當isSuccess = False 回傳錯誤訊息

批次單 BatchResult 欄位

Return type : Object

參數類別說明
functionTypeint功能別 : 0 新單 、10 新單執行、 15 改價 、 20 改量 、 30 刪單 、90失敗
datestring交易日期
branchNostring分公司代號
accountstring帳號
batchSeqNostring批次單流水序號

請求範例

Console.WriteLine(sdk.FutOpt.BatchOrderLists(account));

回傳範例

{
isSuccess = True,
message = ,
data = [
BatchResult{
functionType = 0, // 功能種類 (int)
date = 2023/10/04, // 交易日期 (string)
branchNo = 6460, // 分公司代號 (string)
account = 26, // 帳號 (string)
batchSeqNo = 11EE626533D072228000000C29304663 // 批次單流水序號 (string)
},
...
]
}