It looks like you're new here. If you want to get involved, click one of these buttons!
kite.place_order(tradingsymbol=symbol,
exchange=kite.EXCHANGE_NFO,
transaction_type=kite.TRANSACTION_TYPE_BUY,
quantity=quantity,
order_type=kite.ORDER_TYPE_MARKET,
product=kite.PRODUCT_MIS,
variety=kite.VARIETY_REGULAR)
So if I do not specify any price here then does it buy at ltp? ltp = kite.ltp("NFO:" + symbol)["NFO:" + symbol]['last_price']
Also is this correct now?
You need to send validity and remove the trigger price.
So if I want to buy at some price higher than ltp how should I modify the above code.
Also instead can I place a single type GTT buy order?