Financial Data
Implementing machine learning models, and conducting data analysis.
@kaggle.willianoliveiragibin_financial_data
Implementing machine learning models, and conducting data analysis.
@kaggle.willianoliveiragibin_financial_data
The dataset comprises the historical stock prices of PT Bank Central Asia Tbk (BBCA.JK) retrieved from the Yahoo Finance website, spanning from January 2019 to the present date. This data provides valuable information for various analytical purposes, such as forecasting future stock prices, implementing machine learning models, and conducting data analysis or visualization tasks. By making this dataset available to the Kaggle community, contributors can explore and utilize it for research, modeling, and educational purposes. The dataset is regularly updated through an automated process scheduled on Kaggle, ensuring its reliability and relevance for ongoing projects and analyses.
CREATE TABLE bbca_jk_monthly_new (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" VARCHAR,
"volume" BIGINT
);CREATE TABLE bbca_jk_new (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" VARCHAR,
"volume" BIGINT
);CREATE TABLE bbca_jk_weekly_new (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" VARCHAR,
"volume" BIGINT
);Anyone who has the link will be able to view this.