☰
Login
Signup
Home
›
Python client
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Categories
Recent Discussions
Activity
Categories
8.8K
All Categories
8
Go client
514
.Net API client
226
Kite Publisher
468
.Net / VBA / Excel (3rd party)
275
Algorithms and Strategies
698
Java client
650
API clients
319
PHP client
2.2K
Python client
256
Mobile and Desktop apps
959
Market data (WebSockets)
2.2K
General
In this Discussion
January 14
metalman
January 13
sujith
The trigger price is not a multiple of tick size
metalman
January 13
in
Python client
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)
Tagged:
python
kiteapi
order placement
stoploss order
sujith
January 13
Every price-related value needs to be multiple of tick size and every quantity related value needs to be multiple of lot size.
You can get tick size and lot size values from the
instruments master file
.
metalman
January 14
okay thank you
This discussion has been closed.
You can get tick size and lot size values from the instruments master file.