Skip to content

wyaaaattwho/QuantPlatform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

quant_trading/ # 项目根目录 ├── data/ # 数据获取模块 │ ├── init.py # 使 data 成为 Python 包 │ ├── data_fetcher.py # 数据获取核心逻辑 │ ├── data_cleaner.py # 数据清洗与预处理 │ └── data_utils.py # 数据工具函数 ├── strategies/ # 策略模块 │ ├── init.py # 使 strategies 成为 Python 包 │ ├── moving_average.py # 均线策略 │ ├── rsi_strategy.py # RSI 策略 │ ├── momentum.py # 动量策略 │ └── strategy_utils.py # 策略工具函数 ├── backtest/ # 回测模块 │ ├── init.py # 使 backtest 成为 Python 包 │ ├── backtester.py # 回测核心逻辑 │ ├── metrics.py # 回测指标计算(如夏普比率、最大回撤等) │ └── risk_control.py # 风控逻辑 ├── execution/ # 交易执行模块 │ ├── init.py # 使 execution 成为 Python 包 │ ├── broker.py # 模拟交易接口 │ ├── live_execution.py # 实时交易逻辑 │ └── execution_utils.py # 执行工具函数 ├── storage/ # 数据存储模块 │ ├── init.py # 使 storage 成为 Python 包 │ ├── database.py # 数据库操作(如 MySQL、SQLite) │ ├── file_storage.py # 文件存储操作(如 CSV、Excel) │ └── storage_utils.py # 存储工具函数 ├── visualization/ # 可视化模块 │ ├── init.py # 使 visualization 成为 Python 包 │ ├── plot_trades.py # 绘制交易点 │ ├── plot_metrics.py # 绘制回测指标 │ └── visualization_utils.py # 可视化工具函数 ├── config.py # 全局配置文件 ├── main.py # 项目入口文件 └── requirements.txt # 项目依赖包清单

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages