├── .gitignore ├── alpha-pool ├── Readme.md ├── assets │ ├── 101 Formulaic Alpha.pdf │ ├── 华泰期货 CTA 量化策略因子系列 │ │ ├── CTA 量化策略因子系列(一):波动率因子.pdf │ │ ├── CTA 量化策略因子系列(七)商品动量因子新升级.pdf │ │ ├── CTA 量化策略因子系列(三):期限结构因子.pdf │ │ ├── CTA 量化策略因子系列(二):动量因子.pdf │ │ ├── CTA 量化策略因子系列(五)偏度与峰度因子.pdf │ │ ├── CTA 量化策略因子系列(六) 商品成交持仓排名因子(上.pdf │ │ └── CTA 量化策略因子系列(四):因子组合与择时 .pdf │ ├── 国泰君安-数量化专题之九十三:基于短周期价量特征的多因子选股体系-2017-06-16.pdf │ └── 高频因子:分钟单笔金额序列中的主力行为刻画.pdf └── db.py ├── dataset └── Readme.md ├── knowledge_cards ├── Crypto │ ├── Bitcoin_fundamental.md │ ├── OnChainIndicator.md │ ├── bitcoin_fear_index.md │ ├── bitcoin_in_nutshell.md │ ├── bitcoin_monthly │ │ ├── ARK-Invest_070122_Bitcoin-Monthly_June-22.pdf │ │ └── ARK-Invest_The-Bitcoin-Monthly_August-2022.pdf │ ├── perpetual_contract.md │ └── readme.md ├── Equities │ └── China │ │ └── Readme.md ├── market.md └── readme.md ├── readme.md ├── tech_stack ├── apache_arrow.md ├── grpc_protobuf.md └── readme.md └── thoughts ├── readme.md └── 如何快速识别量化交易书籍的好坏.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /alpha-pool/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/alpha-pool/Readme.md -------------------------------------------------------------------------------- /alpha-pool/assets/101 Formulaic Alpha.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/alpha-pool/assets/101 Formulaic Alpha.pdf -------------------------------------------------------------------------------- /alpha-pool/assets/华泰期货 CTA 量化策略因子系列/CTA 量化策略因子系列(一):波动率因子.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/alpha-pool/assets/华泰期货 CTA 量化策略因子系列/CTA 量化策略因子系列(一):波动率因子.pdf -------------------------------------------------------------------------------- /alpha-pool/assets/华泰期货 CTA 量化策略因子系列/CTA 量化策略因子系列(七)商品动量因子新升级.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/alpha-pool/assets/华泰期货 CTA 量化策略因子系列/CTA 量化策略因子系列(七)商品动量因子新升级.pdf -------------------------------------------------------------------------------- /alpha-pool/assets/华泰期货 CTA 量化策略因子系列/CTA 量化策略因子系列(三):期限结构因子.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/alpha-pool/assets/华泰期货 CTA 量化策略因子系列/CTA 量化策略因子系列(三):期限结构因子.pdf -------------------------------------------------------------------------------- /alpha-pool/assets/华泰期货 CTA 量化策略因子系列/CTA 量化策略因子系列(二):动量因子.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/alpha-pool/assets/华泰期货 CTA 量化策略因子系列/CTA 量化策略因子系列(二):动量因子.pdf -------------------------------------------------------------------------------- /alpha-pool/assets/华泰期货 CTA 量化策略因子系列/CTA 量化策略因子系列(五)偏度与峰度因子.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/alpha-pool/assets/华泰期货 CTA 量化策略因子系列/CTA 量化策略因子系列(五)偏度与峰度因子.pdf -------------------------------------------------------------------------------- /alpha-pool/assets/华泰期货 CTA 量化策略因子系列/CTA 量化策略因子系列(六) 商品成交持仓排名因子(上.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/alpha-pool/assets/华泰期货 CTA 量化策略因子系列/CTA 量化策略因子系列(六) 商品成交持仓排名因子(上.pdf -------------------------------------------------------------------------------- /alpha-pool/assets/华泰期货 CTA 量化策略因子系列/CTA 量化策略因子系列(四):因子组合与择时 .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/alpha-pool/assets/华泰期货 CTA 量化策略因子系列/CTA 量化策略因子系列(四):因子组合与择时 .pdf -------------------------------------------------------------------------------- /alpha-pool/assets/国泰君安-数量化专题之九十三:基于短周期价量特征的多因子选股体系-2017-06-16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/alpha-pool/assets/国泰君安-数量化专题之九十三:基于短周期价量特征的多因子选股体系-2017-06-16.pdf -------------------------------------------------------------------------------- /alpha-pool/assets/高频因子:分钟单笔金额序列中的主力行为刻画.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/alpha-pool/assets/高频因子:分钟单笔金额序列中的主力行为刻画.pdf -------------------------------------------------------------------------------- /alpha-pool/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/alpha-pool/db.py -------------------------------------------------------------------------------- /dataset/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/dataset/Readme.md -------------------------------------------------------------------------------- /knowledge_cards/Crypto/Bitcoin_fundamental.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/knowledge_cards/Crypto/Bitcoin_fundamental.md -------------------------------------------------------------------------------- /knowledge_cards/Crypto/OnChainIndicator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/knowledge_cards/Crypto/OnChainIndicator.md -------------------------------------------------------------------------------- /knowledge_cards/Crypto/bitcoin_fear_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/knowledge_cards/Crypto/bitcoin_fear_index.md -------------------------------------------------------------------------------- /knowledge_cards/Crypto/bitcoin_in_nutshell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/knowledge_cards/Crypto/bitcoin_in_nutshell.md -------------------------------------------------------------------------------- /knowledge_cards/Crypto/bitcoin_monthly/ARK-Invest_070122_Bitcoin-Monthly_June-22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/knowledge_cards/Crypto/bitcoin_monthly/ARK-Invest_070122_Bitcoin-Monthly_June-22.pdf -------------------------------------------------------------------------------- /knowledge_cards/Crypto/bitcoin_monthly/ARK-Invest_The-Bitcoin-Monthly_August-2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/knowledge_cards/Crypto/bitcoin_monthly/ARK-Invest_The-Bitcoin-Monthly_August-2022.pdf -------------------------------------------------------------------------------- /knowledge_cards/Crypto/perpetual_contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/knowledge_cards/Crypto/perpetual_contract.md -------------------------------------------------------------------------------- /knowledge_cards/Crypto/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/knowledge_cards/Crypto/readme.md -------------------------------------------------------------------------------- /knowledge_cards/Equities/China/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/knowledge_cards/Equities/China/Readme.md -------------------------------------------------------------------------------- /knowledge_cards/market.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/knowledge_cards/market.md -------------------------------------------------------------------------------- /knowledge_cards/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/knowledge_cards/readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/readme.md -------------------------------------------------------------------------------- /tech_stack/apache_arrow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/tech_stack/apache_arrow.md -------------------------------------------------------------------------------- /tech_stack/grpc_protobuf.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tech_stack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/tech_stack/readme.md -------------------------------------------------------------------------------- /thoughts/readme.md: -------------------------------------------------------------------------------- 1 | # 心得体会 2 | -------------------------------------------------------------------------------- /thoughts/如何快速识别量化交易书籍的好坏.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhe3224/systematic-trading-knowledge-collection/HEAD/thoughts/如何快速识别量化交易书籍的好坏.md --------------------------------------------------------------------------------