The trigger price is not a multiple of tick size

metalman
Im trying to place a sell stoploss order for SBIN
for stoploss of 294.614

but its getting rejected showing this message:

16316 : The trigger price is not a multiple of tick size

This is my commad for placing order:
stock = 'SBIN'
transaction_type = kite.TRANSACTION_TYPE_SELL
stoploss = 294.614

kite.place_order(variety=kite.VARIETY_REGULAR, exchange=exchange, tradingsymbol=stock,transaction_type=transaction_type, quantity=quantity, product=kite.PRODUCT_CNC, order_type=kite.ORDER_TYPE_SLM, trigger_price=stoploss)
This discussion has been closed.