☰
Login
Signup
Home
›
General
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Categories
Recent Discussions
Activity
Categories
13.8K
All Categories
0
Incidents
153
Node JS client
40
Go client
793
.Net API client
378
Kite Publisher
537
.Net / VBA / Excel (3rd party)
457
Algorithms and Strategies
993
Java client
1.1K
API clients
404
PHP client
4K
Python client
346
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.3K
General
In this Discussion
January 2023
sathish
January 2023
QNA
I want to Get OHLC for BANKNIFTY. What is the Exchange type for this Symbol.
sathish
January 2023
in
General
I didn't see any info in the get instruments response.
I tried this ->
let OHLC = await kc.getOHLC(`NSE:BANKNIFTY`);
console.log(OHLC); //returning {}
can u tell the what is the exchange type or correct way to get BANKNIFTY OHLC
Tagged:
banknifty
QNA
January 2023
The exchange symbol for bank nifty is NIFTY BANK .
For example, in Python, to get the last traded price, the following works for me:
kite.ltp('NSE:NIFTY BANK')
In Python, the instrument dump has all the associated trading symbols. To get the instrument dump, I do:
kite.instruments('NSE')
QNA
January 2023
I meant the trading* symbol for bank nifty is NIFTY BANK. The exchange is NSE.
sathish
January 2023
Thanks for the info
@QNA
This discussion has been closed.
For example, in Python, to get the last traded price, the following works for me:
kite.ltp('NSE:NIFTY BANK')
In Python, the instrument dump has all the associated trading symbols. To get the instrument dump, I do:
kite.instruments('NSE')