Chinese Companies' Cash Flow
Cash Flow of Chinese publicly traded stocks
@kaggle.franciscofeng_chinese_companies_cash_flow
Cash Flow of Chinese publicly traded stocks
@kaggle.franciscofeng_chinese_companies_cash_flow
Cash Flow of all Chinese companies that are publicly listed. These data can be used to estimate the health of these companies and therefore make good investment decisions or conducting research thereafter.
CREATE TABLE cash_flow (
"date" TIMESTAMP,
"ticker" VARCHAR,
"net_cash_flow_net_cash_flow" DOUBLE,
"net_cash_flow_growth" DOUBLE,
"operating_cash_flow_net_operating_cash_flow" DOUBLE,
"operating_cash_flow_cash_flow_ratio" DOUBLE,
"investment_cash_flow_net_investment_cash_flow" DOUBLE,
"investment_cash_flow_cash_flow_ratio" DOUBLE,
"cash_flow_from_financing_net_cash_flow" DOUBLE,
"cash_flow_from_financing_cash_flow_ratio" DOUBLE
);CREATE TABLE map_ticker_to_company (
"ticker" VARCHAR,
"company_name" VARCHAR
);Anyone who has the link will be able to view this.