Callback for kite.PlaceOrder

infotrade
Hi,

Can you please send me a callback implementation for Place Order call? I just need to know order Id and place order price after placing order.
I am making market price order call as below.

kite.PlaceOrder(
Exchange: Constants.EXCHANGE_NSE,
TradingSymbol: "*********",
TransactionType: Constants.TRANSACTION_TYPE_BUY,
Quantity: 1,
Product: Constants.PRODUCT_MIS,
OrderType: Constants.ORDER_TYPE_MARKET,
Validity: Constants.VALIDITY_DAY,
Variety: Constants.VARIETY_REGULAR
);

  • infotrade
    This is what got it from your site.
    Console.WriteLine("Order Id: " + response["data"]["order_id"]);

    Can you please send me all possible parameter for response ? I don't want to place any dummy order to know/code it
  • infotrade
    infotrade edited March 2019
    If we place any order of 500 or any bigger quantity of any stock at market price, Will it generate only one order Id or multiple order Id?
  • rakeshr
    @infotrade
    For Limit Order,when the Stock CMP reach at entered price it gets executed but If your buy/sell quantity is not available,the remaining Quantity will be in queue waiting. When again CMP will go at that price then your buy/sell price quantity get executed and this create multiple orders in order book.
  • sujith
    @infotrade,
    Basically, there will be always one order id but it can have multiple trade ids.
Sign In or Register to comment.