Algorithmic Trading Dataset
Used Algorithmic Trading
@kaggle.preetviradiya_algorithmic_trading_dataset
Used Algorithmic Trading
@kaggle.preetviradiya_algorithmic_trading_dataset
CREATE TABLE momentum_strategy_1 (
"ticker" VARCHAR,
"price" VARCHAR,
"one_year_price_return" VARCHAR,
"one_year_return_percentile" VARCHAR,
"six_month_price_return" VARCHAR,
"six_month_return_percentile" VARCHAR,
"three_month_price_return" VARCHAR,
"three_month_return_percentile" VARCHAR,
"one_month_price_return" VARCHAR,
"one_month_return_percentile" VARCHAR,
"momentum_score" VARCHAR,
"number_of_shares_to_buy" BIGINT
);
CREATE TABLE recommended_trades_1 (
"ticker" VARCHAR,
"stock_price" VARCHAR,
"market_capitalization" DOUBLE,
"number_of_share_to_buy" DOUBLE
);
CREATE TABLE value_strategy_1 (
"ticker" VARCHAR,
"price" VARCHAR,
"price_to_earnings_ratio" DOUBLE,
"pe_percentile" VARCHAR,
"price_to_book_ratio" DOUBLE,
"pb_percentile" VARCHAR,
"price_to_sales_ratio" DOUBLE,
"ps_percentile" VARCHAR,
"ev_ebitda" DOUBLE,
"ev_ebitda_percentile" VARCHAR,
"ev_gp" DOUBLE,
"ev_gp_percentile" VARCHAR,
"value_score" VARCHAR,
"number_of_shares_to_buy" BIGINT
);
Anyone who has the link will be able to view this.