├── README.md ├── sentiment_analysis ├── cut_jieba.py ├── data │ ├── POSTS │ │ ├── 000573.xls │ │ ├── 000703.xls │ │ ├── 000733.xls │ │ ├── 000788.xls │ │ ├── 000909.xls │ │ ├── 300017.xls │ │ ├── 300333.xls │ │ ├── 600362.xls │ │ ├── 600605.xls │ │ └── 601668.xls │ └── label_data.xlsx ├── example │ ├── 300333 │ │ ├── 300333.xls │ │ ├── cut_jieba.py │ │ ├── data.xlsx │ │ ├── dic.txt │ │ ├── test.txt │ │ ├── test_sentiment.py │ │ └── words.txt │ ├── 000573 │ │ ├── 000573.xls │ │ ├── cut_jieba.py │ │ ├── data.xlsx │ │ ├── dic.txt │ │ ├── test.txt │ │ ├── test_sentiment.py │ │ └── words.txt │ ├── 000703 │ │ ├── 000703.xls │ │ ├── cut_jieba.py │ │ ├── data.xlsx │ │ ├── dic.txt │ │ ├── test.txt │ │ ├── test_sentiment.py │ │ └── words.txt │ └── 000733 │ │ ├── 000733.xls │ │ ├── cut_jieba.py │ │ ├── data.xlsx │ │ ├── dic.txt │ │ ├── test.txt │ │ ├── test_sentiment.py │ │ └── words.txt ├── gen_word │ ├── 1.py │ ├── F1 │ │ ├── out │ │ │ ├── results.txt │ │ │ ├── test_log.txt │ │ │ ├── train_log.txt │ │ │ └── words.txt │ │ ├── test │ │ │ ├── test_neg.txt │ │ │ └── test_pos.txt │ │ └── train │ │ │ ├── train_neg.txt │ │ │ └── train_pos.txt │ └── stopwords.txt ├── test_sentiment.py └── tip.txt └── stock_pre_tool ├── COMPARISON_MLP+SVM+GUESS ├── 000573.mat ├── 000703.mat ├── 000733.mat ├── 000788.mat ├── 000909.mat ├── 300317.mat ├── 300333.mat ├── 600362.mat ├── 600605.mat ├── 601668.mat ├── COM.fig ├── RESULTS.xlsx ├── createfigure.m ├── guess_result.mat └── mean_std.mat ├── stock_price.xlsx ├── tools ├── BPnet.m ├── EMM.m ├── RNN.m ├── SVM_M.m ├── SVM_P.m ├── bodong.m ├── cell2double.m ├── guess.m ├── guiyihua.m ├── mood_c.m ├── p_guiyihua.m ├── price_test.m └── updown.m └── total_analysis ├── 300017 ├── 300017data.mat └── elm_result.mat ├── 300333 ├── 300333data.mat └── elm_result.mat ├── 600362 └── 600362 │ ├── 600362data.mat │ └── elm_result.mat ├── 600605 └── 600605 │ ├── 600605data.mat │ └── elm_result.mat ├── 601668 └── 601668 │ ├── 601668data.mat │ └── elm_result.mat ├── 000573-timeacc ├── 000573.m ├── 000573data.mat ├── 000573rnn.fig ├── RNN+EMM.mat ├── createfigure.m └── draw_timeacc.m ├── 000703 ├── 000703data.mat └── elm_result.mat ├── 000733-relationship ├── 000733data.mat ├── N&V.fig ├── draw_r.m ├── draw_relationship.mat ├── draw_relationship_2.mat └── elm_result.mat ├── 000909 ├── 000909data.mat └── elm_result.mat ├── main.m ├── results.xlsx └── total_rnn.fig /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/README.md -------------------------------------------------------------------------------- /sentiment_analysis/cut_jieba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/cut_jieba.py -------------------------------------------------------------------------------- /sentiment_analysis/data/POSTS/000573.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/data/POSTS/000573.xls -------------------------------------------------------------------------------- /sentiment_analysis/data/POSTS/000703.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/data/POSTS/000703.xls -------------------------------------------------------------------------------- /sentiment_analysis/data/POSTS/000733.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/data/POSTS/000733.xls -------------------------------------------------------------------------------- /sentiment_analysis/data/POSTS/000788.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/data/POSTS/000788.xls -------------------------------------------------------------------------------- /sentiment_analysis/data/POSTS/000909.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/data/POSTS/000909.xls -------------------------------------------------------------------------------- /sentiment_analysis/data/POSTS/300017.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/data/POSTS/300017.xls -------------------------------------------------------------------------------- /sentiment_analysis/data/POSTS/300333.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/data/POSTS/300333.xls -------------------------------------------------------------------------------- /sentiment_analysis/data/POSTS/600362.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/data/POSTS/600362.xls -------------------------------------------------------------------------------- /sentiment_analysis/data/POSTS/600605.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/data/POSTS/600605.xls -------------------------------------------------------------------------------- /sentiment_analysis/data/POSTS/601668.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/data/POSTS/601668.xls -------------------------------------------------------------------------------- /sentiment_analysis/data/label_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/data/label_data.xlsx -------------------------------------------------------------------------------- /sentiment_analysis/example/000573/000573.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000573/000573.xls -------------------------------------------------------------------------------- /sentiment_analysis/example/000573/cut_jieba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000573/cut_jieba.py -------------------------------------------------------------------------------- /sentiment_analysis/example/000573/data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000573/data.xlsx -------------------------------------------------------------------------------- /sentiment_analysis/example/000573/dic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000573/dic.txt -------------------------------------------------------------------------------- /sentiment_analysis/example/000573/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000573/test.txt -------------------------------------------------------------------------------- /sentiment_analysis/example/000573/test_sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000573/test_sentiment.py -------------------------------------------------------------------------------- /sentiment_analysis/example/000573/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000573/words.txt -------------------------------------------------------------------------------- /sentiment_analysis/example/000703/000703.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000703/000703.xls -------------------------------------------------------------------------------- /sentiment_analysis/example/000703/cut_jieba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000703/cut_jieba.py -------------------------------------------------------------------------------- /sentiment_analysis/example/000703/data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000703/data.xlsx -------------------------------------------------------------------------------- /sentiment_analysis/example/000703/dic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000703/dic.txt -------------------------------------------------------------------------------- /sentiment_analysis/example/000703/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000703/test.txt -------------------------------------------------------------------------------- /sentiment_analysis/example/000703/test_sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000703/test_sentiment.py -------------------------------------------------------------------------------- /sentiment_analysis/example/000703/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000703/words.txt -------------------------------------------------------------------------------- /sentiment_analysis/example/000733/000733.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000733/000733.xls -------------------------------------------------------------------------------- /sentiment_analysis/example/000733/cut_jieba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000733/cut_jieba.py -------------------------------------------------------------------------------- /sentiment_analysis/example/000733/data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000733/data.xlsx -------------------------------------------------------------------------------- /sentiment_analysis/example/000733/dic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000733/dic.txt -------------------------------------------------------------------------------- /sentiment_analysis/example/000733/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000733/test.txt -------------------------------------------------------------------------------- /sentiment_analysis/example/000733/test_sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000733/test_sentiment.py -------------------------------------------------------------------------------- /sentiment_analysis/example/000733/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/000733/words.txt -------------------------------------------------------------------------------- /sentiment_analysis/example/300333/300333.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/300333/300333.xls -------------------------------------------------------------------------------- /sentiment_analysis/example/300333/cut_jieba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/300333/cut_jieba.py -------------------------------------------------------------------------------- /sentiment_analysis/example/300333/data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/300333/data.xlsx -------------------------------------------------------------------------------- /sentiment_analysis/example/300333/dic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/300333/dic.txt -------------------------------------------------------------------------------- /sentiment_analysis/example/300333/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/300333/test.txt -------------------------------------------------------------------------------- /sentiment_analysis/example/300333/test_sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/300333/test_sentiment.py -------------------------------------------------------------------------------- /sentiment_analysis/example/300333/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/example/300333/words.txt -------------------------------------------------------------------------------- /sentiment_analysis/gen_word/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/gen_word/1.py -------------------------------------------------------------------------------- /sentiment_analysis/gen_word/F1/out/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/gen_word/F1/out/results.txt -------------------------------------------------------------------------------- /sentiment_analysis/gen_word/F1/out/test_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/gen_word/F1/out/test_log.txt -------------------------------------------------------------------------------- /sentiment_analysis/gen_word/F1/out/train_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/gen_word/F1/out/train_log.txt -------------------------------------------------------------------------------- /sentiment_analysis/gen_word/F1/out/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/gen_word/F1/out/words.txt -------------------------------------------------------------------------------- /sentiment_analysis/gen_word/F1/test/test_neg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/gen_word/F1/test/test_neg.txt -------------------------------------------------------------------------------- /sentiment_analysis/gen_word/F1/test/test_pos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/gen_word/F1/test/test_pos.txt -------------------------------------------------------------------------------- /sentiment_analysis/gen_word/F1/train/train_neg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/gen_word/F1/train/train_neg.txt -------------------------------------------------------------------------------- /sentiment_analysis/gen_word/F1/train/train_pos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/gen_word/F1/train/train_pos.txt -------------------------------------------------------------------------------- /sentiment_analysis/gen_word/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/gen_word/stopwords.txt -------------------------------------------------------------------------------- /sentiment_analysis/test_sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/test_sentiment.py -------------------------------------------------------------------------------- /sentiment_analysis/tip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/sentiment_analysis/tip.txt -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/000573.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/000573.mat -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/000703.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/000703.mat -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/000733.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/000733.mat -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/000788.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/000788.mat -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/000909.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/000909.mat -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/300317.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/300317.mat -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/300333.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/300333.mat -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/600362.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/600362.mat -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/600605.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/600605.mat -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/601668.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/601668.mat -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/COM.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/COM.fig -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/RESULTS.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/RESULTS.xlsx -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/createfigure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/createfigure.m -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/guess_result.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/guess_result.mat -------------------------------------------------------------------------------- /stock_pre_tool/COMPARISON_MLP+SVM+GUESS/mean_std.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/COMPARISON_MLP+SVM+GUESS/mean_std.mat -------------------------------------------------------------------------------- /stock_pre_tool/stock_price.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/stock_price.xlsx -------------------------------------------------------------------------------- /stock_pre_tool/tools/BPnet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/tools/BPnet.m -------------------------------------------------------------------------------- /stock_pre_tool/tools/EMM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/tools/EMM.m -------------------------------------------------------------------------------- /stock_pre_tool/tools/RNN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/tools/RNN.m -------------------------------------------------------------------------------- /stock_pre_tool/tools/SVM_M.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/tools/SVM_M.m -------------------------------------------------------------------------------- /stock_pre_tool/tools/SVM_P.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/tools/SVM_P.m -------------------------------------------------------------------------------- /stock_pre_tool/tools/bodong.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/tools/bodong.m -------------------------------------------------------------------------------- /stock_pre_tool/tools/cell2double.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/tools/cell2double.m -------------------------------------------------------------------------------- /stock_pre_tool/tools/guess.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/tools/guess.m -------------------------------------------------------------------------------- /stock_pre_tool/tools/guiyihua.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/tools/guiyihua.m -------------------------------------------------------------------------------- /stock_pre_tool/tools/mood_c.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/tools/mood_c.m -------------------------------------------------------------------------------- /stock_pre_tool/tools/p_guiyihua.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/tools/p_guiyihua.m -------------------------------------------------------------------------------- /stock_pre_tool/tools/price_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/tools/price_test.m -------------------------------------------------------------------------------- /stock_pre_tool/tools/updown.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/tools/updown.m -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000573-timeacc/000573.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000573-timeacc/000573.m -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000573-timeacc/000573data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000573-timeacc/000573data.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000573-timeacc/000573rnn.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000573-timeacc/000573rnn.fig -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000573-timeacc/RNN+EMM.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000573-timeacc/RNN+EMM.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000573-timeacc/createfigure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000573-timeacc/createfigure.m -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000573-timeacc/draw_timeacc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000573-timeacc/draw_timeacc.m -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000703/000703data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000703/000703data.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000703/elm_result.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000703/elm_result.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000733-relationship/000733data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000733-relationship/000733data.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000733-relationship/N&V.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000733-relationship/N&V.fig -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000733-relationship/draw_r.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000733-relationship/draw_r.m -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000733-relationship/draw_relationship.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000733-relationship/draw_relationship.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000733-relationship/draw_relationship_2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000733-relationship/draw_relationship_2.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000733-relationship/elm_result.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000733-relationship/elm_result.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000909/000909data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000909/000909data.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/000909/elm_result.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/000909/elm_result.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/300017/300017data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/300017/300017data.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/300017/elm_result.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/300017/elm_result.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/300333/300333data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/300333/300333data.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/300333/elm_result.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/300333/elm_result.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/600362/600362/600362data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/600362/600362/600362data.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/600362/600362/elm_result.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/600362/600362/elm_result.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/600605/600605/600605data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/600605/600605/600605data.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/600605/600605/elm_result.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/600605/600605/elm_result.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/601668/601668/601668data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/601668/601668/601668data.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/601668/601668/elm_result.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/601668/601668/elm_result.mat -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/main.m -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/results.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/results.xlsx -------------------------------------------------------------------------------- /stock_pre_tool/total_analysis/total_rnn.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irfanICMLL/EMM-for-stock-prediction/HEAD/stock_pre_tool/total_analysis/total_rnn.fig --------------------------------------------------------------------------------