Skip to main content

Get Batch Order List

batch_order_lists

Request Parameter

ParameterTypeMeaning
accountAccountAccount

Result Response

ParameterTypeMeaning
is_successboolInterface result
dataListBatchResult list is returned
messagestringis_success = False error description is returned

BatchResult Parameter

Return type : Object

ParameterTypeMeaning
function_typeintFunction Type : 0 New Order、 10 New Order Executed 、 15 Change Price 、 20 Change Quantity 、 30 Cancel 、 90 Failed
datestringQuery Date (today)
branch_nostringBranch number
accountstringAccount
batch_seq_nostringSerial number

Request Example

sdk.stock.batch_order_lists(account)

Response Example

Result {
is_success: True,
message: None,
data :[
BatchResult{
function_type: 0, # Function Type (int)
date: "2023/10/16", # Trading Date (string)
branch_no: "6460", # Branch Number (string)
account: "26", # Account (string)
batch_seq_no: "11EE6BC3B85670DE8000000C29304663" # Batch Order Serial Number (string)
},
BatchResult{
function_type: 15, # Function Type (int)
date: "2023/10/16", # Trading Date (string)
branch_no: "6460", # Branch Number (string)
account: "26", # Account (string)
batch_seq_no: "11EE6BC3E189F02A8000000C29304663" # Batch Order Serial Number (string)
},
...
]
}