Skip to content

Today's Orders

GET /api/v1.0/sim-trade/{acc_id}/orders

Get today's order list.

Parameters

ParameterTypeLocationRequiredDescription
acc_idstringpathYesBusiness account ID

Request Example

bash
curl -s "https://webapi.moomoo.com/api/v1.0/sim-trade/80303779/orders" | jq

Response Fields

Returns data.orders[].

FieldTypeDescription
order_idstringOrder ID
sideint1=Buy 2=Sell 3=Short Sell 4=Buy Back
symbolstringSymbol
stock_namestringName
order_typeint1=Limit 3=Market
statusint2=Submitted 3=Partially Filled 4=Filled 5=Cancelled 6=Rejected
qtystringOrder quantity
cum_qtystringFilled quantity
pricestringOrder price
avg_fill_pricestringAverage fill price
aux_pricestring/nullStop-loss price
create_timestringCreated time (microseconds)
update_timestringUpdated time (microseconds)
textstringRemark

Response Example

json
{
  "ret_code": 0,
  "data": {
    "orders": [
      {
        "order_id": "1270777",
        "side": 1,
        "symbol": "00700",
        "stock_name": "腾讯控股",
        "order_type": 1,
        "status": 4,
        "qty": "100",
        "cum_qty": "100",
        "price": "999",
        "avg_fill_price": "448.2",
        "create_time": "1781578935000000",
        "update_time": "1781578935000000"
      }
    ]
  }
}