Uniqlo (FastRetailing) Stock Price Prediction
Tokyo Stock Exchange Data (LightWeight CSV) in 2016 for Beginners
@kaggle.daiearth22_uniqlo_fastretailing_stock_price_prediction
Tokyo Stock Exchange Data (LightWeight CSV) in 2016 for Beginners
@kaggle.daiearth22_uniqlo_fastretailing_stock_price_prediction
We are doing Fintech data hakathon in Tokyo everyweek. Let's predict stock price in Tokyo Stock Exchange.
毎週水曜日東京・渋谷で開催している、Team AI "FinTech Data Hackathon"の題材として、
身近なユニクロ(ファーストリテイリング)の株価予測モデルをオープンイノベーションで構築します。
https://www.meetup.com/Machine-Learning-Meetup-by-team-ai/events/242154425/
Training; 5 year daily stock price info of FastRetailing(Uniqlo). You should predict "close" price.
Test: 1 week daily stock price
Thanks to open market data http://k-db.com/
Let's build basic stock prediction model together!
公開されたモデルを実際の取引に使う場合は十分注意ください。弊社側やコミュニティメンバー側では損失の責任は持てません。
CREATE TABLE uniqlo_fastretailing_2012_2016_training_stocks2012_2016 (
"date" TIMESTAMP,
"open" BIGINT,
"high" BIGINT,
"low" BIGINT,
"close" BIGINT,
"volume" BIGINT,
"stock_trading" BIGINT
);CREATE TABLE uniqlo_fastretailing_2017_test_stocks2017 (
"date" TIMESTAMP,
"open" BIGINT,
"high" BIGINT,
"low" BIGINT,
"close" BIGINT,
"volume" BIGINT,
"stock_trading" BIGINT
);Anyone who has the link will be able to view this.