Market analysis with API

harikongu
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?
  • harikongu
    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?
  • sujith
    Hi,
    1. Can I get last sold quantity and price?
    You can get it in positions.
    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.
  • harikongu
    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.
  • sujith
    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.
  • harikongu
    Can I get orderbook in the middle of the day or I can only get it by end of the day?
  • sujith
    You can get orderbook anytime. The list will contain only today's orders.
  • harikongu
    Can I stream orderbook or can I fetch last 10 orders?
  • sujith
    sujith edited January 2018
    Please check documentation here.
  • harikongu
    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.
  • sujith
    After successful order placement, you will get order_id. You can fetch orderbook and look for the status of that order.
Sign In or Register to comment.