一键导入
brain-feature-implementation
Implements WorldQuant Brain features from an idea markdown file. Downloads dataset and generates alpha expressions defined in the idea.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Implements WorldQuant Brain features from an idea markdown file. Downloads dataset and generates alpha expressions defined in the idea.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Calculates self-correlation and PPAC (Power Pool Alpha Correlation) for WorldQuant BRAIN alphas Locally, this can be very fast than query the platform via mcp. Use this when the user calculates alpha correlations, checks PPAC.
Automatically analyzes BRAIN dataset fields and generates feature engineering ideas for alpha creation. Input: data category, delay, region parameters; Output: markdown document with deep feature engineering suggestions. The skill performs autonomous analysis based on dataset and field information, proposing meaningful feature concepts.
Provides 6 proven methods to evaluate new datasets on the WorldQuant BRAIN platform. Includes methods for checking coverage, non-zero values, update frequency, bounds, central tendency, and distribution. Use when the user wants to understand a specific datafield (e.g., "what is this field?", "how often does it update?").
Provides a comprehensive workflow for deep-diving into entire WorldQuant BRAIN datasets. Includes steps for dataset selection, field categorization, detailed description generation, and cross-platform research. Use when the user wants to "audit a dataset", "categorize fields", or "explore a new dataset".
Provides a step-by-step workflow for analyzing and explaining WorldQuant BRAIN alpha expressions. Use this when the user asks to explain a specific alpha expression, what a datafield does, or how operators work together. Includes steps for data field lookup, operator analysis, and external research.
Provides detailed requirements, thresholds, and improvement tips for WorldQuant BRAIN Alpha submission tests. Covers Fitness, Sharpe, Turnover, Weight, Sub-universe, and Self-Correlation tests. Use this when the user asks about alpha submission failures, how to improve alpha metrics, or test requirements.
| name | brain-feature-implementation |
| description | Implements WorldQuant Brain features from an idea markdown file. Downloads dataset and generates alpha expressions defined in the idea. |
| allowed-tools | ["Read","RunTerminal","ManageTodoList"] |
This skill automates the process of converting a WorldQuant Brain idea document (Markdown) into actionable Alpha expressions. It handles dataset downloading and code generation for each distinct idea pattern.
brain-api).python -c ... or new .py files) to check data or generate expressions. You MUST use the scripts/implement_idea.py tool.Analyze the Idea Document
analyst15)GLB)1 or 0)Download Dataset
ls -R or Get-ChildItem -Recurse).fetch_dataset.py. It is likely in brain-feature-implementation/scripts or scripts.cd <PATH_TO_SCRIPTS_FOLDER> && python fetch_dataset.py --datasetid <ID> --region <REGION> --delay <DELAY>
../data/.Plan Implementation
Definition: <formula> or code blocks describing math.manage_todo_list tool to create a plan with one entry for each unique idea/formula found.
template: "{st_dev} / abs({mean})").Execute Implementation
{variable}.{variable} must match the suffix of the fields in the dataset (e.g., mean, st_dev, gro).anl15_gr_12_m_gro / anl15_gr_12_m_pe, use template: {gro} / {pe}.{anl15_gr_12_m_gro} / {pe} (Includes prefix).${gro} / ${pe} (Shell syntax).{ID}_{REGION}_delay{DELAY} (e.g., analyst10_GLB_delay1).implement_idea.py (as identified in step 2).cd <PATH_TO_SCRIPTS_FOLDER> && python implement_idea.py --template "<TEMPLATE_STRING>" --dataset "<DATASET_FOLDER_NAME>"
--template and --dataset. Do not pass any other arguments like --filters or --groupby.python -c or create temporary scripts to verify or process results. Trust the output of implement_idea.py.Finalize Output
cd <PATH_TO_SCRIPTS_FOLDER> && python merge_expression_list.py --dataset "<DATASET_FOLDER_NAME>"
final_expressions.json in the dataset directory.This skill relies on the following scripts in its scripts/ directory:
fetch_dataset.py: Downloads data from Brain API.implement_idea.py: Generates alpha expressions from templates.ace_lib.py & helpful_functions.py: Support libraries.