一键导入
worldquant-miner-cn
WorldQuant Alpha 挖掘器 - AI 驱动的 Alpha 因子生成、测试和提交系统
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
WorldQuant Alpha 挖掘器 - AI 驱动的 Alpha 因子生成、测试和提交系统
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Bloom Mission Discovery — find missions matched to your taste, submit content, and track rewards. Powered by Bloom Protocol.
DESCRIPTION of what this skill does. Include specific trigger keywords and scenarios. Use when: scenario1, scenario2, scenario3.
First-time setup for the Durable Agents stack (Mastra + Trigger.dev). Run once before using the main skill.
Read/search Gmail via gog CLI. Inbox check, email search, content retrieval.
One-sentence description. Use when [trigger scenarios].
Use cheap, TEE-verified AI models from the 0G Compute Network as OpenClaw providers. Discover available models and compare pricing vs OpenRouter, verify provider integrity via hardware attestation (Intel TDX), manage your 0G wallet and sub-accounts, and configure models in OpenClaw with one workflow. Supports DeepSeek, GLM-5, Qwen, and other models available on the 0G marketplace.
| name | worldquant-miner-cn |
| description | WorldQuant Alpha 挖掘器 - AI 驱动的 Alpha 因子生成、测试和提交系统 |
| metadata | {"openclaw":{"emoji":"⛏️","category":"finance","tags":["worldquant","alpha","trading","quant","ai"],"requires":{"bins":["python3","docker"]}}} |
AI 驱动的 Alpha 因子生成、测试和提交系统。
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ Web Dashboard │────▶│ Alpha Generator │────▶│ WorldQuant API │
│ (Flask) │ │ (Ollama) │ │ (External) │
│ Port 5000 │ │ Port 11434 │ │ │
└─────────────────┘ └─────────────────┘ └─────────────────┘
│ │ │
└───────────────────────┼───────────────────────┘
▼
┌─────────────────┐
│ Results & │
│ Logs Storage │
└─────────────────┘
# 创建凭据文件
echo '["your.email@worldquant.com", "your_password"]' > credential.txt
# GPU 版本(推荐)
docker-compose -f docker-compose.gpu.yml up -d
# CPU 版本
docker-compose up -d
from worldquant_miner import AlphaGenerator
# 初始化
generator = AlphaGenerator(
model="llama3.2:3b",
credential_path="credential.txt"
)
# 生成 Alpha
alpha = generator.generate()
print(alpha)
# 输出:
# rank(ts_corr(close, volume, 20)) * -1
from worldquant_miner import AlphaMiner
# 从现有表达式挖掘变体
miner = AlphaMiner(
expression="rank(ts_corr(close, volume, 20))",
params={"window": [10, 20, 30, 60]}
)
# 运行
results = miner.run()
# 测试 4 个变体
from worldquant_miner import AlphaSubmitter
submitter = AlphaSubmitter(credential_path="credential.txt")
# 提交成功的 Alpha
submitter.submit_best(
results_dir="results/",
min_sharpe=1.0, # 最低夏普比率
max_correlation=0.7 # 最大相关性
)
| 指标 | Kimi API | 本地 Ollama |
|---|---|---|
| 生成速度 | 10-15s | 3-5s |
| 成本 | 按次收费 | 免费 |
| 隐私 | 数据上传 | 本地处理 |
| 可用性 | 依赖网络 | 离线可用 |
WorldQuant 著名的 101 公式化 Alpha:
# Alpha #1
(rank(Ts_ArgMax(SignedPower(((returns < 0) ? stddev(returns, 20) : close), 2.), 5)) - 0.5)
# Alpha #2
(-1 * correlation(rank(delta(log(volume), 2)), rank(((close - open) / open)), 6))
# Alpha #3
(-1 * correlation(rank(open), rank(volume), 10))
完整 101 个 Alpha 见 Alpha101
worldquant-miner-cn/
├── SKILL.md
├── README.md
├── scripts/
│ ├── setup.sh # 安装脚本
│ ├── start_gpu.sh # GPU 启动
│ └── start_cpu.sh # CPU 启动
└── references/
└── README_en.md # 原始英文版
版本: 1.0.0 来源: worldquant-miner