Baselight

S&P-500 Stock Market Exhaustive Dataset

Feel free to experiment with data carefully preprocessed from year 2000-2022

@kaggle.sandeepkumarkushwaha_sp500_stock_market_latest_exhaustive

Sp500 Exhaustivedata
@kaggle.sandeepkumarkushwaha_sp500_stock_market_latest_exhaustive.sp500_exhaustivedata

  • 777.39 KB
  • 5601 rows
  • 26 columns
date

Date

openprice

OpenPrice

highprice

HighPrice

lowprice

LowPrice

closedprice

ClosedPrice

adjustedclosedprice

AdjustedClosedPrice

volumeoftransactions

VolumeOfTransactions

opn1p_open_price_next_1_period

OPN1P Open Price Next 1 Period

hpn1p_high_price_next_1_period

HPN1P High Price Next 1 Period

lpn1p_low_price_next_1_period

LPN1P Low Price Next 1 Period

cpn1p_close_price_next_1_period

CPN1P Close Price Next 1 Period

close_price_next_2_periods

Close Price Next 2 Periods

cpn3p_close_price_next_3_periods

CPN3P Close Price Next 3 Periods

cpn4p_close_price_next_4_periods

CPN4P Close Price Next 4 Periods

cpn5p_close_price_next_5_periods

CPN5P Close Price Next 5 Periods

apn5p_average_price_next_5_periods

APN5P Average Price Next 5 Periods

apn10p_average_price_next_10_periods

APN10P Average Price Next 10 Periods

lpn5p_lowest_price_next_5_periods

LPN5P Lowest Price Next 5 Periods

mpn5p_median_price_next_5_periods

MPN5P Median Price Next 5 Periods

hpn5p_highest_price_next_5_periods

HPN5P Highest Price Next 5 Periods

lpn10p_lowest_price_next_10_periods

LPN10P Lowest Price Next 10 Periods

mpn10p_median_price_next_10_periods

MPN10P Median Price Next 10 Periods

hpn10p_highest_price_next_10_periods

HPN10P Highest Price Next 10 Periods

lpn20p_lowest_price_next_20_periods

LPN20P Lowest Price Next 20 Periods

mpn20p_median_price_next_20_periods

MPN20P Median Price Next 20 Periods

hpn20p_highest_price_next_20_periods

HPN20P Highest Price Next 20 Periods

03-01-20001469.2514781438.361455.221455.229318000001455.221455.221397.431399.421402.111403.451441.471457.61420.071434.341377.681411.91464.361377.681441.4714731350.141429.661473
04-01-20001455.221455.221397.431399.421399.4210090000001399.421413.271377.681402.111403.451441.471457.61438.561424.161437.191377.681421.781464.361377.681441.7814731350.141422.441473
05-01-20001399.421413.271377.681402.111402.1110855000001402.111411.91392.11403.451441.471457.61438.561432.251431.571442.521392.11438.561464.361392.1144814731350.141425.381473
06-01-20001402.111411.91392.11403.451403.4510923000001403.451441.471400.731441.471457.61438.561432.251449.681439.511446.771400.731441.471464.361400.731449.1814731350.141426.771473
07-01-20001403.451441.471400.731441.471441.4712252000001441.471464.361441.471457.61438.561432.251449.681465.151447.031446.911427.081447.3114731395.421449.6814731350.141426.131473
10-01-20001441.471464.361441.471457.61457.610648000001457.61458.661434.421438.561432.251449.681465.151455.141448.621442.141427.081449.6814731388.491446.4414731350.141424.971473
11-01-20001457.61458.661434.421438.561438.5610140000001438.561442.61427.081432.251449.681465.151455.141455.91450.211438.081427.081451.314731388.491443.7614731350.141424.371473
12-01-20001438.561442.61427.081432.251432.259746000001432.251454.21432.251449.681465.151455.141455.91445.571453.471434.381432.251455.1414731370.991443.5114731350.141422.691473
13-01-20001432.251454.21432.251449.681449.6810304000001449.6814731449.681465.151455.141455.91445.571441.361454.041428.011438.541455.1414731356.21440.4814731350.141417.841473
14-01-20001449.6814731449.681465.151465.1510859000001465.151465.151451.31455.141455.91445.571441.361401.531446.781419.561395.421451.431465.711350.141413.491465.711350.141414.261465.71

CREATE TABLE sp500_exhaustivedata (
  "date" VARCHAR,
  "openprice" DOUBLE,
  "highprice" DOUBLE,
  "lowprice" DOUBLE,
  "closedprice" DOUBLE,
  "adjustedclosedprice" DOUBLE,
  "volumeoftransactions" BIGINT,
  "opn1p_open_price_next_1_period" DOUBLE,
  "hpn1p_high_price_next_1_period" DOUBLE,
  "lpn1p_low_price_next_1_period" DOUBLE,
  "cpn1p_close_price_next_1_period" DOUBLE,
  "close_price_next_2_periods" DOUBLE,
  "cpn3p_close_price_next_3_periods" DOUBLE,
  "cpn4p_close_price_next_4_periods" DOUBLE,
  "cpn5p_close_price_next_5_periods" DOUBLE,
  "apn5p_average_price_next_5_periods" DOUBLE,
  "apn10p_average_price_next_10_periods" DOUBLE,
  "lpn5p_lowest_price_next_5_periods" DOUBLE,
  "mpn5p_median_price_next_5_periods" DOUBLE,
  "hpn5p_highest_price_next_5_periods" DOUBLE,
  "lpn10p_lowest_price_next_10_periods" DOUBLE,
  "mpn10p_median_price_next_10_periods" DOUBLE,
  "hpn10p_highest_price_next_10_periods" DOUBLE,
  "lpn20p_lowest_price_next_20_periods" DOUBLE,
  "mpn20p_median_price_next_20_periods" DOUBLE,
  "hpn20p_highest_price_next_20_periods" DOUBLE
);

Share link

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