HDFC Stock Price (2000-2021)
Here is HDFC Bank stock Price from year 2000 to 2021
@kaggle.meetnagadia_hdfc_stock_price_20002021
Here is HDFC Bank stock Price from year 2000 to 2021
@kaggle.meetnagadia_hdfc_stock_price_20002021
This is a dataset of HDFC Bank stock price from 2000 to 2021, its has more than 5000 rows. So we can perform EDA and various Regression Techniques to predict future price and how well the Bank stock are performing.
CREATE TABLE hdfcbank (
"date" TIMESTAMP,
"symbol" VARCHAR,
"series" VARCHAR,
"prev_close" DOUBLE,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"last" DOUBLE,
"close" DOUBLE,
"vwap" DOUBLE,
"volume" BIGINT,
"turnover" DOUBLE,
"trades" DOUBLE,
"deliverable_volume" DOUBLE,
"n__deliverble" DOUBLE -- %Deliverble
);CREATE TABLE hdfcbank_ns (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" DOUBLE
);Anyone who has the link will be able to view this.