├── .gitignore ├── Bi ├── Bi.py ├── BiConfig.py └── BiList.py ├── BuySellPoint ├── BSPointConfig.py ├── BSPointList.py ├── BS_Point.py └── __init__.py ├── Chan.py ├── ChanConfig.py ├── Combiner ├── Combine_Item.py ├── KLine_Combiner.py └── __init__.py ├── Common ├── CEnum.py ├── CTime.py ├── ChanException.py ├── __init__.py ├── cache.py └── func_util.py ├── DataAPI ├── BaoStockAPI.py ├── CommonStockAPI.py ├── __init__.py └── ccxt.py ├── Debug ├── stragety_demo.py └── stragety_demo2.py ├── Image ├── answer_pic.png ├── chan.py_image_1.svg ├── chan.py_image_10.png ├── chan.py_image_11.png ├── chan.py_image_12.png ├── chan.py_image_13.png ├── chan.py_image_14.png ├── chan.py_image_15.png ├── chan.py_image_16.png ├── chan.py_image_17.png ├── chan.py_image_18.png ├── chan.py_image_2.png ├── chan.py_image_3.png ├── chan.py_image_4.png ├── chan.py_image_5.png ├── chan.py_image_6.gif ├── chan.py_image_7.png ├── chan.py_image_8.png ├── chan.py_image_9.png ├── chan_bilibili.png ├── chan_coding_time.png ├── chan_commit_cnt.png ├── chan_gotify_info.png ├── chan_issue_cnt.png ├── chan_qujiantao.png ├── chan_trendline.png ├── coffee.jpeg ├── demark.png ├── feature_cnt.png ├── futu_sim_snapshot.png ├── hk_sim_result.jpeg ├── marker.png ├── notion_table.png ├── open_send_msg.png ├── plot_cbsp.png ├── question_pic.png ├── repository.png ├── summary_b_us_test.png └── us_sim_result.jpeg ├── KLine ├── KLine.py ├── KLine_List.py ├── KLine_Unit.py ├── TradeInfo.py └── __init__.py ├── LICENSE ├── Math ├── BOLL.py ├── Demark.py ├── MACD.py ├── TrendLine.py ├── TrendModel.py └── __init__.py ├── Plot ├── AnimatePlotDriver.py ├── PlotDriver.py ├── PlotMeta.py └── __init__.py ├── README.md ├── Script └── requirements.txt ├── Seg ├── Eigen.py ├── EigenFX.py ├── Seg.py ├── SegConfig.py ├── SegListChan.py ├── SegListComm.py ├── SegListDYH.py ├── SegListDef.py └── __init__.py ├── ZS ├── ZS.py ├── ZSConfig.py ├── ZSList.py └── __init__.py ├── __init__.py ├── main.py └── quick_guide.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/.gitignore -------------------------------------------------------------------------------- /Bi/Bi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Bi/Bi.py -------------------------------------------------------------------------------- /Bi/BiConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Bi/BiConfig.py -------------------------------------------------------------------------------- /Bi/BiList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Bi/BiList.py -------------------------------------------------------------------------------- /BuySellPoint/BSPointConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/BuySellPoint/BSPointConfig.py -------------------------------------------------------------------------------- /BuySellPoint/BSPointList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/BuySellPoint/BSPointList.py -------------------------------------------------------------------------------- /BuySellPoint/BS_Point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/BuySellPoint/BS_Point.py -------------------------------------------------------------------------------- /BuySellPoint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Chan.py -------------------------------------------------------------------------------- /ChanConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/ChanConfig.py -------------------------------------------------------------------------------- /Combiner/Combine_Item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Combiner/Combine_Item.py -------------------------------------------------------------------------------- /Combiner/KLine_Combiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Combiner/KLine_Combiner.py -------------------------------------------------------------------------------- /Combiner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Common/CEnum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Common/CEnum.py -------------------------------------------------------------------------------- /Common/CTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Common/CTime.py -------------------------------------------------------------------------------- /Common/ChanException.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Common/ChanException.py -------------------------------------------------------------------------------- /Common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Common/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Common/cache.py -------------------------------------------------------------------------------- /Common/func_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Common/func_util.py -------------------------------------------------------------------------------- /DataAPI/BaoStockAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/DataAPI/BaoStockAPI.py -------------------------------------------------------------------------------- /DataAPI/CommonStockAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/DataAPI/CommonStockAPI.py -------------------------------------------------------------------------------- /DataAPI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DataAPI/ccxt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/DataAPI/ccxt.py -------------------------------------------------------------------------------- /Debug/stragety_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Debug/stragety_demo.py -------------------------------------------------------------------------------- /Debug/stragety_demo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Debug/stragety_demo2.py -------------------------------------------------------------------------------- /Image/answer_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/answer_pic.png -------------------------------------------------------------------------------- /Image/chan.py_image_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_1.svg -------------------------------------------------------------------------------- /Image/chan.py_image_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_10.png -------------------------------------------------------------------------------- /Image/chan.py_image_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_11.png -------------------------------------------------------------------------------- /Image/chan.py_image_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_12.png -------------------------------------------------------------------------------- /Image/chan.py_image_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_13.png -------------------------------------------------------------------------------- /Image/chan.py_image_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_14.png -------------------------------------------------------------------------------- /Image/chan.py_image_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_15.png -------------------------------------------------------------------------------- /Image/chan.py_image_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_16.png -------------------------------------------------------------------------------- /Image/chan.py_image_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_17.png -------------------------------------------------------------------------------- /Image/chan.py_image_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_18.png -------------------------------------------------------------------------------- /Image/chan.py_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_2.png -------------------------------------------------------------------------------- /Image/chan.py_image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_3.png -------------------------------------------------------------------------------- /Image/chan.py_image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_4.png -------------------------------------------------------------------------------- /Image/chan.py_image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_5.png -------------------------------------------------------------------------------- /Image/chan.py_image_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_6.gif -------------------------------------------------------------------------------- /Image/chan.py_image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_7.png -------------------------------------------------------------------------------- /Image/chan.py_image_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_8.png -------------------------------------------------------------------------------- /Image/chan.py_image_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan.py_image_9.png -------------------------------------------------------------------------------- /Image/chan_bilibili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan_bilibili.png -------------------------------------------------------------------------------- /Image/chan_coding_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan_coding_time.png -------------------------------------------------------------------------------- /Image/chan_commit_cnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan_commit_cnt.png -------------------------------------------------------------------------------- /Image/chan_gotify_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan_gotify_info.png -------------------------------------------------------------------------------- /Image/chan_issue_cnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan_issue_cnt.png -------------------------------------------------------------------------------- /Image/chan_qujiantao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan_qujiantao.png -------------------------------------------------------------------------------- /Image/chan_trendline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/chan_trendline.png -------------------------------------------------------------------------------- /Image/coffee.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/coffee.jpeg -------------------------------------------------------------------------------- /Image/demark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/demark.png -------------------------------------------------------------------------------- /Image/feature_cnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/feature_cnt.png -------------------------------------------------------------------------------- /Image/futu_sim_snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/futu_sim_snapshot.png -------------------------------------------------------------------------------- /Image/hk_sim_result.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/hk_sim_result.jpeg -------------------------------------------------------------------------------- /Image/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/marker.png -------------------------------------------------------------------------------- /Image/notion_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/notion_table.png -------------------------------------------------------------------------------- /Image/open_send_msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/open_send_msg.png -------------------------------------------------------------------------------- /Image/plot_cbsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/plot_cbsp.png -------------------------------------------------------------------------------- /Image/question_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/question_pic.png -------------------------------------------------------------------------------- /Image/repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/repository.png -------------------------------------------------------------------------------- /Image/summary_b_us_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/summary_b_us_test.png -------------------------------------------------------------------------------- /Image/us_sim_result.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Image/us_sim_result.jpeg -------------------------------------------------------------------------------- /KLine/KLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/KLine/KLine.py -------------------------------------------------------------------------------- /KLine/KLine_List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/KLine/KLine_List.py -------------------------------------------------------------------------------- /KLine/KLine_Unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/KLine/KLine_Unit.py -------------------------------------------------------------------------------- /KLine/TradeInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/KLine/TradeInfo.py -------------------------------------------------------------------------------- /KLine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/LICENSE -------------------------------------------------------------------------------- /Math/BOLL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Math/BOLL.py -------------------------------------------------------------------------------- /Math/Demark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Math/Demark.py -------------------------------------------------------------------------------- /Math/MACD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Math/MACD.py -------------------------------------------------------------------------------- /Math/TrendLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Math/TrendLine.py -------------------------------------------------------------------------------- /Math/TrendModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Math/TrendModel.py -------------------------------------------------------------------------------- /Math/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plot/AnimatePlotDriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Plot/AnimatePlotDriver.py -------------------------------------------------------------------------------- /Plot/PlotDriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Plot/PlotDriver.py -------------------------------------------------------------------------------- /Plot/PlotMeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Plot/PlotMeta.py -------------------------------------------------------------------------------- /Plot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/README.md -------------------------------------------------------------------------------- /Script/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Script/requirements.txt -------------------------------------------------------------------------------- /Seg/Eigen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Seg/Eigen.py -------------------------------------------------------------------------------- /Seg/EigenFX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Seg/EigenFX.py -------------------------------------------------------------------------------- /Seg/Seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Seg/Seg.py -------------------------------------------------------------------------------- /Seg/SegConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Seg/SegConfig.py -------------------------------------------------------------------------------- /Seg/SegListChan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Seg/SegListChan.py -------------------------------------------------------------------------------- /Seg/SegListComm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Seg/SegListComm.py -------------------------------------------------------------------------------- /Seg/SegListDYH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Seg/SegListDYH.py -------------------------------------------------------------------------------- /Seg/SegListDef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/Seg/SegListDef.py -------------------------------------------------------------------------------- /Seg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZS/ZS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/ZS/ZS.py -------------------------------------------------------------------------------- /ZS/ZSConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/ZS/ZSConfig.py -------------------------------------------------------------------------------- /ZS/ZSList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/ZS/ZSList.py -------------------------------------------------------------------------------- /ZS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/main.py -------------------------------------------------------------------------------- /quick_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugo2046/hugo_chan/HEAD/quick_guide.md --------------------------------------------------------------------------------