S&P 500 With Technical Indicators
Price action starting from 1950s with 11 different techincal indicators.
@kaggle.olwarro_sp_500_with_technical_indicators
Price action starting from 1950s with 11 different techincal indicators.
@kaggle.olwarro_sp_500_with_technical_indicators
S&P 500 price action starting from the 1950s with technical indicators.
Technical indicators: ema10, ema20, ema50, massi, mfi, adx, dmp, dmn, rsi, slowd and slowk.
Price action: high, low and close.
Dataset contains missing values at the beginning of the dataset due to the fact that indicators need certain amount of datapoints to be calculated.
CREATE TABLE sp500_from_1950_plus_techinds (
"id" BIGINT,
"name" VARCHAR,
"date" TIMESTAMP,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"ema10" DOUBLE,
"ema20" DOUBLE,
"ema50" DOUBLE,
"massi" DOUBLE,
"mfi" DOUBLE,
"adx" DOUBLE,
"dmp" DOUBLE,
"dmn" DOUBLE,
"rsi" DOUBLE,
"slowd" DOUBLE,
"slowk" DOUBLE
);
Anyone who has the link will be able to view this.