Skip to content
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

Closed
ravi14390 opened this issue Jan 14, 2021 · 12 comments
Closed

Comments

@ravi14390
Copy link

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

@algo2t
Copy link
Owner

algo2t commented Mar 17, 2021

@ravi14390 Thanks for reporting there is an issue in alphatrade.py at line 1059 and 1085 - remove those lines in your local system and it should work.
I will fix the api itself to directly take input as scrip instead of exchange and symbol.

algo2t added a commit that referenced this issue Mar 17, 2021
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
@algo2t
Copy link
Owner

algo2t commented Mar 17, 2021

@ravi14390 issue is fixed but you will have to install form github repo.
python -m pip install git+https://github.com/algo2t/alphatrade.git

algo2t added a commit that referenced this issue Mar 17, 2021
Updated instructions for getting historical and intraday candles data.
Must install the latest version from github
@algo2t
Copy link
Owner

algo2t commented Mar 17, 2021

@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

@algo2t
Copy link
Owner

algo2t commented Mar 17, 2021

The only bypass for your is below code which needs yfinance

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)

@2vishumittal
Copy link

@ravi14390 Hi, are you still facing issue? I am working on this API? does it worth time ?

@rsamikan
Copy link

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
Instrument(exchange='NSE', token=26009, symbol='Nifty Bank', name='Nifty Bank', expiry=None, lot_size=None)
Instrument(exchange='NSE', token=26009, symbol='Nifty Bank', name='Nifty Bank', expiry=None, lot_size=None)
Empty DataFrame
Columns: [open, high, low, close, volume]
Index: []
bash-3.2$

@algo2t
Copy link
Owner

algo2t commented May 11, 2021

@rsamikan as already stated alpha web platform doesn't support this so better go for yfinance

@algo2t
Copy link
Owner

algo2t commented Aug 27, 2021

Closing this issue as platform does not support it, will reopen if any pull requests are there.

@algo2t algo2t closed this as completed Aug 27, 2021
@residue-analytics
Copy link

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) -

def get_indices_historical_candles(self, exchange, symbol, start_time, end_time, interval=5):
        exchange = exchange.upper()
        divider = 100
        if exchange == 'CDS':
            divider = 1e7
        # symbol = symbol.upper()
        instrument = self.get_instrument_by_symbol(exchange, symbol)
        print(instrument)
        start_time = int(start_time.timestamp())
        end_time = int(end_time.timestamp())

        PARAMS = {
            'candletype': 1,
            'data_duration': interval,
            'starttime': start_time,
            'endtime': end_time,
            'exchange': 'NSE_INDICES',
            'type': 'historical',
            'name': instrument.name
        }

        r = self.reqsession.get(
            'https://alpha.sasonline.in/api/v1/charts', params=PARAMS, headers=self.__headers)
        data = r.json()
        return self.__format_candles(data, divider)

@dccgarch
Copy link

@ravi14390 issue is fixed but you will have to install form github repo. python -m pip install git+https://github.com/algo2t/alphatrade.git

i reinstalled but it is still not coming for the Indices. Any help is highly appreciated.

@dccgarch
Copy link

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) -

def get_indices_historical_candles(self, exchange, symbol, start_time, end_time, interval=5):
        exchange = exchange.upper()
        divider = 100
        if exchange == 'CDS':
            divider = 1e7
        # symbol = symbol.upper()
        instrument = self.get_instrument_by_symbol(exchange, symbol)
        print(instrument)
        start_time = int(start_time.timestamp())
        end_time = int(end_time.timestamp())

        PARAMS = {
            'candletype': 1,
            'data_duration': interval,
            'starttime': start_time,
            'endtime': end_time,
            'exchange': 'NSE_INDICES',
            'type': 'historical',
            'name': instrument.name
        }

        r = self.reqsession.get(
            'https://alpha.sasonline.in/api/v1/charts', params=PARAMS, headers=self.__headers)
        data = r.json()
        return self.__format_candles(data, divider)

thanks it worked.

@SMVSKN
Copy link

SMVSKN commented Dec 9, 2021

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:
For indices, we need to have the following in the 'PARAMS' in the functions that get the historical and intra-day data:

exchange: NSE_INDICES
symbol: 'Bank Nifty' / 'Nifty 50' / 'Nifty IT' / 'Nifty Auto' etc => Note that there are spaces and it is case sensitive

For FUT, we need to have the following in the 'PARAMS':
exchanbe: FNO
symbol: 'BANKNIFTY21DECFUT' / 'BANKNIFTY21DEC37800CE' / 'BANKNIFTY21D0937300PE' etc => Note that there are no spaces in between

Can this package be updated to handle the above?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants