modifyOrder abstract method

void modifyOrder(
  1. String params
)

Modifies an existing open order.

params JSON shape:

{
  "orderID": "ORD001",
  "symID": "NIFTY",
  "price": 23000.0,
  "triggerPrice": 23001.0,
  "orderType": "limit",
  "orderAction": "buy",
  "qty": 50,
  "productType": "normal"
}

Implementation

void modifyOrder(String params);