Market Bracket Order in Kite 3.0 Python Client

tahseen
What to be edited / added in the below to convert this into a market entry order. As in I just want to enter the market at whatever price it is right now irrespective of what my price=entryPrice is

Note this is Kite 3.0

kite.place_order(variety=kite.VARIETY_BO,
exchange=kite.EXCHANGE_NSE,
order_type=kite.ORDER_TYPE_LIMIT,
tradingsymbol=stockname,
transaction_type=kite.TRANSACTION_TYPE_SELL,
quantity=lotSize,
price=entryPrice,
squareoff=targetProfit,
stoploss=stopLoss,
validity=kite.VALIDITY_DAY,
product=kite.PRODUCT_MIS)
  • sujith
    sujith edited February 2018
    You can check the first and second (bid/ask) and place the order at that price.
  • tahseen
    @sujith

    Yes that is one way. There is one more way that am using currently. But last I read on the forum, you have new option of market entry for Bracket Orders
  • sujith
    As of now Kite Connect offers stop-loss and limit entry type for a bracket order.
Sign In or Register to comment.