Skip to content

Modify Bracket Order

Modify BRACKET order uTrade provides the feature to modify open bracket orders by allowing the user to modify quantity, limitprice and stoplossprice of an open Entry Order. The user have the flexibility to adjust the Limit Price for an active target order and the stop loss price for any existing stop loss order. It's important to note that when modifying a stop loss order, the limit price remains unaffected. Similarly, when modifying a profit order, the stop loss price remains unchanged. This strategic approach to order modifications prioritizes precision in trade management, allowing traders to fine-tune their positions while ensuring critical price levels are maintained for risk mitigation.

Method: PUT

{{SERVER_URL}}/api/V2/orders/BO

Headers

Content-Type Value
Authorization {{AUTH_TOKEN}}

Request Body: URL Encoded

Param Value
clientID Required in case of dealer
appOrderID The system generated unique order number
orderQuantity Order Quantity is the number of Sell or Buy orders
limitPrice The limit price is the specific price at which a trader is willing to buy or sell a financial instrument, such as a stock, bond, or commodity futures contract. It plays a crucial role in various types of orders, especially limit order
stopLossPrice A stop loss price is a price in a stop order that triggers the creation of a market order. In the case of a Sell on Stop order, a market sell order is triggered when the market price reaches or falls below the stop price.

Response: 200

{
    "code": 200,
    "description": "Request Sent",
    "result": {
        "AppOrderId": 2101100004,
        "ClientId": "CA492"
    },
    "type": "success"
}