☰
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
14.1K
All Categories
0
Incidents
158
Node JS client
43
Go client
801
.Net API client
386
Kite Publisher
538
.Net / VBA / Excel (3rd party)
466
Algorithms and Strategies
1K
Java client
1.1K
API clients
408
PHP client
4.1K
Python client
349
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.4K
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')