Brazilian Stock Market (daily Updated)
Data on more than 400 Brazilian Stocks
@kaggle.andrewmvd_brazilian_stock_market
Data on more than 400 Brazilian Stocks
@kaggle.andrewmvd_brazilian_stock_market
Brazil's B3 Stock Exchange is the one and only public financial market of the 13th largest economy in the world with a 2021 market cap of R$ 5.2 trillion BRL.
With the goal of improving financial literacy, this dataset contains more than 400 stock listings that are updated daily for the purposes of providing data for quantitative analysis.
- Create a time series regression model to predict ^IBOV value and/or stock prices.
- Your kernel can be featured here!
License
CC0: Public Domain
Splash banner
Stonks by unknown memer.
CREATE TABLE bovespa_indexes (
"date" TIMESTAMP,
"symbol" VARCHAR,
"adj_close" DOUBLE,
"close" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"volume" DOUBLE
);CREATE TABLE bovespa_stocks (
"date" VARCHAR,
"symbol" VARCHAR,
"adj_close" DOUBLE,
"close" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"volume" DOUBLE
);CREATE TABLE economic_indicators (
"date" TIMESTAMP,
"taxa_selic" DOUBLE,
"ipca" DOUBLE,
"igp_m" DOUBLE,
"inpc" DOUBLE,
"desemprego_pnadc" DOUBLE
);Anyone who has the link will be able to view this.