Tags not placed for when GTT Triggered

nsarup
Hi, My GTT triggers are being placedd fine, and orders are being triggered. But, when the order is placed by the trigger, the Tag "MYGTT" is not being placed.

Sample Params


$params = [
"trigger_type" => $kite::GTT_TYPE_OCO,
"tradingsymbol" => "$trading_symbol",
"exchange" => "NFO",
"trigger_values" => array((float)$sl_trigger_price, (float)$tgt_trigger_price),
"last_price" => fetchLTP($trading_symbol),
"orders" => array([
"transaction_type" => $kite::TRANSACTION_TYPE_SELL,
"quantity" => (int)$sl_qty,
"product" => $kite::PRODUCT_NRML,
"order_type" => $kite::ORDER_TYPE_LIMIT,
"price" => (float)$sl_myprice,
"tag" => "MYGTT"

], [
"transaction_type" => $kite::TRANSACTION_TYPE_SELL,
"quantity" => (int)$tgt_qty,
"product" => $kite::PRODUCT_NRML,
"order_type" => $kite::ORDER_TYPE_LIMIT,
"price" => (float)$tgt_myprice,
"tag" => "MYGTT"
])
];


Pl. help
This discussion has been closed.