S & P 500 Dataset
Stock data from 1993 - 2020
@kaggle.youcanttouchthis_s_p_500_dataset
Stock data from 1993 - 2020
@kaggle.youcanttouchthis_s_p_500_dataset
Playing around with SPY and trying to beat it is an extremely fun and rewarding(monetarily and mentally) challenge. I wanted to share this dataset and a way to procure more data so that all of you could also share the joy of algo trading :)
The data is day to day data. It has the opening price, the closing price, the highs and the lows, the adjusted close, and the volume.
I want to thank yahoo finance for their wonderful python library which makes accessing financial data very easy.
Can you beat the SPY?
CREATE TABLE spy (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);Anyone who has the link will be able to view this.