Get Batch Order List
batch_order_lists
Request Parameter
Parameter | Type | Meaning |
---|---|---|
account | Account | Account |
Result Response
Parameter | Type | Meaning |
---|---|---|
is_success | bool | Interface result |
data | List | BatchResult list is returned |
message | string | is_success = False error description is returned |
BatchResult Parameter
Return type : Object
Parameter | Type | Meaning |
---|---|---|
function_type | int | Function Type : 0 New 、10 Execute New、 15 Amend Price 、 20 Amend Lot 、 30 Cancel 、90 Failed |
date | string | Query Date (today) |
branch_no | string | Branch number |
account | string | Account |
batch_seq_no | string | Serial number |
Request Example
sdk.futopt.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)
},
...
]
}