Google Stock Prediction
Regression, LSTM, Keras, Tensorflow
@kaggle.shreenidhihipparagi_google_stock_prediction
Regression, LSTM, Keras, Tensorflow
@kaggle.shreenidhihipparagi_google_stock_prediction
Context
All of the practitioners, learners in DL learning will surely come across RNN and LSTM's. So I thought let me add a dataset that can be used as a stepping stone into the Stock predictions.
Content
This dataset contains 14 columns and 1257 Rows. Each columns are assigned to a attribute and rows contains the values for that attribute.
The 14 columns are:
** Acknowledgements**
I would like to thank Tiingo for providing such a wonderful platform which maintains the financial and stock data and updates them day to day.
Predict the close and open values for the next 30 days. Can you guys do this?
Please up vote if you guys like this dataset.
CREATE TABLE goog (
"symbol" VARCHAR,
"date" TIMESTAMP,
"close" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"volume" BIGINT,
"adjclose" DOUBLE,
"adjhigh" DOUBLE,
"adjlow" DOUBLE,
"adjopen" DOUBLE,
"adjvolume" BIGINT,
"divcash" DOUBLE,
"splitfactor" DOUBLE
);
Anyone who has the link will be able to view this.