Install
openclaw skills install joinquant-strategy提供聚宽量化策略开发模板、代码片段和API参考,助力策略快速编写与风险管理实践。
openclaw skills install joinquant-strategy帮助在Cursor中编写聚宽(JoinQuant)量化策略的工具集。
joinquant-strategy/
├── README.md # Skill 说明文档
├── templates/ # 策略模板目录
│ ├── basic_template.py # 基础策略模板
│ ├── dual_strategy_template.py # 双策略模板
│ └── etf_rotation_template.py # ETF轮动策略模板
├── snippets/ # 代码片段目录
│ ├── data_fetching.md # 数据获取常用代码
│ ├── order_handling.md # 下单处理代码
│ ├── risk_control.md # 风险控制代码
│ └── technical_analysis.md # 技术分析代码
├── api_reference/ # API参考文档
│ ├── core_functions.md # 核心函数说明
│ ├── data_functions.md # 数据获取函数说明
│ └── order_functions.md # 下单函数说明
└── examples/ # 示例策略
└── momentum_etf_strategy.py # 动量ETF策略
在Cursor中使用此skill时,可以:
/template命令选择策略模板/snippet查看常用代码片段/api 函数名快速查看API用法examples/目录学习复杂策略的编写