Receiving this "Order price is not a multiple of tick size"

Rajneesh_12
I get this error in
    kite.place_order(tradingsymbol=symbol,
exchange=kite.EXCHANGE_NFO,
transaction_type=kite.TRANSACTION_TYPE_BUY,
quantity=quantity,
order_type=kite.ORDER_TYPE_LIMIT,
price=target,
trigger_price = target,
product=kite.PRODUCT_MIS,
variety=kite.VARIETY_REGULAR)
1. How to calculate tick size?
2. Should I make my target multiple of tick size?
  • sujith
    You can get tick size in the instruments master dump. You can know more here.

    All the price-related values need to be the modulus of tick size and all quantity-related stuff needs to be the modulus of lot size.
Sign In or Register to comment.