Reliance Stock Price Dataset
Dataset of price of Reliance stock
@kaggle.notshrirang_reliance_stock_price_dataset
Dataset of price of Reliance stock
@kaggle.notshrirang_reliance_stock_price_dataset
A dataset containing prices of Reliance stock since 1996 to 2020. Contains volume, turnover, open, high, low, close prices of the stock. This dataset is meant to use for predicting the stock prices in future. You may use linear regression or neural networks.
CREATE TABLE reliance_data (
"date" VARCHAR,
"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
);Anyone who has the link will be able to view this.