It looks like you're new here. If you want to get involved, click one of these buttons!
Can you please confirm; by using the KITE API V3; only one order can be placed at a time or, multiple order can be placed one after another .
$order_id = $kite->placeOrder("regular", [ "tradingsymbol" => "INFY", "exchange" => "NSE", "quantity" => 1, "transaction_type" => "BUY", "order_type" => "MARKET", "product" => "NRML" ])["order_id"];
$order_id = $kite->placeOrder("regular", [ "tradingsymbol" => "INFY", "exchange" => "NSE", "quantity" => 1, "transaction_type" => "BUY", "order_type" => "MARKET", "product" => "NRML" ]);
@sujith Can you please confirm; by using the KITE API V3; only one order can be placed at a time or, multiple order can be placed one after another .
Make sure, your code is not exiting because of local error.
They have given the code as
// Place order. So change it to:
// Place order. It will fix ur issue ..