├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── analysis ├── __init__.py ├── emd.py ├── least_square_circle.py ├── machinelearning.py ├── price_by_volume.py ├── regtree.py ├── regtree_cython.c ├── regtree_cython.pyx ├── setup.py ├── timeseries.py └── utils.py ├── cli ├── README.md ├── __init__.py ├── __main__.py ├── analysis.py ├── holding.py ├── okex.py ├── portfolio.py ├── setup.py ├── show_number.py ├── sub.py ├── sub_cython.c ├── sub_cython.pyx └── watchdog.py ├── czsc ├── __init__.py ├── analyze.py ├── cobra │ ├── __init__.py │ ├── factor_analyst.py │ └── utils.py ├── data │ ├── __init__.py │ ├── base.py │ ├── jq.py │ └── ts.py ├── signals.py ├── trader.py └── utils │ ├── __init__.py │ ├── echarts_plot.py │ ├── kline_generator.py │ ├── plot.py │ └── ta.py ├── docs └── images │ └── cli_usage.png ├── fetch ├── Portfolio_signals.py ├── README.md ├── StockCN_realtime.py ├── __init__.py ├── base.py └── kline.py ├── imitation ├── README.md ├── __init__.py └── uqer.py ├── indices ├── __init__.py ├── base.py ├── indices.py ├── oneils_rps.py ├── renko.py ├── renko02.py └── talib_fractal.py ├── messenger ├── __init__.py ├── __main__.py └── utils.py ├── portfolio ├── __init__.py ├── base.py ├── by_es_fof.py ├── by_trend_indices.py └── utils.py ├── setup.py ├── test_cases ├── __init__.py └── fetch_test │ └── realtime.py └── utils ├── __init__.py ├── clawer.py ├── const.py ├── gfx.py ├── parameter.py ├── path.py ├── portfolio_optimization_demo.py ├── preproccessing.py ├── presentation.py ├── settings.py └── symbol.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # 每天运行股票基准评价 -------------------------------------------------------------------------------- /analysis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/analysis/__init__.py -------------------------------------------------------------------------------- /analysis/emd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/analysis/emd.py -------------------------------------------------------------------------------- /analysis/least_square_circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/analysis/least_square_circle.py -------------------------------------------------------------------------------- /analysis/machinelearning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/analysis/machinelearning.py -------------------------------------------------------------------------------- /analysis/price_by_volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/analysis/price_by_volume.py -------------------------------------------------------------------------------- /analysis/regtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/analysis/regtree.py -------------------------------------------------------------------------------- /analysis/regtree_cython.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/analysis/regtree_cython.c -------------------------------------------------------------------------------- /analysis/regtree_cython.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/analysis/regtree_cython.pyx -------------------------------------------------------------------------------- /analysis/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/analysis/setup.py -------------------------------------------------------------------------------- /analysis/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/analysis/timeseries.py -------------------------------------------------------------------------------- /analysis/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/analysis/utils.py -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/__init__.py: -------------------------------------------------------------------------------- 1 | ## 每天运行股票基准评价 -------------------------------------------------------------------------------- /cli/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/cli/__main__.py -------------------------------------------------------------------------------- /cli/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/cli/analysis.py -------------------------------------------------------------------------------- /cli/holding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/cli/holding.py -------------------------------------------------------------------------------- /cli/okex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/cli/okex.py -------------------------------------------------------------------------------- /cli/portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/cli/portfolio.py -------------------------------------------------------------------------------- /cli/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/cli/setup.py -------------------------------------------------------------------------------- /cli/show_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/cli/show_number.py -------------------------------------------------------------------------------- /cli/sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/cli/sub.py -------------------------------------------------------------------------------- /cli/sub_cython.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/cli/sub_cython.c -------------------------------------------------------------------------------- /cli/sub_cython.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/cli/sub_cython.pyx -------------------------------------------------------------------------------- /cli/watchdog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/cli/watchdog.py -------------------------------------------------------------------------------- /czsc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/czsc/__init__.py -------------------------------------------------------------------------------- /czsc/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/czsc/analyze.py -------------------------------------------------------------------------------- /czsc/cobra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /czsc/cobra/factor_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/czsc/cobra/factor_analyst.py -------------------------------------------------------------------------------- /czsc/cobra/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/czsc/cobra/utils.py -------------------------------------------------------------------------------- /czsc/data/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .base import freq_map 3 | -------------------------------------------------------------------------------- /czsc/data/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/czsc/data/base.py -------------------------------------------------------------------------------- /czsc/data/jq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/czsc/data/jq.py -------------------------------------------------------------------------------- /czsc/data/ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/czsc/data/ts.py -------------------------------------------------------------------------------- /czsc/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/czsc/signals.py -------------------------------------------------------------------------------- /czsc/trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/czsc/trader.py -------------------------------------------------------------------------------- /czsc/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/czsc/utils/__init__.py -------------------------------------------------------------------------------- /czsc/utils/echarts_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/czsc/utils/echarts_plot.py -------------------------------------------------------------------------------- /czsc/utils/kline_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/czsc/utils/kline_generator.py -------------------------------------------------------------------------------- /czsc/utils/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/czsc/utils/plot.py -------------------------------------------------------------------------------- /czsc/utils/ta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/czsc/utils/ta.py -------------------------------------------------------------------------------- /docs/images/cli_usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/docs/images/cli_usage.png -------------------------------------------------------------------------------- /fetch/Portfolio_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/fetch/Portfolio_signals.py -------------------------------------------------------------------------------- /fetch/README.md: -------------------------------------------------------------------------------- 1 | # GolemQ.fetch 2 | A股行情数据增强接口 -------------------------------------------------------------------------------- /fetch/StockCN_realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/fetch/StockCN_realtime.py -------------------------------------------------------------------------------- /fetch/__init__.py: -------------------------------------------------------------------------------- 1 | ## 每天运行股票基准评价 -------------------------------------------------------------------------------- /fetch/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/fetch/base.py -------------------------------------------------------------------------------- /fetch/kline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/fetch/kline.py -------------------------------------------------------------------------------- /imitation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/imitation/README.md -------------------------------------------------------------------------------- /imitation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/imitation/__init__.py -------------------------------------------------------------------------------- /imitation/uqer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/imitation/uqer.py -------------------------------------------------------------------------------- /indices/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/indices/__init__.py -------------------------------------------------------------------------------- /indices/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/indices/base.py -------------------------------------------------------------------------------- /indices/indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/indices/indices.py -------------------------------------------------------------------------------- /indices/oneils_rps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/indices/oneils_rps.py -------------------------------------------------------------------------------- /indices/renko.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/indices/renko.py -------------------------------------------------------------------------------- /indices/renko02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/indices/renko02.py -------------------------------------------------------------------------------- /indices/talib_fractal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/indices/talib_fractal.py -------------------------------------------------------------------------------- /messenger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/messenger/__init__.py -------------------------------------------------------------------------------- /messenger/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/messenger/__main__.py -------------------------------------------------------------------------------- /messenger/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/messenger/utils.py -------------------------------------------------------------------------------- /portfolio/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /portfolio/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/portfolio/base.py -------------------------------------------------------------------------------- /portfolio/by_es_fof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/portfolio/by_es_fof.py -------------------------------------------------------------------------------- /portfolio/by_trend_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/portfolio/by_trend_indices.py -------------------------------------------------------------------------------- /portfolio/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/portfolio/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/setup.py -------------------------------------------------------------------------------- /test_cases/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test_cases/fetch_test/realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/test_cases/fetch_test/realtime.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/clawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/utils/clawer.py -------------------------------------------------------------------------------- /utils/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/utils/const.py -------------------------------------------------------------------------------- /utils/gfx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/utils/gfx.py -------------------------------------------------------------------------------- /utils/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/utils/parameter.py -------------------------------------------------------------------------------- /utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/utils/path.py -------------------------------------------------------------------------------- /utils/portfolio_optimization_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/utils/portfolio_optimization_demo.py -------------------------------------------------------------------------------- /utils/preproccessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/utils/preproccessing.py -------------------------------------------------------------------------------- /utils/presentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/utils/presentation.py -------------------------------------------------------------------------------- /utils/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/utils/settings.py -------------------------------------------------------------------------------- /utils/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rgveda/GolemQ/HEAD/utils/symbol.py --------------------------------------------------------------------------------