I want to do some market analysis. For that I want to know the following with the API 1. Can I get last sold quantity and price? 2. Can I get maximum offer price and minimum bid price? 3. Can I get average offer price and average bid price? 4. How to know current price in green or red? 5. How to know how many transactions are done at a time?
Can I get percentage growth for every moment using API? How many days historical data I can get using API and what is the frequency of the data? will it be in hours or minutes?
2. Can I get maximum offer price and minimum bid price?
You can get in from Kite Ticker.
3. Can I get average offer price and average bid price?
We don't have average offer price and average bid price.
4. How to know current price in green or red?
You need to check if the change is positive or negative.
5. How to know how many transactions are done at a time?
Can you elaborate?
You can get the change in Websockets. We have historical data in the minute interval for two years and day data for NSE instruments is available for up to 10 years.For BSE instruments, we have data for around 8 years.
For more information, you can check out documentation.
5. How to know how many transactions are done at a time? I want to know how many stocks or sold in one minute. If possible I would like to know the average price of stock sold in one minute or list of transactions done in one minute.
We don't have API to check how many orders are placed in a particular time interval. You can fetch the orderbook which will give you a list of orders that are placed for the day. You can get average price in positions API, you can check out documentation here.
I am little bit confused. Using API I can retrieve my orders for the day. But I am looking for others executed order and number of stock. At least I want to see last executed order.
How many days historical data I can get using API and what is the frequency of the data? will it be in hours or minutes?
You can get the change in Websockets.
We have historical data in the minute interval for two years and day data for NSE instruments is available for up to 10 years.For BSE instruments, we have data for around 8 years.
For more information, you can check out documentation.
I want to know how many stocks or sold in one minute. If possible I would like to know the average price of stock sold in one minute or list of transactions done in one minute.
You can fetch the orderbook which will give you a list of orders that are placed for the day.
You can get average price in positions API, you can check out documentation here.