├── .gitignore ├── LICENSE ├── README.md ├── config.ini ├── doc ├── real_time_stock_description.md └── stock_table_description.md ├── pom.xml ├── requirements.txt ├── sql ├── bx_top10_smmary.sql ├── create-table.sql ├── dragon_tiger_list_aggregate_analyze.sql ├── dragon_tiger_list_condition.sql ├── dragon_tiger_list_condition_analyze.sql ├── load_data.sql ├── 北向每月流入成交量榜单汇总.sql ├── 北向每月流入成交量股票明细.sql └── 北向每月流入涨幅榜单汇总.sql ├── src └── main │ ├── python │ └── com │ │ ├── __init__.py │ │ └── bluehonour │ │ ├── __init__.py │ │ ├── baostock │ │ ├── __init__.py │ │ ├── get_all_stock_data_details.py │ │ ├── get_single_stock_data.py │ │ ├── query_stock_basic_info.py │ │ └── query_trade_dates.py │ │ ├── realtime │ │ ├── __init__.py │ │ └── real_time_stock_data.py │ │ ├── spider │ │ ├── __init__.py │ │ ├── bx_day_rise_top10.py │ │ ├── bx_day_volume_top10.py │ │ ├── bx_history_volume_top10.py │ │ ├── dragon_tiger_list.py │ │ ├── get_bx_behavior_date.py │ │ ├── get_bx_date.py │ │ ├── history_dragon_tiger_list.py │ │ ├── sector_fund_flow.py │ │ └── single_stock_fund_flow.py │ │ └── utils │ │ ├── Utils.py │ │ ├── __init__.py │ │ ├── date_to_weekday.py │ │ ├── get_stock_data_path.py │ │ └── readConfig.py │ ├── resources │ ├── core-site.xml │ ├── hdfs-site.xml │ └── hive-site.xml │ └── scala │ ├── com │ └── bluehonour │ │ └── spark │ │ ├── BxRiseAndVolumeTop10AggregateAnalyze.scala │ │ ├── DragonTigerListAggregateAnalyze.scala │ │ ├── DragonTigerListConditionAnalyze.scala │ │ └── Parameter.scala │ └── org │ └── apache │ └── spark │ └── unsafe │ └── types │ └── UTF8String.java └── stock-data ├── all_stock_data_details ├── 2020-05 │ ├── sh.000001.上证综合指数.csv │ ├── sh.000002.上证A股指数.csv │ ├── sh.000003.上证B股指数.csv │ ├── sh.000004.上证工业类指数.csv │ ├── sh.000005.上证商业类指数.csv │ ├── sh.000006.上证房地产指数.csv │ ├── sh.000007.上证公用事业指数.csv │ ├── sh.000008.上证综合业类指数.csv │ ├── sh.000009.上证380.csv │ ├── sh.000010.上证成份指数.csv │ ├── sh.000011.上证基金指数.csv │ ├── sh.000012.上证国债指数.csv │ ├── sh.000013.上证企业债指数.csv │ ├── sh.000015.上证红利指数.csv │ ├── sh.000016.上证50指数.csv │ ├── sh.000017.新上证综指.csv │ ├── sh.000018.上证180金融股指数.csv │ ├── sh.000019.上证公司治理指数.csv │ ├── sh.000020.上证中型企业综合指数.csv │ ├── sh.000021.上证180公司治理指数.csv │ ├── sh.000022.沪公司债.csv │ ├── sh.000025.上证180基建指数.csv │ ├── sh.000026.上证180资源指数.csv │ ├── sh.000027.上证180交通运输指数.csv │ ├── sh.000028.上证180成长指数.csv │ ├── sh.000029.上证180价值指数.csv │ ├── sh.000030.上证180相对成长指数.csv │ ├── sh.000031.上证180相对价值指数.csv │ ├── sh.000032.上证能源行业指数.csv │ ├── sh.000033.上证原材料行业指数.csv │ ├── sh.000034.上证工业行业指数.csv │ ├── sh.000035.上证可选消费行业指数.csv │ ├── sh.000036.上证主要消费行业指数.csv │ ├── sh.000037.上证医药卫生行业指数.csv │ ├── sh.000038.上证金融地产行业指数.csv │ ├── sh.000039.上证信息技术行业指数.csv │ ├── sh.000040.上证电信业务行业指数.csv │ ├── sh.000041.上证公用事业行业指数.csv │ ├── sh.000042.上证中央企业50指数.csv │ ├── sh.000043.上证超级大盘指数.csv │ ├── sh.000044.上证中盘.csv │ ├── sh.000045.上证小盘.csv │ ├── sh.000046.上证中小.csv │ ├── sh.000047.上证全指.csv │ ├── sh.000048.责任指数.csv │ ├── sh.000049.上证民企.csv │ ├── sh.000050.50等权.csv │ ├── sh.000051.180等权.csv │ ├── sh.000052.50基本.csv │ ├── sh.000053.180基本.csv │ ├── sh.000054.上证海外.csv │ ├── sh.000056.上证国企.csv │ ├── sh.000057.全指成长.csv │ ├── sh.000058.全指价值.csv │ ├── sh.000059.全R成长.csv │ ├── sh.000060.全R价值.csv │ ├── sh.000061.沪企债30.csv │ ├── sh.000062.上证沪企.csv │ ├── sh.000063.上证周期.csv │ ├── sh.000064.非周期.csv │ ├── sh.000065.上证龙头.csv │ ├── sh.000066.上证商品.csv │ ├── sh.000067.上证新兴.csv │ ├── sh.000068.上证资源.csv │ ├── sh.000069.消费80.csv │ ├── sh.000070.能源等权.csv │ ├── sh.000071.材料等权.csv │ ├── sh.000072.工业等权.csv │ ├── sh.000073.可选等权.csv │ ├── sh.000074.消费等权.csv │ ├── sh.000075.医药等权.csv │ ├── sh.000076.金融等权.csv │ ├── sh.000077.信息等权.csv │ ├── sh.000078.电信等权.csv │ ├── sh.000079.公用等权.csv │ ├── sh.000090.上证流通.csv │ ├── sh.000091.沪财中小.csv │ ├── sh.000092.资源50.csv │ ├── sh.000093.180分层.csv │ ├── sh.000094.上证上游.csv │ ├── sh.000095.上证中游.csv │ ├── sh.000096.上证下游.csv │ ├── sh.000097.高端装备.csv │ ├── sh.000098.上证F200.csv │ ├── sh.000099.上证F300.csv │ ├── sh.000100.上证F500.csv │ ├── sh.000101.上证5年期信用债指数.csv │ ├── sh.000102.沪投资品.csv │ ├── sh.000103.沪消费品.csv │ ├── sh.000104.380能源.csv │ ├── sh.000105.380材料.csv │ ├── sh.000106.380工业.csv │ ├── sh.000107.380可选.csv │ ├── sh.000108.380消费.csv │ ├── sh.000109.380医药.csv │ ├── sh.000110.380金融.csv │ ├── sh.000111.380信息.csv │ ├── sh.000112.380电信.csv │ ├── sh.000113.380公用.csv │ ├── sh.000114.持续产业.csv │ ├── sh.000115.380等权.csv │ ├── sh.000116.上证信用债100指数.csv │ ├── sh.000117.380成长.csv │ ├── sh.000118.380价值.csv │ ├── sh.000119.380R成长.csv │ ├── sh.000120.380R价值.csv │ ├── sh.000121.医药主题.csv │ ├── sh.000122.农业主题.csv │ ├── sh.000123.上证180动态指数.csv │ ├── sh.000125.上证180稳定指数.csv │ ├── sh.000126.消费50.csv │ ├── sh.000128.380基本.csv │ ├── sh.000129.180波动.csv │ ├── sh.000130.380波动.csv │ ├── sh.000131.上证高新.csv │ ├── sh.000132.上证100.csv │ ├── sh.000133.上证150.csv │ ├── sh.000134.上证银行股指数.csv │ ├── sh.000135.上证180高贝塔指数.csv │ ├── sh.000136.上证180低贝塔指数.csv │ ├── sh.000137.上证380高贝塔指数.csv │ ├── sh.000138.上证380低贝塔指数.csv │ ├── sh.000139.上证可转换债券指数.csv │ ├── sh.000141.上证380动态指数.csv │ ├── sh.000142.上证380稳定指数.csv │ ├── sh.000145.上证优势资源产业指数.csv │ ├── sh.000146.上证优势制造产业指数.csv │ ├── sh.000147.上证优势消费产业指数.csv │ ├── sh.000148.上证消费服务领先指数.csv │ ├── sh.000149.上证180红利指数.csv │ ├── sh.000150.上证380红利指数.csv │ ├── sh.000151.上证国有企业红利指数.csv │ ├── sh.000152.上证中央企业红利指数.csv │ ├── sh.000153.上证民营企业红利指数.csv │ ├── sh.000155.上证市值百强指数.csv │ ├── sh.000158.上证环保产业指数.csv │ ├── sh.000159.上证沪股通指数.csv │ ├── sh.000160.上证一带一路主题指数.csv │ ├── sh.000161.上证中国制造2025主题指数.csv │ ├── sh.000162.上证互联网+主题指数.csv │ ├── sh.000300.沪深300指数.csv │ ├── sh.000802.500沪市.csv │ ├── sh.000805.A股资源.csv │ ├── sh.000806.消费服务.csv │ ├── sh.000807.食品饮料.csv │ ├── sh.000808.医药生物.csv │ ├── sh.000814.细分医药.csv │ ├── sh.000816.细分地产.csv │ ├── sh.000819.有色金属.csv │ ├── sh.000821.沪深300红利指数.csv │ ├── sh.000823.中证800有色.csv │ ├── sh.000827.中证环保产业指数.csv │ ├── sh.000828.沪深300高贝塔指数.csv │ ├── sh.000832.中证可转换债券指数.csv │ ├── sh.000833.中证1-7年中高收益企债指数.csv │ ├── sh.000841.中证800制药与生物技术指数.csv │ ├── sh.000842.中证800等权重指数.csv │ ├── sh.000846.中证财通中国可持续发展100(ECPIESG)指数.csv │ ├── sh.000847.中证腾讯济安价值100A股指数.csv │ ├── sh.000849.沪深300非银行金融指数.csv │ ├── sh.000851.百发100指数.csv │ ├── sh.000852.中证1000指数.csv │ ├── sh.000853.中证申万一带一路主题投资指数.csv │ ├── sh.000854.中证500原材料指数.csv │ ├── sh.000855.央视财经500指数.csv │ └── sh.000856.中证500工业指数.csv ├── 2020-09 │ ├── sh.000001.上证综合指数.csv │ ├── sh.000002.上证A股指数.csv │ ├── sh.000003.上证B股指数.csv │ ├── sh.000004.上证工业类指数.csv │ ├── sh.000005.上证商业类指数.csv │ ├── sh.000006.上证房地产指数.csv │ ├── sh.000007.上证公用事业指数.csv │ ├── sh.000008.上证综合业类指数.csv │ ├── sh.000009.上证380.csv │ ├── sh.000010.上证180指数.csv │ ├── sh.000011.上证基金指数.csv │ ├── sh.000012.上证国债指数.csv │ ├── sh.000013.上证企业债指数.csv │ ├── sh.000015.上证红利指数.csv │ ├── sh.000016.上证50指数.csv │ ├── sh.000017.新上证综指.csv │ ├── sh.000018.上证180金融股指数.csv │ ├── sh.000019.上证公司治理指数.csv │ ├── sh.000020.上证中型企业综合指数.csv │ ├── sh.000021.上证180公司治理指数.csv │ ├── sh.000022.沪公司债.csv │ ├── sh.000025.上证180基建指数.csv │ ├── sh.000026.上证180资源指数.csv │ ├── sh.000027.上证180交通运输指数.csv │ ├── sh.000028.上证180成长指数.csv │ ├── sh.000029.上证180价值指数.csv │ ├── sh.000030.上证180相对成长指数.csv │ ├── sh.000031.上证180相对价值指数.csv │ ├── sh.000032.上证能源行业指数.csv │ ├── sh.000033.上证原材料行业指数.csv │ ├── sh.000034.上证工业行业指数.csv │ ├── sh.000035.上证可选消费行业指数.csv │ ├── sh.000036.上证主要消费行业指数.csv │ ├── sh.000037.上证医药卫生行业指数.csv │ ├── sh.000038.上证金融地产行业指数.csv │ ├── sh.000039.上证信息技术行业指数.csv │ ├── sh.000040.上证电信业务行业指数.csv │ ├── sh.000041.上证公用事业行业指数.csv │ ├── sh.000042.上证中央企业50指数.csv │ ├── sh.000043.上证超级大盘指数.csv │ ├── sh.000044.上证中盘.csv │ ├── sh.000045.上证小盘.csv │ ├── sh.000046.上证中小.csv │ ├── sh.000047.上证全指.csv │ ├── sh.000048.责任指数.csv │ ├── sh.000049.上证民企.csv │ ├── sh.000050.50等权.csv │ ├── sh.000051.180等权.csv │ ├── sh.000052.50基本.csv │ ├── sh.000053.180基本.csv │ ├── sh.000054.上证海外.csv │ ├── sh.000056.上证国企.csv │ ├── sh.000057.全指成长.csv │ ├── sh.000058.全指价值.csv │ ├── sh.000059.全R成长.csv │ ├── sh.000060.全R价值.csv │ ├── sh.000061.沪企债30.csv │ ├── sh.000062.上证沪企.csv │ ├── sh.000063.上证周期.csv │ ├── sh.000064.非周期.csv │ ├── sh.000065.上证龙头.csv │ ├── sh.000066.上证商品.csv │ ├── sh.000067.上证新兴.csv │ ├── sh.000068.上证资源.csv │ ├── sh.000069.消费80.csv │ ├── sh.000070.能源等权.csv │ ├── sh.000071.材料等权.csv │ ├── sh.000072.工业等权.csv │ ├── sh.000073.可选等权.csv │ ├── sh.000074.消费等权.csv │ ├── sh.000075.医药等权.csv │ ├── sh.000076.金融等权.csv │ ├── sh.000077.信息等权.csv │ ├── sh.000078.电信等权.csv │ ├── sh.000079.公用等权.csv │ ├── sh.000090.上证流通.csv │ ├── sh.000091.沪财中小.csv │ ├── sh.000092.资源50.csv │ ├── sh.000093.180分层.csv │ ├── sh.000094.上证上游.csv │ ├── sh.000095.上证中游.csv │ ├── sh.000096.上证下游.csv │ ├── sh.000097.高端装备.csv │ ├── sh.000098.上证F200.csv │ ├── sh.000099.上证F300.csv │ ├── sh.000100.上证F500.csv │ ├── sh.000101.上证5年期信用债指数.csv │ ├── sh.000102.沪投资品.csv │ ├── sh.000103.沪消费品.csv │ ├── sh.000104.380能源.csv │ ├── sh.000105.380材料.csv │ ├── sh.000106.380工业.csv │ ├── sh.000107.380可选.csv │ ├── sh.000108.380消费.csv │ ├── sh.000109.380医药.csv │ ├── sh.000110.380金融.csv │ ├── sh.000111.380信息.csv │ ├── sh.000112.380电信.csv │ ├── sh.000113.380公用.csv │ ├── sh.000114.持续产业.csv │ ├── sh.000115.380等权.csv │ ├── sh.000116.上证信用债100指数.csv │ ├── sh.000117.380成长.csv │ ├── sh.000118.380价值.csv │ ├── sh.000119.380R成长.csv │ ├── sh.000120.380R价值.csv │ ├── sh.000121.医药主题.csv │ ├── sh.000122.农业主题.csv │ ├── sh.000123.上证180动态指数.csv │ ├── sh.000125.上证180稳定指数.csv │ ├── sh.000126.消费50.csv │ ├── sh.000128.380基本.csv │ ├── sh.000129.180波动.csv │ ├── sh.000130.380波动.csv │ ├── sh.000131.上证高新.csv │ ├── sh.000132.上证100.csv │ ├── sh.000133.上证150.csv │ ├── sh.000134.上证银行股指数.csv │ ├── sh.000135.上证180高贝塔指数.csv │ ├── sh.000136.上证180低贝塔指数.csv │ ├── sh.000137.上证380高贝塔指数.csv │ ├── sh.000138.上证380低贝塔指数.csv │ ├── sh.000139.上证可转换债券指数.csv │ ├── sh.000141.上证380动态指数.csv │ ├── sh.000142.上证380稳定指数.csv │ ├── sh.000145.上证优势资源产业指数.csv │ ├── sh.000146.上证优势制造产业指数.csv │ ├── sh.000147.上证优势消费产业指数.csv │ ├── sh.000148.上证消费服务领先指数.csv │ ├── sh.000149.上证180红利指数.csv │ ├── sh.000150.上证380红利指数.csv │ ├── sh.000151.上证国有企业红利指数.csv │ ├── sh.000152.上证中央企业红利指数.csv │ ├── sh.000153.上证民营企业红利指数.csv │ ├── sh.000155.上证市值百强指数.csv │ ├── sh.000158.上证环保产业指数.csv │ ├── sh.000159.上证沪股通指数.csv │ ├── sh.000160.上证一带一路主题指数.csv │ ├── sh.000161.上证中国制造2025主题指数.csv │ ├── sh.000162.上证互联网+主题指数.csv │ ├── sh.000300.沪深300指数.csv │ ├── sh.000802.500沪市.csv │ ├── sh.000805.A股资源.csv │ ├── sh.000806.消费服务.csv │ ├── sh.000807.食品饮料.csv │ ├── sh.000808.医药生物.csv │ ├── sh.000814.细分医药.csv │ ├── sh.000816.细分地产.csv │ ├── sh.000819.有色金属.csv │ ├── sh.000821.沪深300红利指数.csv │ ├── sh.000823.中证800有色.csv │ ├── sh.000827.中证环保产业指数.csv │ ├── sh.000828.沪深300高贝塔指数.csv │ ├── sh.000832.中证可转换债券指数.csv │ ├── sh.000833.中证1-7年中高收益企债指数.csv │ ├── sh.000841.中证800制药与生物技术指数.csv │ ├── sh.000842.中证800等权重指数.csv │ ├── sh.000846.中证财通中国可持续发展100(ECPIESG)指数.csv │ ├── sh.000847.中证腾讯济安价值100A股指数.csv │ ├── sh.000849.沪深300非银行金融指数.csv │ ├── sh.000851.百发100指数.csv │ ├── sh.000852.中证1000指数.csv │ ├── sh.000853.中证申万一带一路主题投资指数.csv │ ├── sh.000854.中证500原材料指数.csv │ ├── sh.000855.央视财经500指数.csv │ ├── sh.000856.中证500工业指数.csv │ ├── sh.000857.中证500医药卫生指数.csv │ ├── sh.000858.中证500信息技术指数.csv │ ├── sh.000901.中证南方小康产业指数.csv │ ├── sh.000903.中证100指数.csv │ ├── sh.000904.中证200指数.csv │ ├── sh.000905.中证500指数.csv │ ├── sh.000906.中证800指数.csv │ ├── sh.000908.沪深300能源(一级行业)指数.csv │ ├── sh.000909.沪深300原材料(一级行业)指数.csv │ ├── sh.000910.沪深300工业指数.csv │ ├── sh.000911.沪深300可选消费指数.csv │ ├── sh.000912.沪深300主要消费指数.csv │ ├── sh.000913.沪深300医药卫生指数.csv │ ├── sh.000914.沪深300金融地产指数.csv │ ├── sh.000917.沪深300公用事业(一级行业)指数.csv │ ├── sh.000918.沪深300成长指数.csv │ ├── sh.000919.沪深300价值指数.csv │ ├── sh.000922.中证红利指数.csv │ ├── sh.000925.中证锐联基本面50指数.csv │ ├── sh.000928.中证能源指数.csv │ ├── sh.000931.中证可选消费指数.csv │ ├── sh.000932.中证主要消费指数.csv │ ├── sh.000933.中证医药卫生指数.csv │ ├── sh.000934.中证金融地产指数.csv │ ├── sh.000935.中证信息技术指数.csv │ ├── sh.000939.中证民企成长指数.csv │ ├── sh.000940.中证财富大盘指数.csv │ ├── sh.000944.中证内地资源主题指数.csv │ ├── sh.000950.沪深300基建主题指数.csv │ ├── sh.000951.沪深300银行指数.csv │ ├── sh.000952.沪深300地产指数.csv │ ├── sh.000957.沪深300运输指数.csv │ ├── sh.000958.中证创业成长指数.csv │ ├── sh.000959.银河99.csv │ ├── sh.000961.中证上游资源产业指数.csv │ ├── sh.000963.中证下游消费与服务产业指数.csv │ ├── sh.000964.中证新兴产业指数.csv │ ├── sh.000966.中证锐联基本面400指数.csv │ ├── sh.000969.沪深300非周期行业指数.csv │ ├── sh.000971.等权90.csv │ ├── sh.000974.中证800金融.csv │ ├── sh.000975.中证钱江30指数.csv │ ├── sh.000977.中证内地低碳经济主题指数.csv │ ├── sh.000978.中证医药100指数.csv │ ├── sh.000979.中证大宗商品股票指数.csv │ ├── sh.000982.中证500等权重指数.csv │ ├── sh.000983.智能资产.csv │ ├── sh.000984.沪深300等权重指数.csv │ ├── sh.000986.全指能源.csv │ ├── sh.000987.全指材料.csv │ ├── sh.000989.全指可选.csv │ ├── sh.000990.全指消费.csv │ ├── sh.000991.全指医药.csv │ ├── sh.000992.全指金融.csv │ ├── sh.000993.全指信息.csv │ ├── sh.000998.中证TMT产业主题指数.csv │ ├── sh.600000.浦发银行.csv │ ├── sh.600004.白云机场.csv │ ├── sh.600006.东风汽车.csv │ ├── sh.600007.中国国贸.csv │ ├── sh.600008.首创股份.csv │ ├── sh.600009.上海机场.csv │ ├── sh.600010.包钢股份.csv │ ├── sh.600011.华能国际.csv │ ├── sh.600012.皖通高速.csv │ ├── sh.600015.华夏银行.csv │ ├── sh.600016.民生银行.csv │ ├── sh.600017.日照港.csv │ ├── sh.600018.上港集团.csv │ ├── sh.600019.宝钢股份.csv │ ├── sh.600020.中原高速.csv │ ├── sh.600021.上海电力.csv │ ├── sh.600022.山东钢铁.csv │ ├── sh.600023.浙能电力.csv │ ├── sh.600025.华能水电.csv │ ├── sh.600026.中远海能.csv │ ├── sh.600027.华电国际.csv │ ├── sh.600028.中国石化.csv │ ├── sh.600029.南方航空.csv │ ├── sh.600030.中信证券.csv │ ├── sh.600031.三一重工.csv │ ├── sh.600033.福建高速.csv │ ├── sh.600035.楚天高速.csv │ ├── sh.600036.招商银行.csv │ ├── sh.600037.歌华有线.csv │ ├── sh.600038.中直股份.csv │ ├── sh.600039.四川路桥.csv │ ├── sh.600048.保利地产.csv │ ├── sh.600050.中国联通.csv │ ├── sh.600051.宁波联合.csv │ ├── sh.600052.浙江广厦.csv │ ├── sh.600053.九鼎投资.csv │ ├── sh.600054.黄山旅游.csv │ ├── sh.600055.万东医疗.csv │ ├── sh.600056.中国医药.csv │ ├── sh.600057.厦门象屿.csv │ ├── sh.600058.五矿发展.csv │ ├── sh.600059.古越龙山.csv │ ├── sh.600060.海信视像.csv │ ├── sh.600061.国投资本.csv │ ├── sh.600062.华润双鹤.csv │ ├── sh.600063.皖维高新.csv │ ├── sh.600064.南京高科.csv │ ├── sh.600066.宇通客车.csv │ ├── sh.600067.冠城大通.csv │ ├── sh.600068.葛洲坝.csv │ ├── sh.600070.浙江富润.csv │ ├── sh.600071.凤凰光学.csv │ ├── sh.600072.中船科技.csv │ ├── sh.600073.上海梅林.csv │ ├── sh.600075.新疆天业.csv │ ├── sh.600076.康欣新材.csv │ ├── sh.600077.宋都股份.csv │ ├── sh.600078.澄星股份.csv │ ├── sh.600079.人福医药.csv │ ├── sh.600080.ST金花.csv │ ├── sh.600081.东风科技.csv │ └── sh.600082.海泰发展.csv ├── 2020-10 │ ├── sh.000001.上证综合指数.csv │ ├── sh.000002.上证A股指数.csv │ ├── sh.000003.上证B股指数.csv │ ├── sh.000004.上证工业类指数.csv │ ├── sh.000005.上证商业类指数.csv │ ├── sh.000006.上证房地产指数.csv │ ├── sh.000007.上证公用事业指数.csv │ ├── sh.000008.上证综合业类指数.csv │ ├── sh.000009.上证380.csv │ ├── sh.000010.上证180指数.csv │ ├── sh.000011.上证基金指数.csv │ ├── sh.000012.上证国债指数.csv │ ├── sh.000013.上证企业债指数.csv │ ├── sh.000015.上证红利指数.csv │ ├── sh.000016.上证50指数.csv │ ├── sh.000017.新上证综指.csv │ ├── sh.000018.上证180金融股指数.csv │ ├── sh.000019.上证公司治理指数.csv │ ├── sh.000020.上证中型企业综合指数.csv │ ├── sh.000021.上证180公司治理指数.csv │ ├── sh.000022.沪公司债.csv │ ├── sh.000025.上证180基建指数.csv │ ├── sh.000026.上证180资源指数.csv │ ├── sh.000027.上证180交通运输指数.csv │ ├── sh.000028.上证180成长指数.csv │ ├── sh.000029.上证180价值指数.csv │ ├── sh.000030.上证180相对成长指数.csv │ ├── sh.000031.上证180相对价值指数.csv │ ├── sh.000032.上证能源行业指数.csv │ ├── sh.000033.上证原材料行业指数.csv │ ├── sh.000034.上证工业行业指数.csv │ ├── sh.000035.上证可选消费行业指数.csv │ ├── sh.000036.上证主要消费行业指数.csv │ ├── sh.000037.上证医药卫生行业指数.csv │ ├── sh.000038.上证金融地产行业指数.csv │ ├── sh.000039.上证信息技术行业指数.csv │ ├── sh.000040.上证电信业务行业指数.csv │ ├── sh.000041.上证公用事业行业指数.csv │ ├── sh.000042.上证中央企业50指数.csv │ ├── sh.000043.上证超级大盘指数.csv │ ├── sh.000044.上证中盘.csv │ ├── sh.000045.上证小盘.csv │ ├── sh.000046.上证中小.csv │ ├── sh.000047.上证全指.csv │ ├── sh.000048.责任指数.csv │ ├── sh.000049.上证民企.csv │ ├── sh.000050.50等权.csv │ ├── sh.000051.180等权.csv │ ├── sh.000052.50基本.csv │ ├── sh.000053.180基本.csv │ ├── sh.000054.上证海外.csv │ ├── sh.000056.上证国企.csv │ ├── sh.000057.全指成长.csv │ ├── sh.000058.全指价值.csv │ ├── sh.000059.全R成长.csv │ ├── sh.000060.全R价值.csv │ ├── sh.000061.沪企债30.csv │ ├── sh.000062.上证沪企.csv │ ├── sh.000063.上证周期.csv │ ├── sh.000064.非周期.csv │ ├── sh.000065.上证龙头.csv │ ├── sh.000066.上证商品.csv │ ├── sh.000067.上证新兴.csv │ ├── sh.000068.上证资源.csv │ ├── sh.000069.消费80.csv │ ├── sh.000070.能源等权.csv │ ├── sh.000071.材料等权.csv │ ├── sh.000072.工业等权.csv │ ├── sh.000073.可选等权.csv │ ├── sh.000074.消费等权.csv │ ├── sh.000075.医药等权.csv │ ├── sh.000076.金融等权.csv │ ├── sh.000077.信息等权.csv │ ├── sh.000078.电信等权.csv │ ├── sh.000079.公用等权.csv │ ├── sh.000090.上证流通.csv │ ├── sh.000091.沪财中小.csv │ ├── sh.000092.资源50.csv │ ├── sh.000093.180分层.csv │ ├── sh.000094.上证上游.csv │ ├── sh.000095.上证中游.csv │ ├── sh.000096.上证下游.csv │ ├── sh.000097.高端装备.csv │ ├── sh.000098.上证F200.csv │ ├── sh.000099.上证F300.csv │ ├── sh.000100.上证F500.csv │ ├── sh.000101.上证5年期信用债指数.csv │ ├── sh.000102.沪投资品.csv │ ├── sh.000103.沪消费品.csv │ ├── sh.000104.380能源.csv │ ├── sh.000105.380材料.csv │ ├── sh.000106.380工业.csv │ ├── sh.000107.380可选.csv │ ├── sh.000108.380消费.csv │ ├── sh.000109.380医药.csv │ ├── sh.000110.380金融.csv │ ├── sh.000111.380信息.csv │ ├── sh.000112.380电信.csv │ ├── sh.000113.380公用.csv │ ├── sh.000114.持续产业.csv │ ├── sh.000115.380等权.csv │ ├── sh.000116.上证信用债100指数.csv │ ├── sh.000117.380成长.csv │ ├── sh.000118.380价值.csv │ ├── sh.000119.380R成长.csv │ ├── sh.000120.380R价值.csv │ ├── sh.000121.医药主题.csv │ ├── sh.000122.农业主题.csv │ ├── sh.000123.上证180动态指数.csv │ ├── sh.000125.上证180稳定指数.csv │ ├── sh.000126.消费50.csv │ ├── sh.000128.380基本.csv │ ├── sh.000129.180波动.csv │ ├── sh.000130.380波动.csv │ ├── sh.000131.上证高新.csv │ ├── sh.000132.上证100.csv │ ├── sh.000133.上证150.csv │ ├── sh.000134.上证银行股指数.csv │ ├── sh.000135.上证180高贝塔指数.csv │ ├── sh.000136.上证180低贝塔指数.csv │ ├── sh.000137.上证380高贝塔指数.csv │ ├── sh.000138.上证380低贝塔指数.csv │ ├── sh.000139.上证可转换债券指数.csv │ ├── sh.000141.上证380动态指数.csv │ ├── sh.000142.上证380稳定指数.csv │ ├── sh.000145.上证优势资源产业指数.csv │ ├── sh.000146.上证优势制造产业指数.csv │ ├── sh.000147.上证优势消费产业指数.csv │ ├── sh.000148.上证消费服务领先指数.csv │ ├── sh.000149.上证180红利指数.csv │ ├── sh.000150.上证380红利指数.csv │ ├── sh.000151.上证国有企业红利指数.csv │ ├── sh.000152.上证中央企业红利指数.csv │ ├── sh.000153.上证民营企业红利指数.csv │ ├── sh.000155.上证市值百强指数.csv │ ├── sh.000158.上证环保产业指数.csv │ ├── sh.000159.上证沪股通指数.csv │ ├── sh.000160.上证一带一路主题指数.csv │ ├── sh.000161.上证中国制造2025主题指数.csv │ ├── sh.000162.上证互联网+主题指数.csv │ ├── sh.000300.沪深300指数.csv │ ├── sh.000802.500沪市.csv │ ├── sh.000805.A股资源.csv │ ├── sh.000806.消费服务.csv │ ├── sh.000807.食品饮料.csv │ ├── sh.000808.医药生物.csv │ ├── sh.000814.细分医药.csv │ ├── sh.000816.细分地产.csv │ ├── sh.000819.有色金属.csv │ ├── sh.000821.沪深300红利指数.csv │ ├── sh.000823.中证800有色.csv │ ├── sh.000827.中证环保产业指数.csv │ ├── sh.000828.沪深300高贝塔指数.csv │ ├── sh.000832.中证可转换债券指数.csv │ ├── sh.000833.中证1-7年中高收益企债指数.csv │ ├── sh.000841.中证800制药与生物技术指数.csv │ ├── sh.000842.中证800等权重指数.csv │ ├── sh.000846.中证财通中国可持续发展100(ECPIESG)指数.csv │ ├── sh.000847.中证腾讯济安价值100A股指数.csv │ ├── sh.000849.沪深300非银行金融指数.csv │ ├── sh.000851.百发100指数.csv │ ├── sh.000852.中证1000指数.csv │ ├── sh.000853.中证申万一带一路主题投资指数.csv │ ├── sh.000854.中证500原材料指数.csv │ ├── sh.000855.央视财经500指数.csv │ ├── sh.000856.中证500工业指数.csv │ ├── sh.000857.中证500医药卫生指数.csv │ ├── sh.000858.中证500信息技术指数.csv │ ├── sh.000901.中证南方小康产业指数.csv │ ├── sh.000903.中证100指数.csv │ ├── sh.000904.中证200指数.csv │ ├── sh.000905.中证500指数.csv │ ├── sh.000906.中证800指数.csv │ ├── sh.000908.沪深300能源(一级行业)指数.csv │ ├── sh.000909.沪深300原材料(一级行业)指数.csv │ ├── sh.000910.沪深300工业指数.csv │ ├── sh.000911.沪深300可选消费指数.csv │ ├── sh.000912.沪深300主要消费指数.csv │ ├── sh.000913.沪深300医药卫生指数.csv │ ├── sh.000914.沪深300金融地产指数.csv │ ├── sh.000917.沪深300公用事业(一级行业)指数.csv │ ├── sh.000918.沪深300成长指数.csv │ ├── sh.000919.沪深300价值指数.csv │ ├── sh.000922.中证红利指数.csv │ ├── sh.000925.中证锐联基本面50指数.csv │ ├── sh.000928.中证能源指数.csv │ ├── sh.000931.中证可选消费指数.csv │ ├── sh.000932.中证主要消费指数.csv │ ├── sh.000933.中证医药卫生指数.csv │ ├── sh.000934.中证金融地产指数.csv │ ├── sh.000935.中证信息技术指数.csv │ ├── sh.000939.中证民企成长指数.csv │ ├── sh.000940.中证财富大盘指数.csv │ ├── sh.000944.中证内地资源主题指数.csv │ ├── sh.000950.沪深300基建主题指数.csv │ ├── sh.000951.沪深300银行指数.csv │ ├── sh.000952.沪深300地产指数.csv │ ├── sh.000957.沪深300运输指数.csv │ ├── sh.000958.中证创业成长指数.csv │ ├── sh.000959.银河99.csv │ ├── sh.000961.中证上游资源产业指数.csv │ ├── sh.000963.中证下游消费与服务产业指数.csv │ ├── sh.000964.中证新兴产业指数.csv │ ├── sh.000966.中证锐联基本面400指数.csv │ ├── sh.000969.沪深300非周期行业指数.csv │ ├── sh.000971.等权90.csv │ ├── sh.000974.中证800金融.csv │ ├── sh.000975.中证钱江30指数.csv │ ├── sh.000977.中证内地低碳经济主题指数.csv │ ├── sh.000978.中证医药100指数.csv │ ├── sh.000979.中证大宗商品股票指数.csv │ ├── sh.000982.中证500等权重指数.csv │ ├── sh.000983.智能资产.csv │ ├── sh.000984.沪深300等权重指数.csv │ ├── sh.000986.全指能源.csv │ ├── sh.000987.全指材料.csv │ ├── sh.000989.全指可选.csv │ ├── sh.000990.全指消费.csv │ ├── sh.000991.全指医药.csv │ ├── sh.000992.全指金融.csv │ ├── sh.000993.全指信息.csv │ ├── sh.000998.中证TMT产业主题指数.csv │ ├── sh.600000.浦发银行.csv │ ├── sh.600004.白云机场.csv │ ├── sh.600006.东风汽车.csv │ ├── sh.600007.中国国贸.csv │ ├── sh.600008.首创股份.csv │ ├── sh.600009.上海机场.csv │ ├── sh.600010.包钢股份.csv │ ├── sh.600011.华能国际.csv │ ├── sh.600012.皖通高速.csv │ ├── sh.600015.华夏银行.csv │ ├── sh.600016.民生银行.csv │ ├── sh.600017.日照港.csv │ ├── sh.600018.上港集团.csv │ ├── sh.600019.宝钢股份.csv │ ├── sh.600020.中原高速.csv │ ├── sh.600021.上海电力.csv │ ├── sh.600022.山东钢铁.csv │ ├── sh.600023.浙能电力.csv │ ├── sh.600025.华能水电.csv │ ├── sh.600026.中远海能.csv │ ├── sh.600027.华电国际.csv │ ├── sh.600028.中国石化.csv │ ├── sh.600029.南方航空.csv │ ├── sh.600030.中信证券.csv │ ├── sh.600031.三一重工.csv │ ├── sh.600033.福建高速.csv │ ├── sh.600035.楚天高速.csv │ ├── sh.600036.招商银行.csv │ ├── sh.600037.歌华有线.csv │ ├── sh.600038.中直股份.csv │ ├── sh.600039.四川路桥.csv │ ├── sh.600048.保利地产.csv │ ├── sh.600050.中国联通.csv │ ├── sh.600051.宁波联合.csv │ ├── sh.600052.浙江广厦.csv │ ├── sh.600053.九鼎投资.csv │ ├── sh.600054.黄山旅游.csv │ ├── sh.600055.万东医疗.csv │ ├── sh.600056.中国医药.csv │ ├── sh.600057.厦门象屿.csv │ ├── sh.600058.五矿发展.csv │ ├── sh.600059.古越龙山.csv │ ├── sh.600060.海信视像.csv │ ├── sh.600061.国投资本.csv │ ├── sh.600062.华润双鹤.csv │ ├── sh.600063.皖维高新.csv │ ├── sh.600064.南京高科.csv │ ├── sh.600066.宇通客车.csv │ ├── sh.600067.冠城大通.csv │ ├── sh.600068.葛洲坝.csv │ ├── sh.600070.浙江富润.csv │ ├── sh.600071.凤凰光学.csv │ ├── sh.600072.中船科技.csv │ ├── sh.600073.上海梅林.csv │ ├── sh.600075.新疆天业.csv │ ├── sh.600076.康欣新材.csv │ ├── sh.600077.宋都股份.csv │ ├── sh.600078.澄星股份.csv │ ├── sh.600079.人福医药.csv │ ├── sh.600080.ST金花.csv │ ├── sh.600081.东风科技.csv │ └── sh.600082.海泰发展.csv └── 2021-02 │ ├── sh.000001.上证综合指数.csv │ ├── sh.000002.上证A股指数.csv │ ├── sh.000003.上证B股指数.csv │ ├── sh.000004.上证工业类指数.csv │ ├── sh.000005.上证商业类指数.csv │ ├── sh.000006.上证房地产指数.csv │ ├── sh.000007.上证公用事业指数.csv │ ├── sh.000008.上证综合业类指数.csv │ ├── sh.000009.上证380.csv │ ├── sh.000010.上证180指数.csv │ ├── sh.000011.上证基金指数.csv │ ├── sh.000012.上证国债指数.csv │ ├── sh.000013.上证企业债指数.csv │ ├── sh.000015.上证红利指数.csv │ ├── sh.000016.上证50指数.csv │ ├── sh.000017.新上证综指.csv │ ├── sh.000018.上证180金融股指数.csv │ ├── sh.000019.上证公司治理指数.csv │ ├── sh.000020.上证中型企业综合指数.csv │ ├── sh.000021.上证180公司治理指数.csv │ ├── sh.000022.沪公司债.csv │ ├── sh.000025.上证180基建指数.csv │ ├── sh.000026.上证180资源指数.csv │ ├── sh.000027.上证180交通运输指数.csv │ ├── sh.000028.上证180成长指数.csv │ ├── sh.000029.上证180价值指数.csv │ ├── sh.000030.上证180相对成长指数.csv │ ├── sh.000031.上证180相对价值指数.csv │ ├── sh.000032.上证能源行业指数.csv │ ├── sh.000033.上证原材料行业指数.csv │ ├── sh.000034.上证工业行业指数.csv │ ├── sh.000035.上证可选消费行业指数.csv │ ├── sh.000036.上证主要消费行业指数.csv │ ├── sh.000037.上证医药卫生行业指数.csv │ ├── sh.000038.上证金融地产行业指数.csv │ ├── sh.000039.上证信息技术行业指数.csv │ ├── sh.000040.上证电信业务行业指数.csv │ ├── sh.000041.上证公用事业行业指数.csv │ ├── sh.000042.上证中央企业50指数.csv │ ├── sh.000043.上证超级大盘指数.csv │ ├── sh.000044.上证中盘.csv │ ├── sh.000045.上证小盘.csv │ ├── sh.000046.上证中小.csv │ ├── sh.000047.上证全指.csv │ ├── sh.000048.责任指数.csv │ ├── sh.000049.上证民企.csv │ ├── sh.000050.50等权.csv │ ├── sh.000051.180等权.csv │ ├── sh.000052.50基本.csv │ ├── sh.000053.180基本.csv │ ├── sh.000054.上证海外.csv │ ├── sh.000056.上证国企.csv │ ├── sh.000057.全指成长.csv │ ├── sh.000058.全指价值.csv │ ├── sh.000059.全R成长.csv │ ├── sh.000060.全R价值.csv │ ├── sh.000061.沪企债30.csv │ ├── sh.000062.上证沪企.csv │ ├── sh.000063.上证周期.csv │ ├── sh.000064.非周期.csv │ ├── sh.000065.上证龙头.csv │ ├── sh.000066.上证商品.csv │ ├── sh.000067.上证新兴.csv │ ├── sh.000068.上证资源.csv │ ├── sh.000069.消费80.csv │ ├── sh.000070.能源等权.csv │ ├── sh.000071.材料等权.csv │ ├── sh.000072.工业等权.csv │ ├── sh.000073.可选等权.csv │ ├── sh.000074.消费等权.csv │ ├── sh.000075.医药等权.csv │ ├── sh.000076.金融等权.csv │ ├── sh.000077.信息等权.csv │ ├── sh.000078.电信等权.csv │ ├── sh.000079.公用等权.csv │ ├── sh.000090.上证流通.csv │ ├── sh.000091.沪财中小.csv │ ├── sh.000092.资源50.csv │ ├── sh.000093.180分层.csv │ ├── sh.000094.上证上游.csv │ ├── sh.000095.上证中游.csv │ ├── sh.000096.上证下游.csv │ ├── sh.000097.高端装备.csv │ ├── sh.000098.上证F200.csv │ ├── sh.000099.上证F300.csv │ ├── sh.000100.上证F500.csv │ ├── sh.000101.上证5年期信用债指数.csv │ ├── sh.000102.沪投资品.csv │ ├── sh.000103.沪消费品.csv │ ├── sh.000104.380能源.csv │ ├── sh.000105.380材料.csv │ ├── sh.000106.380工业.csv │ ├── sh.000107.380可选.csv │ ├── sh.000108.380消费.csv │ ├── sh.000109.380医药.csv │ ├── sh.000110.380金融.csv │ ├── sh.000111.380信息.csv │ ├── sh.000112.380电信.csv │ ├── sh.000113.380公用.csv │ ├── sh.000114.持续产业.csv │ ├── sh.000115.380等权.csv │ ├── sh.000116.上证信用债100指数.csv │ ├── sh.000117.380成长.csv │ ├── sh.000118.380价值.csv │ ├── sh.000119.380R成长.csv │ ├── sh.000120.380R价值.csv │ ├── sh.000121.医药主题.csv │ ├── sh.000122.农业主题.csv │ ├── sh.000123.上证180动态指数.csv │ ├── sh.000125.上证180稳定指数.csv │ ├── sh.000126.消费50.csv │ ├── sh.000128.380基本.csv │ ├── sh.000129.180波动.csv │ ├── sh.000130.380波动.csv │ ├── sh.000131.上证高新.csv │ ├── sh.000132.上证100.csv │ ├── sh.000133.上证150.csv │ ├── sh.000134.上证银行股指数.csv │ ├── sh.000135.上证180高贝塔指数.csv │ ├── sh.000136.上证180低贝塔指数.csv │ ├── sh.000137.上证380高贝塔指数.csv │ ├── sh.000138.上证380低贝塔指数.csv │ ├── sh.000139.上证可转换债券指数.csv │ ├── sh.000141.上证380动态指数.csv │ ├── sh.000142.上证380稳定指数.csv │ ├── sh.000145.上证优势资源产业指数.csv │ ├── sh.000146.上证优势制造产业指数.csv │ ├── sh.000147.上证优势消费产业指数.csv │ ├── sh.000148.上证消费服务领先指数.csv │ ├── sh.000149.上证180红利指数.csv │ ├── sh.000150.上证380红利指数.csv │ ├── sh.000151.上证国有企业红利指数.csv │ ├── sh.000152.上证中央企业红利指数.csv │ ├── sh.000153.上证民营企业红利指数.csv │ ├── sh.000155.上证市值百强指数.csv │ ├── sh.000158.上证环保产业指数.csv │ ├── sh.000159.上证沪股通指数.csv │ ├── sh.000160.上证一带一路主题指数.csv │ ├── sh.000161.上证中国制造2025主题指数.csv │ ├── sh.000162.上证互联网+主题指数.csv │ ├── sh.000300.沪深300指数.csv │ ├── sh.000802.500沪市.csv │ ├── sh.000805.A股资源.csv │ ├── sh.000806.消费服务.csv │ ├── sh.000807.食品饮料.csv │ ├── sh.000808.医药生物.csv │ ├── sh.000814.细分医药.csv │ ├── sh.000816.细分地产.csv │ ├── sh.000819.有色金属.csv │ ├── sh.000821.沪深300红利指数.csv │ ├── sh.000823.中证800有色.csv │ ├── sh.000827.中证环保产业指数.csv │ ├── sh.000828.沪深300高贝塔指数.csv │ ├── sh.000832.中证可转换债券指数.csv │ ├── sh.000841.中证800制药与生物技术指数.csv │ ├── sh.000842.中证800等权重指数.csv │ ├── sh.000846.中证财通中国可持续发展100(ECPIESG)指数.csv │ ├── sh.000847.中证腾讯济安价值100A股指数.csv │ ├── sh.000849.沪深300非银行金融指数.csv │ ├── sh.000851.百发100指数.csv │ ├── sh.000852.中证1000指数.csv │ ├── sh.000853.中证申万一带一路主题投资指数.csv │ ├── sh.000854.中证500原材料指数.csv │ ├── sh.000855.央视财经500指数.csv │ ├── sh.000856.中证500工业指数.csv │ ├── sh.000857.中证500医药卫生指数.csv │ ├── sh.000858.中证500信息技术指数.csv │ ├── sh.000901.中证南方小康产业指数.csv │ ├── sh.000903.中证100指数.csv │ ├── sh.000904.中证200指数.csv │ ├── sh.000905.中证500指数.csv │ ├── sh.000906.中证800指数.csv │ ├── sh.000908.沪深300能源(一级行业)指数.csv │ ├── sh.000909.沪深300原材料(一级行业)指数.csv │ ├── sh.000910.沪深300工业指数.csv │ ├── sh.000911.沪深300可选消费指数.csv │ ├── sh.000912.沪深300主要消费指数.csv │ ├── sh.000913.沪深300医药卫生指数.csv │ ├── sh.000914.沪深300金融地产指数.csv │ ├── sh.000917.沪深300公用事业(一级行业)指数.csv │ ├── sh.000918.沪深300成长指数.csv │ ├── sh.000919.沪深300价值指数.csv │ ├── sh.000922.中证红利指数.csv │ ├── sh.000925.中证锐联基本面50指数.csv │ ├── sh.000928.中证能源指数.csv │ ├── sh.000931.中证可选消费指数.csv │ ├── sh.000932.中证主要消费指数.csv │ ├── sh.000933.中证医药卫生指数.csv │ ├── sh.000934.中证金融地产指数.csv │ ├── sh.000935.中证信息技术指数.csv │ ├── sh.000940.中证财富大盘指数.csv │ ├── sh.000944.中证内地资源主题指数.csv │ ├── sh.000950.沪深300基建主题指数.csv │ ├── sh.000951.沪深300银行指数.csv │ ├── sh.000952.沪深300地产指数.csv │ ├── sh.000957.沪深300运输指数.csv │ ├── sh.000958.中证创业成长指数.csv │ ├── sh.000959.银河99.csv │ ├── sh.000961.中证上游资源产业指数.csv │ ├── sh.000963.中证下游消费与服务产业指数.csv │ ├── sh.000964.中证新兴产业指数.csv │ ├── sh.000966.中证锐联基本面400指数.csv │ ├── sh.000969.沪深300非周期行业指数.csv │ ├── sh.000971.等权90.csv │ ├── sh.000974.中证800金融.csv │ ├── sh.000975.中证钱江30指数.csv │ ├── sh.000977.中证内地低碳经济主题指数.csv │ ├── sh.000978.中证医药100指数.csv │ ├── sh.000979.中证大宗商品股票指数.csv │ ├── sh.000982.中证500等权重指数.csv │ ├── sh.000983.智能资产.csv │ ├── sh.000984.沪深300等权重指数.csv │ ├── sh.000986.全指能源.csv │ ├── sh.000987.全指材料.csv │ ├── sh.000989.全指可选.csv │ ├── sh.000990.全指消费.csv │ ├── sh.000991.全指医药.csv │ ├── sh.000992.全指金融.csv │ ├── sh.000993.全指信息.csv │ ├── sh.000998.中证TMT产业主题指数.csv │ ├── sh.600000.浦发银行.csv │ ├── sh.600004.白云机场.csv │ ├── sh.600006.东风汽车.csv │ ├── sh.600007.中国国贸.csv │ ├── sh.600008.首创股份.csv │ ├── sh.600009.上海机场.csv │ ├── sh.600010.包钢股份.csv │ ├── sh.600011.华能国际.csv │ ├── sh.600012.皖通高速.csv │ ├── sh.600015.华夏银行.csv │ ├── sh.600016.民生银行.csv │ ├── sh.600017.日照港.csv │ ├── sh.600018.上港集团.csv │ ├── sh.600019.宝钢股份.csv │ ├── sh.600020.中原高速.csv │ ├── sh.600021.上海电力.csv │ ├── sh.600022.山东钢铁.csv │ ├── sh.600023.浙能电力.csv │ ├── sh.600025.华能水电.csv │ ├── sh.600026.中远海能.csv │ ├── sh.600027.华电国际.csv │ ├── sh.600028.中国石化.csv │ ├── sh.600029.南方航空.csv │ ├── sh.600030.中信证券.csv │ ├── sh.600031.三一重工.csv │ ├── sh.600033.福建高速.csv │ ├── sh.600035.楚天高速.csv │ ├── sh.600036.招商银行.csv │ ├── sh.600037.歌华有线.csv │ ├── sh.600038.中直股份.csv │ ├── sh.600039.四川路桥.csv │ ├── sh.600048.保利地产.csv │ ├── sh.600050.中国联通.csv │ ├── sh.600051.宁波联合.csv │ ├── sh.600052.浙江广厦.csv │ ├── sh.600053.九鼎投资.csv │ ├── sh.600054.黄山旅游.csv │ ├── sh.600055.万东医疗.csv │ ├── sh.600056.中国医药.csv │ ├── sh.600057.厦门象屿.csv │ ├── sh.600058.五矿发展.csv │ ├── sh.600059.古越龙山.csv │ ├── sh.600060.海信视像.csv │ ├── sh.600061.国投资本.csv │ ├── sh.600062.华润双鹤.csv │ ├── sh.600063.皖维高新.csv │ ├── sh.600064.南京高科.csv │ ├── sh.600066.宇通客车.csv │ ├── sh.600067.冠城大通.csv │ ├── sh.600068.葛洲坝.csv │ ├── sh.600070.浙江富润.csv │ ├── sh.600071.凤凰光学.csv │ ├── sh.600072.中船科技.csv │ ├── sh.600073.上海梅林.csv │ ├── sh.600075.新疆天业.csv │ ├── sh.600076.康欣新材.csv │ ├── sh.600077.宋都股份.csv │ ├── sh.600078.澄星股份.csv │ ├── sh.600079.人福医药.csv │ ├── sh.600080.ST金花.csv │ ├── sh.600081.东风科技.csv │ └── sh.600082.海泰发展.csv ├── bx_behavior_date ├── 20200301-20200306 ├── 20200401-20200405 ├── 20200501-20200512 ├── 20200501-20200518 ├── 20200505-20200616 ├── 20200512-20200515 ├── 20200513-20200514 └── 20200601-20200615 ├── bx_day_rise_top10 ├── 202005 │ └── 20200518 ├── 202006 │ ├── 20200616 │ └── 20200618 ├── 202008 │ ├── 20200826 │ ├── 20200827 │ └── 20200828 ├── 202010 │ ├── 20201009 │ ├── 20201012 │ ├── 20201014 │ ├── 20201016 │ ├── 20201019 │ ├── 20201020 │ ├── 20201021 │ ├── 20201022 │ ├── 20201027 │ ├── 20201028 │ ├── 20201029 │ └── 20201030 ├── 202011 │ ├── 20201102 │ ├── 20201103 │ ├── 20201104 │ ├── 20201105 │ ├── 20201106 │ ├── 20201109 │ ├── 20201110 │ ├── 20201111 │ ├── 20201112 │ ├── 20201113 │ ├── 20201116 │ ├── 20201117 │ ├── 20201119 │ ├── 20201120 │ ├── 20201123 │ ├── 20201124 │ ├── 20201125 │ ├── 20201126 │ ├── 20201127 │ └── 20201130 ├── 202012 │ ├── 20201201 │ ├── 20201202 │ ├── 20201203 │ ├── 20201204 │ ├── 20201207 │ ├── 20201208 │ ├── 20201209 │ ├── 20201210 │ ├── 20201211 │ ├── 20201214 │ ├── 20201215 │ ├── 20201216 │ ├── 20201217 │ ├── 20201218 │ ├── 20201221 │ ├── 20201222 │ ├── 20201223 │ ├── 20201228 │ ├── 20201229 │ └── 20201231 ├── 202101 │ ├── 20210104 │ ├── 20210105 │ ├── 20210106 │ ├── 20210107 │ ├── 20210108 │ ├── 20210111 │ ├── 20210112 │ ├── 20210113 │ ├── 20210114 │ ├── 20210115 │ ├── 20210118 │ ├── 20210119 │ ├── 20210120 │ ├── 20210121 │ ├── 20210122 │ ├── 20210125 │ ├── 20210126 │ ├── 20210127 │ ├── 20210128 │ └── 20210129 ├── 202102 │ ├── 20210201 │ ├── 20210202 │ ├── 20210203 │ ├── 20210204 │ ├── 20210205 │ ├── 20210209 │ ├── 20210210 │ ├── 20210218 │ ├── 20210219 │ ├── 20210222 │ ├── 20210224 │ ├── 20210225 │ └── 20210226 └── 202103 │ ├── 20210301 │ ├── 20210302 │ ├── 20210303 │ ├── 20210304 │ ├── 20210305 │ ├── 20210308 │ ├── 20210309 │ ├── 20210310 │ ├── 20210312 │ ├── 20210315 │ ├── 20210316 │ ├── 20210317 │ └── 20210318 ├── bx_day_volume_top10 ├── 202005 │ └── 20200518 ├── 202006 │ ├── 20200616 │ ├── 20200617 │ └── 20200618 ├── 202007 │ └── 20200710 ├── 202008 │ ├── 20200826 │ └── 20200827 ├── 202010 │ ├── 20201009 │ ├── 20201012 │ ├── 20201014 │ ├── 20201016 │ ├── 20201019 │ ├── 20201020 │ ├── 20201021 │ ├── 20201022 │ ├── 20201027 │ ├── 20201028 │ ├── 20201029 │ └── 20201030 ├── 202011 │ ├── 20201102 │ ├── 20201103 │ ├── 20201104 │ ├── 20201105 │ ├── 20201106 │ ├── 20201109 │ ├── 20201110 │ ├── 20201111 │ ├── 20201112 │ ├── 20201113 │ ├── 20201116 │ ├── 20201117 │ ├── 20201119 │ ├── 20201120 │ ├── 20201123 │ ├── 20201124 │ ├── 20201125 │ ├── 20201126 │ ├── 20201127 │ └── 20201130 ├── 202012 │ ├── 20201201 │ ├── 20201202 │ ├── 20201203 │ ├── 20201204 │ ├── 20201207 │ ├── 20201208 │ ├── 20201209 │ ├── 20201210 │ ├── 20201211 │ ├── 20201214 │ ├── 20201215 │ ├── 20201216 │ ├── 20201217 │ ├── 20201218 │ ├── 20201221 │ ├── 20201222 │ ├── 20201223 │ ├── 20201228 │ ├── 20201229 │ └── 20201231 ├── 202101 │ ├── 20210104 │ ├── 20210105 │ ├── 20210106 │ ├── 20210107 │ ├── 20210108 │ ├── 20210111 │ ├── 20210112 │ ├── 20210113 │ ├── 20210114 │ ├── 20210115 │ ├── 20210118 │ ├── 20210119 │ ├── 20210120 │ ├── 20210121 │ ├── 20210122 │ ├── 20210125 │ ├── 20210126 │ ├── 20210127 │ ├── 20210128 │ └── 20210129 ├── 202102 │ ├── 20210201 │ ├── 20210202 │ ├── 20210203 │ ├── 20210204 │ ├── 20210205 │ ├── 20210209 │ ├── 20210210 │ ├── 20210218 │ ├── 20210219 │ ├── 20210222 │ ├── 20210224 │ ├── 20210225 │ └── 20210226 └── 202103 │ ├── 20210301 │ ├── 20210302 │ ├── 20210303 │ ├── 20210304 │ ├── 20210305 │ ├── 20210308 │ ├── 20210309 │ ├── 20210310 │ ├── 20210312 │ ├── 20210315 │ ├── 20210316 │ ├── 20210317 │ └── 20210318 ├── bx_history_date ├── 20200901-20200930 ├── 20201001-20201031 ├── 20201101-20201130 ├── 20201201-20201231 ├── 20210101-20210112 ├── 20210101-20210131 └── 20210201-20210228 ├── bx_history_volume ├── 20200512-20200518 ├── 20200513-20200518 ├── 20200514-20200518 ├── 20200601-20200621 ├── 20200608-20200616 ├── 20200612-20200614 ├── 20200614-20200616 ├── 20200615-20200615 ├── 20200615-20200616 ├── 20200616-20200616 ├── 20200901-20200930 ├── 20201001-20201031 ├── 20201101-20201130 ├── 20201201-20201231 ├── 20210101-20210131 └── 20210201-20210228 ├── dragon_tiger_list ├── 202006 │ ├── 20200624 │ ├── 20200530-20200607 │ ├── 20200601-20200604 │ ├── 20200601-20200605 │ ├── 20200601-20200619 │ ├── 20200608-20200612 │ └── 20200618-20200619 ├── 202008 │ ├── 20200826 │ ├── 20200827 │ └── 20200828 ├── 202010 │ ├── 20201009 │ ├── 20201013 │ ├── 20201014 │ ├── 20201016 │ ├── 20201019 │ ├── 20201020 │ ├── 20201021 │ ├── 20201022 │ ├── 20201023 │ ├── 20201026 │ ├── 20201027 │ ├── 20201028 │ ├── 20201029 │ └── 20201030 ├── 202011 │ ├── 20201102 │ ├── 20201103 │ ├── 20201104 │ ├── 20201105 │ ├── 20201106 │ ├── 20201109 │ ├── 20201110 │ ├── 20201111 │ ├── 20201112 │ ├── 20201113 │ ├── 20201116 │ ├── 20201117 │ ├── 20201119 │ ├── 20201120 │ ├── 20201123 │ ├── 20201124 │ ├── 20201125 │ ├── 20201126 │ ├── 20201127 │ └── 20201130 ├── 202012 │ ├── 20201201 │ ├── 20201202 │ ├── 20201203 │ ├── 20201204 │ ├── 20201207 │ ├── 20201208 │ ├── 20201209 │ ├── 20201210 │ ├── 20201211 │ ├── 20201214 │ ├── 20201215 │ ├── 20201216 │ ├── 20201217 │ ├── 20201218 │ ├── 20201221 │ ├── 20201222 │ ├── 20201223 │ ├── 20201224 │ ├── 20201225 │ ├── 20201228 │ └── 20201229 ├── 202101 │ ├── 20210104 │ ├── 20210105 │ ├── 20210106 │ ├── 20210107 │ ├── 20210108 │ ├── 20210111 │ ├── 20210112 │ ├── 20210113 │ ├── 20210114 │ ├── 20210115 │ ├── 20210119 │ ├── 20210120 │ ├── 20210121 │ ├── 20210122 │ ├── 20210125 │ ├── 20210126 │ ├── 20210127 │ ├── 20210128 │ └── 20210129 ├── 202102 │ ├── 20210201 │ ├── 20210202 │ ├── 20210203 │ ├── 20210204 │ ├── 20210205 │ ├── 20210209 │ ├── 20210210 │ ├── 20210218 │ ├── 20210219 │ ├── 20210222 │ ├── 20210224 │ ├── 20210225 │ └── 20210226 └── 202103 │ ├── 20210301 │ ├── 20210302 │ ├── 20210303 │ ├── 20210304 │ ├── 20210305 │ ├── 20210308 │ ├── 20210309 │ ├── 20210310 │ ├── 20210311 │ ├── 20210312 │ ├── 20210316 │ ├── 20210317 │ └── 20210318 ├── history_dragon_tiger_list ├── 20200701-20200702 ├── 20200701-20200712 ├── 20200701-20200713 ├── 20201001-20201031 ├── 20210101-20210131 └── 20210201-20210228 ├── sector_fund_flow ├── 202005 │ └── 20200526 ├── 202006 │ ├── 20200616 │ ├── 20200617 │ ├── 20200619 │ └── 20200624 ├── 202007 │ └── 20200721 ├── 202008 │ ├── 20200826 │ ├── 20200827 │ └── 20200828 ├── 202010 │ ├── 20201009 │ ├── 20201013 │ ├── 20201014 │ ├── 20201016 │ ├── 20201019 │ ├── 20201020 │ ├── 20201021 │ ├── 20201022 │ ├── 20201023 │ ├── 20201026 │ ├── 20201027 │ ├── 20201028 │ ├── 20201029 │ └── 20201030 ├── 202011 │ ├── 20201102 │ ├── 20201103 │ ├── 20201104 │ ├── 20201105 │ ├── 20201106 │ ├── 20201109 │ ├── 20201110 │ ├── 20201111 │ ├── 20201112 │ ├── 20201113 │ ├── 20201116 │ ├── 20201117 │ ├── 20201119 │ ├── 20201120 │ ├── 20201123 │ ├── 20201124 │ ├── 20201125 │ ├── 20201126 │ ├── 20201127 │ └── 20201130 ├── 202012 │ ├── 20201201 │ ├── 20201202 │ ├── 20201203 │ ├── 20201204 │ ├── 20201207 │ ├── 20201208 │ ├── 20201209 │ ├── 20201210 │ ├── 20201211 │ ├── 20201214 │ ├── 20201215 │ ├── 20201216 │ ├── 20201217 │ ├── 20201218 │ ├── 20201221 │ ├── 20201223 │ ├── 20201224 │ ├── 20201225 │ ├── 20201228 │ ├── 20201229 │ └── 20201231 ├── 202101 │ ├── 20210104 │ ├── 20210105 │ ├── 20210106 │ ├── 20210107 │ ├── 20210111 │ ├── 20210112 │ ├── 20210113 │ ├── 20210114 │ ├── 20210115 │ ├── 20210119 │ ├── 20210120 │ ├── 20210121 │ ├── 20210122 │ ├── 20210125 │ ├── 20210126 │ ├── 20210127 │ ├── 20210128 │ └── 20210129 ├── 202102 │ ├── 20210201 │ ├── 20210202 │ ├── 20210203 │ ├── 20210204 │ ├── 20210205 │ ├── 20210209 │ ├── 20210210 │ ├── 20210218 │ ├── 20210219 │ ├── 20210222 │ ├── 20210224 │ ├── 20210225 │ └── 20210226 └── 202103 │ ├── 20210301 │ ├── 20210302 │ ├── 20210303 │ ├── 20210304 │ ├── 20210305 │ ├── 20210308 │ ├── 20210309 │ ├── 20210310 │ ├── 20210312 │ ├── 20210315 │ ├── 20210316 │ ├── 20210317 │ └── 20210318 ├── single_stock └── sz.000002-20200101-2020131.csv ├── single_stock_fund_flow ├── 202007 │ ├── 20200721 │ └── 20200721r ├── 202008 │ ├── 20200825 │ ├── 20200826 │ ├── 20200827 │ └── 20200828 ├── 202010 │ ├── 20201009 │ ├── 20201013 │ ├── 20201014 │ ├── 20201016 │ ├── 20201019 │ ├── 20201020 │ ├── 20201021 │ ├── 20201022 │ ├── 20201026 │ ├── 20201027 │ ├── 20201028 │ ├── 20201029 │ └── 20201030 ├── 202011 │ ├── 20201102 │ ├── 20201103 │ ├── 20201104 │ ├── 20201105 │ ├── 20201106 │ ├── 20201109 │ ├── 20201110 │ ├── 20201111 │ ├── 20201112 │ ├── 20201113 │ ├── 20201116 │ ├── 20201117 │ ├── 20201119 │ ├── 20201120 │ ├── 20201123 │ ├── 20201124 │ ├── 20201125 │ ├── 20201126 │ ├── 20201127 │ └── 20201130 ├── 202012 │ ├── 20201201 │ ├── 20201202 │ ├── 20201203 │ ├── 20201204 │ ├── 20201207 │ ├── 20201208 │ ├── 20201209 │ ├── 20201210 │ ├── 20201211 │ ├── 20201214 │ ├── 20201215 │ ├── 20201216 │ ├── 20201217 │ ├── 20201218 │ ├── 20201221 │ ├── 20201223 │ ├── 20201224 │ ├── 20201225 │ ├── 20201228 │ ├── 20201229 │ └── 20201231 ├── 202101 │ ├── 20210104 │ ├── 20210105 │ ├── 20210106 │ ├── 20210107 │ ├── 20210111 │ ├── 20210112 │ ├── 20210113 │ ├── 20210114 │ ├── 20210115 │ ├── 20210119 │ ├── 20210121 │ ├── 20210122 │ ├── 20210125 │ ├── 20210126 │ ├── 20210127 │ ├── 20210128 │ └── 20210129 ├── 202102 │ ├── 20210201 │ ├── 20210202 │ ├── 20210204 │ ├── 20210205 │ ├── 20210209 │ ├── 20210210 │ ├── 20210218 │ ├── 20210219 │ ├── 20210222 │ ├── 20210224 │ ├── 20210225 │ └── 20210226 └── 202103 │ ├── 20210301 │ ├── 20210302 │ ├── 20210303 │ ├── 20210304 │ ├── 20210305 │ ├── 20210308 │ ├── 20210309 │ ├── 20210310 │ ├── 20210312 │ ├── 20210315 │ ├── 20210316 │ ├── 20210317 │ └── 20210318 ├── stock_basic_info └── 20200501-20200531 └── trade_dates ├── 20200501-20200515 ├── 20200501-20200519 ├── 20200501-20200531 └── trade_datas.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/README.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/config.ini -------------------------------------------------------------------------------- /doc/real_time_stock_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/doc/real_time_stock_description.md -------------------------------------------------------------------------------- /doc/stock_table_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/doc/stock_table_description.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/pom.xml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/requirements.txt -------------------------------------------------------------------------------- /sql/bx_top10_smmary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/sql/bx_top10_smmary.sql -------------------------------------------------------------------------------- /sql/create-table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/sql/create-table.sql -------------------------------------------------------------------------------- /sql/dragon_tiger_list_aggregate_analyze.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/sql/dragon_tiger_list_aggregate_analyze.sql -------------------------------------------------------------------------------- /sql/dragon_tiger_list_condition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/sql/dragon_tiger_list_condition.sql -------------------------------------------------------------------------------- /sql/dragon_tiger_list_condition_analyze.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/sql/dragon_tiger_list_condition_analyze.sql -------------------------------------------------------------------------------- /sql/load_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/sql/load_data.sql -------------------------------------------------------------------------------- /sql/北向每月流入成交量榜单汇总.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/sql/北向每月流入成交量榜单汇总.sql -------------------------------------------------------------------------------- /sql/北向每月流入成交量股票明细.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/sql/北向每月流入成交量股票明细.sql -------------------------------------------------------------------------------- /sql/北向每月流入涨幅榜单汇总.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/sql/北向每月流入涨幅榜单汇总.sql -------------------------------------------------------------------------------- /src/main/python/com/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/python/com/bluehonour/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/python/com/bluehonour/baostock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/python/com/bluehonour/realtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/python/com/bluehonour/spider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/python/com/bluehonour/spider/bx_day_rise_top10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/src/main/python/com/bluehonour/spider/bx_day_rise_top10.py -------------------------------------------------------------------------------- /src/main/python/com/bluehonour/spider/dragon_tiger_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/src/main/python/com/bluehonour/spider/dragon_tiger_list.py -------------------------------------------------------------------------------- /src/main/python/com/bluehonour/spider/get_bx_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/src/main/python/com/bluehonour/spider/get_bx_date.py -------------------------------------------------------------------------------- /src/main/python/com/bluehonour/spider/sector_fund_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/src/main/python/com/bluehonour/spider/sector_fund_flow.py -------------------------------------------------------------------------------- /src/main/python/com/bluehonour/utils/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/src/main/python/com/bluehonour/utils/Utils.py -------------------------------------------------------------------------------- /src/main/python/com/bluehonour/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/src/main/python/com/bluehonour/utils/__init__.py -------------------------------------------------------------------------------- /src/main/python/com/bluehonour/utils/date_to_weekday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/src/main/python/com/bluehonour/utils/date_to_weekday.py -------------------------------------------------------------------------------- /src/main/python/com/bluehonour/utils/readConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/src/main/python/com/bluehonour/utils/readConfig.py -------------------------------------------------------------------------------- /src/main/resources/core-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/src/main/resources/core-site.xml -------------------------------------------------------------------------------- /src/main/resources/hdfs-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/src/main/resources/hdfs-site.xml -------------------------------------------------------------------------------- /src/main/resources/hive-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/src/main/resources/hive-site.xml -------------------------------------------------------------------------------- /src/main/scala/com/bluehonour/spark/Parameter.scala: -------------------------------------------------------------------------------- 1 | package com.bluehonour.spark 2 | 3 | object Parameter { 4 | val YEAR_MONTH: String = "202008" 5 | } 6 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000001.上证综合指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000002.上证A股指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000003.上证B股指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000004.上证工业类指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000005.上证商业类指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000006.上证房地产指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000007.上证公用事业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000008.上证综合业类指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000009.上证380.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000010.上证成份指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000011.上证基金指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000012.上证国债指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000013.上证企业债指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000015.上证红利指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000016.上证50指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000017.新上证综指.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000018.上证180金融股指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000019.上证公司治理指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000020.上证中型企业综合指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000021.上证180公司治理指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000022.沪公司债.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000025.上证180基建指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000026.上证180资源指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000027.上证180交通运输指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000028.上证180成长指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000029.上证180价值指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000030.上证180相对成长指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000031.上证180相对价值指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000032.上证能源行业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000033.上证原材料行业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000034.上证工业行业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000035.上证可选消费行业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000036.上证主要消费行业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000037.上证医药卫生行业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000038.上证金融地产行业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000039.上证信息技术行业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000040.上证电信业务行业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000041.上证公用事业行业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000042.上证中央企业50指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000043.上证超级大盘指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000044.上证中盘.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000045.上证小盘.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000046.上证中小.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000047.上证全指.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000048.责任指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000049.上证民企.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000050.50等权.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000051.180等权.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000052.50基本.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000053.180基本.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000054.上证海外.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000056.上证国企.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000057.全指成长.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000058.全指价值.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000059.全R成长.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000060.全R价值.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000061.沪企债30.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000062.上证沪企.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000063.上证周期.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000064.非周期.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000065.上证龙头.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000066.上证商品.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000067.上证新兴.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000068.上证资源.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000069.消费80.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000070.能源等权.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000071.材料等权.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000072.工业等权.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000073.可选等权.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000074.消费等权.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000075.医药等权.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000076.金融等权.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000077.信息等权.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000078.电信等权.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000079.公用等权.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000090.上证流通.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000091.沪财中小.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000092.资源50.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000093.180分层.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000094.上证上游.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000095.上证中游.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000096.上证下游.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000097.高端装备.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000098.上证F200.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000099.上证F300.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000100.上证F500.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000101.上证5年期信用债指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000102.沪投资品.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000103.沪消费品.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000104.380能源.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000105.380材料.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000106.380工业.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000107.380可选.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000108.380消费.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000109.380医药.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000110.380金融.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000111.380信息.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000112.380电信.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000113.380公用.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000114.持续产业.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000115.380等权.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000116.上证信用债100指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000117.380成长.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000118.380价值.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000119.380R成长.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000120.380R价值.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000121.医药主题.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000122.农业主题.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000123.上证180动态指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000125.上证180稳定指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000126.消费50.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000128.380基本.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000129.180波动.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000130.380波动.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000131.上证高新.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000132.上证100.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000133.上证150.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000134.上证银行股指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000135.上证180高贝塔指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000136.上证180低贝塔指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000137.上证380高贝塔指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000138.上证380低贝塔指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000139.上证可转换债券指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000141.上证380动态指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000142.上证380稳定指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000145.上证优势资源产业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000146.上证优势制造产业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000147.上证优势消费产业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000148.上证消费服务领先指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000149.上证180红利指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000150.上证380红利指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000151.上证国有企业红利指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000152.上证中央企业红利指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000153.上证民营企业红利指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000155.上证市值百强指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000158.上证环保产业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000159.上证沪股通指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000160.上证一带一路主题指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000161.上证中国制造2025主题指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000162.上证互联网+主题指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000300.沪深300指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000802.500沪市.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000805.A股资源.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000806.消费服务.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000807.食品饮料.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000808.医药生物.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000814.细分医药.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000816.细分地产.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000819.有色金属.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000821.沪深300红利指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000823.中证800有色.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000827.中证环保产业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000828.沪深300高贝塔指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000832.中证可转换债券指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000833.中证1-7年中高收益企债指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000841.中证800制药与生物技术指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000842.中证800等权重指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000846.中证财通中国可持续发展100(ECPIESG)指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000847.中证腾讯济安价值100A股指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000849.沪深300非银行金融指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000851.百发100指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000852.中证1000指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000853.中证申万一带一路主题投资指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000854.中证500原材料指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000855.央视财经500指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/all_stock_data_details/2020-05/sh.000856.中证500工业指数.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /stock-data/bx_behavior_date/20200301-20200306: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_behavior_date/20200301-20200306 -------------------------------------------------------------------------------- /stock-data/bx_behavior_date/20200401-20200405: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_behavior_date/20200401-20200405 -------------------------------------------------------------------------------- /stock-data/bx_behavior_date/20200501-20200512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_behavior_date/20200501-20200512 -------------------------------------------------------------------------------- /stock-data/bx_behavior_date/20200501-20200518: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_behavior_date/20200501-20200518 -------------------------------------------------------------------------------- /stock-data/bx_behavior_date/20200505-20200616: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_behavior_date/20200505-20200616 -------------------------------------------------------------------------------- /stock-data/bx_behavior_date/20200512-20200515: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_behavior_date/20200512-20200515 -------------------------------------------------------------------------------- /stock-data/bx_behavior_date/20200513-20200514: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_behavior_date/20200513-20200514 -------------------------------------------------------------------------------- /stock-data/bx_behavior_date/20200601-20200615: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_behavior_date/20200601-20200615 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202005/20200518: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202005/20200518 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202006/20200616: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202006/20200616 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202006/20200618: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202006/20200618 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202008/20200826: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202008/20200826 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202008/20200827: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202008/20200827 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202008/20200828: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202008/20200828 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202010/20201009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202010/20201009 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202010/20201012: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202010/20201012 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202010/20201014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202010/20201014 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202010/20201016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202010/20201016 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202010/20201019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202010/20201019 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202010/20201020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202010/20201020 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202010/20201021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202010/20201021 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202010/20201022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202010/20201022 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202010/20201027: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202010/20201027 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202010/20201028: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202010/20201028 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202010/20201029: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202010/20201029 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202010/20201030: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202010/20201030 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201102 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201103: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201103 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201104 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201105 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201106 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201109 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201110: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201110 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201111 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201112 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201113 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201116: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201116 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201117 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201119 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201120 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201123: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201123 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201124: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201124 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201125: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201125 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201126: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201126 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201127 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202011/20201130: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202011/20201130 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201201 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201202 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201203 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201204 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201207: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201207 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201208: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201208 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201209 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201210: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201210 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201211: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201211 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201214: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201214 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201215: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201215 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201216: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201216 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201217: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201217 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201218: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201218 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201221: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201221 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201222: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201222 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201223: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201223 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201228: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201228 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201229: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201229 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202012/20201231: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202012/20201231 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210104 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210105 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210106 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210107: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210107 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210108: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210108 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210111 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210112 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210113 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210114: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210114 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210115 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210118: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210118 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210119 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210120 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210121 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210122: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210122 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210125: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210125 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210126: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210126 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210127 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210128 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202101/20210129: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202101/20210129 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202102/20210201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202102/20210201 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202102/20210202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202102/20210202 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202102/20210203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202102/20210203 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202102/20210204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202102/20210204 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202102/20210205: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202102/20210205 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202102/20210209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202102/20210209 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202102/20210210: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202102/20210210 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202102/20210218: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202102/20210218 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202102/20210219: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202102/20210219 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202102/20210222: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202102/20210222 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202102/20210224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202102/20210224 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202102/20210225: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202102/20210225 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202102/20210226: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202102/20210226 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202103/20210301: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202103/20210301 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202103/20210302: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202103/20210302 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202103/20210303: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202103/20210303 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202103/20210304: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202103/20210304 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202103/20210305: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202103/20210305 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202103/20210308: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202103/20210308 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202103/20210309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202103/20210309 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202103/20210310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202103/20210310 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202103/20210312: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202103/20210312 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202103/20210315: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202103/20210315 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202103/20210316: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202103/20210316 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202103/20210317: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202103/20210317 -------------------------------------------------------------------------------- /stock-data/bx_day_rise_top10/202103/20210318: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_rise_top10/202103/20210318 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202005/20200518: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202005/20200518 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202006/20200616: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202006/20200616 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202006/20200617: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202006/20200617 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202006/20200618: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202006/20200618 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202007/20200710: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202007/20200710 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202008/20200826: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202008/20200826 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202008/20200827: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202008/20200827 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202010/20201009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202010/20201009 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202010/20201012: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202010/20201012 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202010/20201014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202010/20201014 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202010/20201016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202010/20201016 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202010/20201019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202010/20201019 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202010/20201020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202010/20201020 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202010/20201021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202010/20201021 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202010/20201022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202010/20201022 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202010/20201027: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202010/20201027 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202010/20201028: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202010/20201028 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202010/20201029: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202010/20201029 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202010/20201030: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202010/20201030 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201102 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201103: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201103 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201104 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201105 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201106 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201109 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201110: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201110 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201111 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201112 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201113 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201116: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201116 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201117 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201119 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201120 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201123: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201123 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201124: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201124 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201125: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201125 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201126: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201126 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201127 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202011/20201130: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202011/20201130 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201201 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201202 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201203 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201204 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201207: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201207 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201208: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201208 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201209 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201210: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201210 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201211: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201211 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201214: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201214 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201215: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201215 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201216: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201216 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201217: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201217 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201218: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201218 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201221: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201221 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201222: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201222 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201223: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201223 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201228: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201228 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201229: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201229 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202012/20201231: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202012/20201231 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210104 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210105 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210106 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210107: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210107 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210108: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210108 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210111 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210112 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210113 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210114: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210114 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210115 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210118: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210118 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210119 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210120 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210121 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210122: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210122 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210125: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210125 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210126: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210126 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210127 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210128 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202101/20210129: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202101/20210129 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202102/20210201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202102/20210201 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202102/20210202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202102/20210202 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202102/20210203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202102/20210203 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202102/20210204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202102/20210204 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202102/20210205: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202102/20210205 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202102/20210209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202102/20210209 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202102/20210210: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202102/20210210 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202102/20210218: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202102/20210218 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202102/20210219: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202102/20210219 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202102/20210222: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202102/20210222 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202102/20210224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202102/20210224 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202102/20210225: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202102/20210225 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202102/20210226: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202102/20210226 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202103/20210301: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202103/20210301 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202103/20210302: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202103/20210302 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202103/20210303: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202103/20210303 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202103/20210304: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202103/20210304 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202103/20210305: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202103/20210305 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202103/20210308: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202103/20210308 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202103/20210309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202103/20210309 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202103/20210310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202103/20210310 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202103/20210312: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202103/20210312 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202103/20210315: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202103/20210315 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202103/20210316: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202103/20210316 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202103/20210317: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202103/20210317 -------------------------------------------------------------------------------- /stock-data/bx_day_volume_top10/202103/20210318: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_day_volume_top10/202103/20210318 -------------------------------------------------------------------------------- /stock-data/bx_history_date/20200901-20200930: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_date/20200901-20200930 -------------------------------------------------------------------------------- /stock-data/bx_history_date/20201001-20201031: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_date/20201001-20201031 -------------------------------------------------------------------------------- /stock-data/bx_history_date/20201101-20201130: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_date/20201101-20201130 -------------------------------------------------------------------------------- /stock-data/bx_history_date/20201201-20201231: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_date/20201201-20201231 -------------------------------------------------------------------------------- /stock-data/bx_history_date/20210101-20210112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_date/20210101-20210112 -------------------------------------------------------------------------------- /stock-data/bx_history_date/20210101-20210131: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_date/20210101-20210131 -------------------------------------------------------------------------------- /stock-data/bx_history_date/20210201-20210228: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_date/20210201-20210228 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20200512-20200518: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20200512-20200518 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20200513-20200518: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20200513-20200518 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20200514-20200518: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20200514-20200518 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20200601-20200621: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20200601-20200621 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20200608-20200616: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20200608-20200616 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20200612-20200614: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20200612-20200614 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20200614-20200616: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20200614-20200616 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20200615-20200615: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20200615-20200615 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20200615-20200616: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20200615-20200616 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20200616-20200616: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20200616-20200616 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20200901-20200930: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20200901-20200930 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20201001-20201031: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20201001-20201031 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20201101-20201130: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20201101-20201130 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20201201-20201231: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20201201-20201231 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20210101-20210131: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20210101-20210131 -------------------------------------------------------------------------------- /stock-data/bx_history_volume/20210201-20210228: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/bx_history_volume/20210201-20210228 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202006/20200530-20200607: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202006/20200530-20200607 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202006/20200601-20200604: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202006/20200601-20200604 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202006/20200601-20200605: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202006/20200601-20200605 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202006/20200601-20200619: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202006/20200601-20200619 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202006/20200608-20200612: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202006/20200608-20200612 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202006/20200618-20200619: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202006/20200618-20200619 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202006/20200624: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202006/20200624 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202008/20200826: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202008/20200826 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202008/20200827: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202008/20200827 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202008/20200828: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202008/20200828 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202010/20201009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202010/20201009 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202010/20201013: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202010/20201013 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202010/20201014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202010/20201014 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202010/20201016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202010/20201016 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202010/20201019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202010/20201019 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202010/20201020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202010/20201020 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202010/20201021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202010/20201021 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202010/20201022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202010/20201022 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202010/20201023: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202010/20201023 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202010/20201026: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202010/20201026 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202010/20201027: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202010/20201027 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202010/20201028: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202010/20201028 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202010/20201029: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202010/20201029 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202010/20201030: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202010/20201030 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201102 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201103: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201103 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201104 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201105 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201106 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201109 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201110: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201110 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201111 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201112 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201113 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201116: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201116 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201117 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201119 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201120 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201123: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201123 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201124: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201124 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201125: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201125 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201126: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201126 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201127 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202011/20201130: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202011/20201130 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201201 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201202 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201203 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201204 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201207: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201207 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201208: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201208 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201209 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201210: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201210 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201211: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201211 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201214: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201214 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201215: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201215 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201216: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201216 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201217: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201217 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201218: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201218 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201221: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201221 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201222: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201222 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201223: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201223 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201224 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201225: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201225 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201228: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201228 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202012/20201229: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202012/20201229 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210104 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210105 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210106 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210107: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210107 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210108: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210108 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210111 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210112 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210113 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210114: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210114 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210115 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210119 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210120 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210121 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210122: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210122 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210125: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210125 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210126: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210126 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210127 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210128 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202101/20210129: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202101/20210129 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202102/20210201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202102/20210201 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202102/20210202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202102/20210202 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202102/20210203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202102/20210203 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202102/20210204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202102/20210204 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202102/20210205: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202102/20210205 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202102/20210209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202102/20210209 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202102/20210210: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202102/20210210 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202102/20210218: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202102/20210218 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202102/20210219: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202102/20210219 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202102/20210222: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202102/20210222 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202102/20210224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202102/20210224 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202102/20210225: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202102/20210225 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202102/20210226: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202102/20210226 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202103/20210301: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202103/20210301 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202103/20210302: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202103/20210302 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202103/20210303: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202103/20210303 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202103/20210304: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202103/20210304 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202103/20210305: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202103/20210305 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202103/20210308: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202103/20210308 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202103/20210309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202103/20210309 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202103/20210310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202103/20210310 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202103/20210311: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202103/20210311 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202103/20210312: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202103/20210312 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202103/20210316: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202103/20210316 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202103/20210317: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202103/20210317 -------------------------------------------------------------------------------- /stock-data/dragon_tiger_list/202103/20210318: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/dragon_tiger_list/202103/20210318 -------------------------------------------------------------------------------- /stock-data/history_dragon_tiger_list/20200701-20200702: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/history_dragon_tiger_list/20200701-20200702 -------------------------------------------------------------------------------- /stock-data/history_dragon_tiger_list/20200701-20200712: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/history_dragon_tiger_list/20200701-20200712 -------------------------------------------------------------------------------- /stock-data/history_dragon_tiger_list/20200701-20200713: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/history_dragon_tiger_list/20200701-20200713 -------------------------------------------------------------------------------- /stock-data/history_dragon_tiger_list/20201001-20201031: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/history_dragon_tiger_list/20201001-20201031 -------------------------------------------------------------------------------- /stock-data/history_dragon_tiger_list/20210101-20210131: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/history_dragon_tiger_list/20210101-20210131 -------------------------------------------------------------------------------- /stock-data/history_dragon_tiger_list/20210201-20210228: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/history_dragon_tiger_list/20210201-20210228 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202005/20200526: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202005/20200526 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202006/20200616: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202006/20200616 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202006/20200617: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202006/20200617 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202006/20200619: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202006/20200619 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202006/20200624: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202006/20200624 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202007/20200721: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202007/20200721 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202008/20200826: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202008/20200826 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202008/20200827: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202008/20200827 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202008/20200828: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202008/20200828 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202010/20201009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202010/20201009 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202010/20201013: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202010/20201013 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202010/20201014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202010/20201014 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202010/20201016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202010/20201016 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202010/20201019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202010/20201019 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202010/20201020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202010/20201020 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202010/20201021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202010/20201021 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202010/20201022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202010/20201022 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202010/20201023: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202010/20201023 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202010/20201026: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202010/20201026 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202010/20201027: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202010/20201027 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202010/20201028: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202010/20201028 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202010/20201029: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202010/20201029 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202010/20201030: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202010/20201030 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201102 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201103: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201103 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201104 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201105 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201106 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201109 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201110: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201110 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201111 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201112 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201113 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201116: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201116 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201117 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201119 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201120 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201123: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201123 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201124: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201124 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201125: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201125 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201126: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201126 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201127 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202011/20201130: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202011/20201130 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201201 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201202 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201203 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201204 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201207: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201207 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201208: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201208 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201209 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201210: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201210 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201211: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201211 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201214: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201214 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201215: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201215 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201216: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201216 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201217: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201217 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201218: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201218 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201221: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201221 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201223: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201223 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201224 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201225: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201225 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201228: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201228 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201229: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201229 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202012/20201231: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202012/20201231 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210104 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210105 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210106 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210107: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210107 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210111 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210112 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210113 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210114: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210114 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210115 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210119 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210120 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210121 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210122: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210122 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210125: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210125 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210126: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210126 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210127 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210128 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202101/20210129: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202101/20210129 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202102/20210201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202102/20210201 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202102/20210202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202102/20210202 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202102/20210203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202102/20210203 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202102/20210204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202102/20210204 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202102/20210205: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202102/20210205 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202102/20210209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202102/20210209 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202102/20210210: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202102/20210210 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202102/20210218: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202102/20210218 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202102/20210219: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202102/20210219 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202102/20210222: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202102/20210222 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202102/20210224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202102/20210224 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202102/20210225: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202102/20210225 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202102/20210226: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202102/20210226 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202103/20210301: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202103/20210301 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202103/20210302: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202103/20210302 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202103/20210303: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202103/20210303 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202103/20210304: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202103/20210304 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202103/20210305: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202103/20210305 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202103/20210308: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202103/20210308 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202103/20210309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202103/20210309 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202103/20210310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202103/20210310 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202103/20210312: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202103/20210312 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202103/20210315: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202103/20210315 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202103/20210316: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202103/20210316 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202103/20210317: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202103/20210317 -------------------------------------------------------------------------------- /stock-data/sector_fund_flow/202103/20210318: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/sector_fund_flow/202103/20210318 -------------------------------------------------------------------------------- /stock-data/single_stock/sz.000002-20200101-2020131.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock/sz.000002-20200101-2020131.csv -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202007/20200721: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202007/20200721 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202007/20200721r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202007/20200721r -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202008/20200825: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202008/20200825 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202008/20200826: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202008/20200826 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202008/20200827: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202008/20200827 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202008/20200828: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202008/20200828 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202010/20201009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202010/20201009 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202010/20201013: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202010/20201013 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202010/20201014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202010/20201014 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202010/20201016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202010/20201016 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202010/20201019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202010/20201019 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202010/20201020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202010/20201020 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202010/20201021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202010/20201021 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202010/20201022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202010/20201022 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202010/20201026: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202010/20201026 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202010/20201027: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202010/20201027 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202010/20201028: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202010/20201028 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202010/20201029: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202010/20201029 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202010/20201030: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202010/20201030 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201102 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201103: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201103 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201104 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201105 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201106 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201109 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201110: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201110 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201111 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201112 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201113 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201116: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201116 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201117 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201119 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201120 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201123: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201123 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201124: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201124 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201125: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201125 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201126: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201126 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201127 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202011/20201130: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202011/20201130 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201201 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201202 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201203 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201204 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201207: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201207 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201208: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201208 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201209 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201210: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201210 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201211: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201211 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201214: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201214 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201215: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201215 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201216: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201216 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201217: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201217 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201218: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201218 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201221: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201221 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201223: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201223 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201224 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201225: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201225 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201228: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201228 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201229: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201229 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202012/20201231: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202012/20201231 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210104 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210105 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210106 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210107: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210107 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210111 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210112 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210113 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210114: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210114 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210115 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210119 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210121 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210122: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210122 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210125: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210125 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210126: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210126 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210127 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210128 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202101/20210129: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202101/20210129 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202102/20210201: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202102/20210201 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202102/20210202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202102/20210202 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202102/20210204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202102/20210204 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202102/20210205: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202102/20210205 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202102/20210209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202102/20210209 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202102/20210210: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202102/20210210 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202102/20210218: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202102/20210218 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202102/20210219: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202102/20210219 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202102/20210222: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202102/20210222 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202102/20210224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202102/20210224 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202102/20210225: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202102/20210225 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202102/20210226: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202102/20210226 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202103/20210301: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202103/20210301 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202103/20210302: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202103/20210302 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202103/20210303: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202103/20210303 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202103/20210304: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202103/20210304 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202103/20210305: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202103/20210305 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202103/20210308: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202103/20210308 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202103/20210309: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202103/20210309 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202103/20210310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202103/20210310 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202103/20210312: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202103/20210312 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202103/20210315: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202103/20210315 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202103/20210316: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202103/20210316 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202103/20210317: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202103/20210317 -------------------------------------------------------------------------------- /stock-data/single_stock_fund_flow/202103/20210318: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/single_stock_fund_flow/202103/20210318 -------------------------------------------------------------------------------- /stock-data/stock_basic_info/20200501-20200531: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/stock_basic_info/20200501-20200531 -------------------------------------------------------------------------------- /stock-data/trade_dates/20200501-20200515: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/trade_dates/20200501-20200515 -------------------------------------------------------------------------------- /stock-data/trade_dates/20200501-20200519: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/trade_dates/20200501-20200519 -------------------------------------------------------------------------------- /stock-data/trade_dates/20200501-20200531: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/trade_dates/20200501-20200531 -------------------------------------------------------------------------------- /stock-data/trade_dates/trade_datas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdvancingStone/stock-data-analysis-and-prediction/HEAD/stock-data/trade_dates/trade_datas.csv --------------------------------------------------------------------------------