Skip to main content

Nifty Yahoo Finance Historical Data

nifty['Return'] = nifty['Adj Close'].pct_change() * 100

Yahoo Finance provides a vast repository of historical financial data, including stock prices, indices, and ETFs. To retrieve the historical data of the Nifty 50 index from Yahoo Finance, follow these steps:

To prevent querying data from erroneous index variations, you must utilize the precise Yahoo Finance ticker symbols. Core Index Tickers nifty yahoo finance historical data

If you require clean data for basic modeling inside Microsoft Excel or Google Sheets, the native platform interface offers straight-to-desktop extractions.

tickers = ['^NSEI', '^NSEBANK'] data = yf.download(tickers, start='2023-01-01')['Adj Close'] nifty['Return'] = nifty['Adj Close']

close_prices = yf.download('^NSEI', period='max')['Close']

⚠️ Yahoo Finance data for NSE indices is delayed by ~15 minutes during market hours. For historical daily data, it's reliable for analysis. including stock prices

^CNXAUTO (Automotive sector specialist benchmark)