Baselight

S & P 500 Dataset

Stock data from 1993 - 2020

@kaggle.youcanttouchthis_s_p_500_dataset

Loading...
Loading...

About this Dataset

S & P 500 Dataset

Context

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 :)

Content

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.

Acknowledgements

I want to thank yahoo finance for their wonderful python library which makes accessing financial data very easy.

Inspiration

Can you beat the SPY?

Tables

Spy

@kaggle.youcanttouchthis_s_p_500_dataset.spy
  • 325.73 KB
  • 7029 rows
  • 7 columns
Loading...

CREATE TABLE spy (
  "date" TIMESTAMP,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "adj_close" DOUBLE,
  "volume" BIGINT
);

Share link

Anyone who has the link will be able to view this.