-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not able to get historical candle data for index like nifty and bank nifty #4
Comments
@ravi14390 Thanks for reporting there is an issue in |
For Indices the symbols does not follow the Upper Case as in case of stocks. Therefore issue with getting Nifty Bank historical and intraday candles. #4
@ravi14390 issue is fixed but you will have to install form github repo. |
Updated instructions for getting historical and intraday candles data. Must install the latest version from github
@ravi14390 I tried to fix this but seems like it is not supported by the platform. Will keep this issue open till I get a solution |
The only bypass for your is below code which needs import yfinance as yf
ivix = yf.download('^INDIAVIX', period='5d', interval='15m')
print(ivix)
bnf = yf.download('^NSEBANK', period='5d', interval='15m')
print(bnf)
nf = yf.download('^NSEI', period='5d', interval='15m')
print(nf) |
@ravi14390 Hi, are you still facing issue? I am working on this API? does it worth time ? |
Yes still we cannot download data from GET, it gives empty dataframe. I removed the following line 1059 # symbol = symbol.upper() from /usr/local/lib/python3.8/site-packages/alphatrade/alphatrade.py bash-3.2$ python3 historical_data.py |
@rsamikan as already stated alpha web platform doesn't support this so better go for yfinance |
Closing this issue as platform does not support it, will reopen if any pull requests are there. |
I could make this work by changing the params (exchange: NSE_INDICES & name: instrument.name) and removing the token. Introduced a new method (copy of the get_historical_candles() with changed PARAMS) -
|
i reinstalled but it is still not coming for the Indices. Any help is highly appreciated. |
thanks it worked. |
I came across the resolution to this issue which states that SAS Alpha Web platform does not support historical/intraday data. However, this does not seem to be true. I think I have figured out what should be used for different indices and FNOs for the 'exchange' and 'symbol' names. Eg: exchange: NSE_INDICES For FUT, we need to have the following in the 'PARAMS': Can this package be updated to handle the above? |
I am trying to get historical and intraday candle data for nifty and bank nifty index but it is giving me error that symbol not found. It is working fine for stocks. Below is my code and error
sas.get_historical_candles('NSE', 'Nifty Bank', start_time, end_time, 5)
ERROR: Cannot find symbol NSE NIFTY BANK in master contract
The text was updated successfully, but these errors were encountered: