☰
Login
Signup
Home
›
Algorithms and Strategies
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
14K
All Categories
0
Incidents
156
Node JS client
40
Go client
794
.Net API client
383
Kite Publisher
537
.Net / VBA / Excel (3rd party)
461
Algorithms and Strategies
1K
Java client
1.1K
API clients
404
PHP client
4K
Python client
349
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.4K
General
In this Discussion
July 2022
satheesh7134
July 2022
SRIJAN
Retrieving Position of Particular Instrument
satheesh7134
July 2022
in
Algorithms and Strategies
Hi Everyone
Instead of getting all open positions, I want to check whether a position exist for a particular instrument
Anyone know how to do that?
SRIJAN
July 2022
Every position has a tradingsymbol field .
You can fetch all positions and look for a particular tradingsymbol in the response.
https://kite.trade/docs/connect/v3/portfolio/#positions
satheesh7134
July 2022
Hi Srijan
Thanks
May I know how to see whether the position associated with the instrument is a long position or short position?
SRIJAN
July 2022
You can know this by checking the quantity.
If quantity is positive, it's a long position,if negative, it's a short position,and if zero,it means the position has been closed.
Sign In
or
Register
to comment.
You can fetch all positions and look for a particular tradingsymbol in the response.
https://kite.trade/docs/connect/v3/portfolio/#positions
Thanks
May I know how to see whether the position associated with the instrument is a long position or short position?
If quantity is positive, it's a long position,if negative, it's a short position,and if zero,it means the position has been closed.