☰
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
12.8K
All Categories
111
Node JS client
35
Go client
748
.Net API client
350
Kite Publisher
530
.Net / VBA / Excel (3rd party)
420
Algorithms and Strategies
940
Java client
979
API clients
392
PHP client
3.6K
Python client
325
Mobile and Desktop apps
1.3K
Market data (WebSockets)
3.1K
General
In this Discussion
January 29
sathish
January 29
QNA
I want to Get OHLC for BANKNIFTY. What is the Exchange type for this Symbol.
sathish
January 28
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 29
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 29
I meant the trading* symbol for bank nifty is NIFTY BANK. The exchange is NSE.
sathish
January 29
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')