☰
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
13.8K
All Categories
0
Incidents
153
Node JS client
40
Go client
793
.Net API client
378
Kite Publisher
537
.Net / VBA / Excel (3rd party)
457
Algorithms and Strategies
993
Java client
1.1K
API clients
404
PHP client
4K
Python client
346
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.3K
General
In this Discussion
January 2021
metalman
January 2021
sujith
The trigger price is not a multiple of tick size
metalman
January 2021
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 2021
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 2021
okay thank you
This discussion has been closed.
You can get tick size and lot size values from the instruments master file.