How to get Buy Quantity and Sell Quantity

SudhakarC
SudhakarC edited April 2021 in .Net API client
Hi Team,

I am using the method 'GetHistoricalData' to get the historical data for the stocks. It returns list of 'Historical' and the following are the properties of 'Historical'.

public struct Historical
{
TimeStamp , Open ,High, Low, Close, Volume, OI
}

How can i get how many buyers and sellers insider this Volume ?

Regards,
Sudhakar C
Tagged:
  • SudhakarC
    Kindly update me ASAP.
  • rakeshr
    public struct Historical
    {
    TimeStamp , Open ,High, Low, Close, Volume, OI
    }
    Volume comprises of 1 Qty volume = 1 buy + 1 sell. You can go through this thread to understand more about volume.
    How can i get how many buyers and sellers insider this Volume ?
    You can only get real-time pending buyers and sellers not historical. For this, you can use Websocket streaming.
Sign In or Register to comment.