hiralzala 11:55AM Flag
Nikhil,
I am little bit confuse regarding my below query.
Q. Can I get Last Minute Opening, High, Low and Close Price of Particular Stock?
A. The stream is ephemeral, so you wouldn't get data for the previous minute. However, we do offer a historical data API that you can use to fetch past data. This is offered as an addon to the execution APIs charged at an additional Rs. 2000 per app, per month.
as per my understanding there is below function in API.
public void getHistoricalData(KiteConnect kiteConnect) throws KiteException {
Map param8 = new HashMap(){
{
put("continuous", 0);
put("from", "2017-10-09 15:00:00");
put("to", "2017-10-09 15:03:00");
}
};
HistoricalData historicalData = kiteConnect.getHistoricalData(param8, "256265", "3minute");
}
Can I get previous data of three minute candle from above function?
January 2018