Examples

Place Combo Order

request

{
    "accountId": "12345",
    "action": "BUY",
    "orderType": "LMT",
    "secType": "MLEG",
    "idempotencyKey": 17132536740002,
    "quantity": 1,
    "price": 1.5,
    "comboType": "VERTICAL",
    "contracts": [
        {
            "symbol": "TSLA",
            "secType": "OPT",
            "expiry": "20240621",
            "strike": 170,
            "right": "CALL",
            "action": "BUY",
            "ratio": 1
        },
        {
            "symbol": "TSLA",
            "secType": "OPT",
            "expiry": "20240621",
            "strike": 175,
            "right": "CALL",
            "action": "SELL",
            "ratio": 1
        }
    ]
}

Place TWAP order

{
    "accountId": 12345,
    "idempotencyKey": "17132536740002",
    "symbol": "AAPL",
    "quantity": "2000",
    "price": 100.0,
    "orderType": "VWAP",
    "wapStartTime": 1726236000000,
    "wapEndTime": 1726246000000,
    "action": "BUY",
    "secType": "STK"
}