Open ddeoashish opened 2 years ago
Please introduce ohlc method in the KiteApp with the below implementation def ohlc(self, instruments): data = self.session.get(f"{self.root_url}/quote/ohlc", params={"i": instruments}, headers=self.headers).json()["data"] return data
is there any method to bring the volume along with the ohlc data
Please introduce ohlc method in the KiteApp with the below implementation def ohlc(self, instruments): data = self.session.get(f"{self.root_url}/quote/ohlc", params={"i": instruments}, headers=self.headers).json()["data"] return data