Chinese Income Statement (2006 - 2022)
Income Statement of all publicly traded stocks/companies on Chinese market
@kaggle.wentinglu_chinese_income_statement_2006_2022
Income Statement of all publicly traded stocks/companies on Chinese market
@kaggle.wentinglu_chinese_income_statement_2006_2022
A dataset of all available information of income statement of all Chinese companies that are publicly traded. It is an exhaustive dataset until May 12th, 2022.
CREATE TABLE chinese_income_statement (
"date" TIMESTAMP,
"ticker" VARCHAR,
"net_profit" DOUBLE,
"net_profit_growth" DOUBLE,
"total_operating_income" DOUBLE,
"total_operating_income_growth" DOUBLE,
"n__total_operating_expense_operating_expense" DOUBLE -- (total Operating Expense) Operating Expense,
"n__total_operating_expense_sales_expense" DOUBLE -- (total Operating Expense) Sales Expense,
"n__total_operating_expense_management_expense" DOUBLE -- (total Operating Expense) Management Expense,
"n__total_opearting_expense_financial_expense" DOUBLE -- (total Opearting Expense) Financial Expense,
"n__total_operating_expense_total_operating_expense" DOUBLE -- (total Operating Expense) Total Operating Expense,
"net_operating_profit" DOUBLE,
"total_profit" DOUBLE
);CREATE TABLE ticker_company_name_mapping (
"ticker" VARCHAR,
"company_name" VARCHAR
);Anyone who has the link will be able to view this.