India Stock Market (daily Updated)
Daily Updated Data on ALL Stocks Listed in the NSE
@kaggle.andrewmvd_india_stock_market
Daily Updated Data on ALL Stocks Listed in the NSE
@kaggle.andrewmvd_india_stock_market
India's National Stock Exchange (NSE) has a total market capitalization of more than US$3.4 trillion, making it the world's 10th-largest stock exchange as of August 2021, with a trading volume of ₹8,998,811 crore (US$1.2 trillion) and more 2000 total listings.
NSE's flagship index, the NIFTY 50, is a 50 stock index is used extensively by investors in India and around the world as a barometer of the Indian capital market.
This dataset contains data of all company stocks listed in the NSE, allowing anyone to analyze and make educated choices about their investments, while also contributing to their countries economy.
- Create a time series regression model to predict NIFTY-50 value and/or stock prices.
- Your kernel can be featured here!
License
CC0: Public Domain
Splash banner
Stonks by unknown memer.
CREATE TABLE indexes_df (
"s" VARCHAR,
"mbol" VARCHAR
);CREATE TABLE nse_indexes (
"date" TIMESTAMP,
"index" VARCHAR,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" BIGINT,
"currency" VARCHAR
);CREATE TABLE stocks_df (
"date" TIMESTAMP,
"stock" VARCHAR,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" BIGINT,
"change_pct" DOUBLE
);Anyone who has the link will be able to view this.