Augmented Chinese Stock Data W/ FRs & Fundamentals
stock data + Financial ratios + some fundamental data all at daily frequency
@kaggle.franciscofeng_augmented_china_stock_data_with_fundamentals
stock data + Financial ratios + some fundamental data all at daily frequency
@kaggle.franciscofeng_augmented_china_stock_data_with_fundamentals
CREATE TABLE stock_data (
"date" TIMESTAMP,
"ticker" VARCHAR,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" DOUBLE,
"outstanding_share" DOUBLE,
"turnover" DOUBLE,
"pe" DOUBLE,
"pe_ttm" DOUBLE,
"pb" DOUBLE,
"ps" DOUBLE,
"ps_ttm" DOUBLE,
"dv_ratio" DOUBLE,
"dv_ttm" DOUBLE,
"total_mv" DOUBLE,
"qfq_factor" DOUBLE
);
CREATE TABLE ticker_info (
"unnamed_0" BIGINT,
"ticker" VARCHAR,
"company_name" VARCHAR
);
Anyone who has the link will be able to view this.