It looks like you're new here. If you want to get involved, click one of these buttons!
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date from = new Date();
Date to = new Date();
try {
from = formatter.parse("2018-01-01 00:00:01");
to = formatter.parse("2018-10-18 16:00:12");
}catch (ParseException e) {
e.printStackTrace();
}
HistoricalData hdata=kiteSdk.getHistoricalData(from, to, "2925313", "15minute", false);