# quant-system **Repository Path**: chenbingwei991/quant-system ## Basic Information - **Project Name**: quant-system - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-16 - **Last Updated**: 2025-11-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 量化交易系统 目标:制定策略,回测,模拟盘操作 ## 目录结构 quant-system/ ├── run.py # 主程序入口 ├── config.py # 全局配置 ├── src/ # 源代码目录 │ ├── __init__.py │ ├── core/ # 核心模块 │ │ ├── __init__.py │ │ ├── config.py # 配置管理 │ │ └── exceptions.py # 自定义异常 │ ├── data/ # 数据模块 │ │ ├── __init__.py │ │ ├── fetcher/ # 数据获取 │ │ │ ├── __init__.py │ │ │ ├── binance.py # 币安数据获取 │ │ ├── loader/ # 数据加载 │ │ │ ├── __init__.py │ │ │ ├── csv_loader.py │ │ │ └── base.py │ │ ├── processor/ # 数据处理 │ │ │ ├── __init__.py │ │ │ ├── kline_processor.py │ ├── strategy/ # 策略模块 │ │ ├── __init__.py │ │ ├── base.py # 策略基类 │ │ ├── moving_average.py │ ├── trading/ # 交易模块 │ │ ├── __init__.py │ ├── backtest/ # 回测模块 │ │ ├── __init__.py │ ├── utils/ # 工具模块 │ │ ├── __init__.py │ └── executor/ # 执行模块 │ ├── __init__.py │ └── main.py # 主执行器 ## p1阶段 任务1:获取2年ETHUSTD日k线 任务2:使用 backtesting 框架测试移动平均策略