@sujith Could you please help? Instead of checking order status, should I send order modification request straightaway and if exception occur (indicating SL-L order got completed), then handle it accordingly?
@sujith URL: https://api.kite.trade/orders/regular
Above URL and my complete code works for qty lower than freeze qty. Just stuck on iceberg orders.
According to my values, iceberg_quantity should be 1275. Please see below calculation:
quantity = 3…
@sujith Is legCount same as iceberg_legs? I used slicing as suggested and got the same error.
icebergLegs = Math.ceil(quantity / freezeQuantity);
const slice = quantity / icebergLegs;
icebergQuantity = Math.ceil((slice / lotSize)) * lotSize;
{
e…
@Sravanthi_bh Thanks for your input. Before posting this thread, I had gone through the shared post and many other posts on icebergs on the forum. The shared link's conclusion is still vague to me. Does it mean I need to modify as below?
freezeQuan…
I tried using iceberg_quantity in quantity but it executed only 1st leg of the iceberg. Lost 1k in just testing this buggy iceberg API with unclear documentation.
@sujith Does that mean in below order I should change quantity to 2400?
{
exchange: 'NFO',
variety: 'iceberg',
iceberg_legs: 2,
iceberg_quantity: 1200,
tradingsymbol: 'NIFTY25APR23800PE',
transaction_type: 'SELL',
order_t…
Instead of finding symbol from the instrument master, is there any way of finding symbol name on Kite website itself?
Trading symbol shows in Info section of traded instruments in the Orders page. But for never traded instruments, we cannot ge…