| sp500data | R Documentation |
Daily Standard and Poor's 500 (SP500) index data from 3 January 1950 to 8 March 2016.
data("sp500data")
A data frame with 16652 observations on the following 7 variables:
Datethe dates
Openthe opening values of the index
Highthe daily maximum value of the index
Lowthe daily minimum value of the index
Closethe closing values of the index
Volumethe traded volume
Adj.Closethe adjusted closing values of the index
Yahoo Finance, retrieved 9 March 2016
Pretis, Felix, Reade, James and Sucarrat, Genaro (2018): 'Automated General-to-Specific (GETS) Regression Modeling and Indicator Saturation for Outliers and Structural Breaks'. Journal of Statistical Software 86, Number 3, pp. 1-44
data(sp500data)
sp500data <- zoo(sp500data[, -1], order.by = as.Date(sp500data[, "Date"]))
plot(window(sp500data, start = as.Date("2000-01-03")))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.