| stocks | R Documentation |
Historical daily data for the 50 most traded stocks in B3 (IBOVESPA), including opening, high, low, and closing prices, as well as trading volume. Data Type: Financial Time Series. Category: Finance. Creation Date: 2025.
data(stocks)
A list of dataframes containing time series.
Each entry is a data frame with columns date, open, high, low, close, and volume.
B3 - Brasil, Bolsa, Balcão. 2025. Historical stock trading data. B3 Official Website
# Load stocks list and plot closing prices for a ticker (if present)
data(stocks)
# stocks <- loadfulldata(stocks)
if ("VALE3" %in% names(stocks)) {
series <- stocks$VALE3$close
ts.plot(series, ylab = "Close", xlab = "Index", main = "VALE3 close price")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.