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
Feel free to experiment with data carefully preprocessed from year 2000-2022
@kaggle.sandeepkumarkushwaha_sp500_stock_market_latest_exhaustive
The .csv file contains raw features & targeted features as well. This is suitable for predicting values with 1, 2, 3, 4, 5, 10, 15 & 20 days in the future without any additional labor. For more than that you have to do some preprocessing.
Columns of SP500_exhaustiveData.csv are:
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
);Anyone who has the link will be able to view this.