Token导航 LogoToken导航TokenDH.com
研究检索权限需确认clawhub未标认证来源可访问clear审计提醒

einstein-research-edge-dv爱因斯坦研究边缘 dv

Agent Skill

einstein-research-edge-dv 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,214

周安装

130

GitHub Stars

公开资料未说明

下载量

1,009
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:einstein-research-edge-dv(爱因斯坦研究边缘 dv)
来源仓库:https://github.com/clawdiri-ai/einstein-research-edge-dv
安装命令:
openclaw skills install einstein-research-edge-dv
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install einstein-research-edge-dv

简介

einstein-research-edge-dv 根据 EOD 观察生成美国股票长边研究票据。

  • 专为 OpenClaw 设计,适用于构建交易策略候选池。
  • 通过 ClawHub 安装,输出准备就绪的投资标的规格文档。
  • 使用前需确认权限范围、维护状态,以及是否会触发证券数据访问操作。
  • 建议设置筛选阈值并人工复核推荐结果的有效性。

SKILL.md

id
einstein-research-edge
name
einstein-research-edge
description
Generate and prioritize US equity long-side edge research tickets from
version
1.0.0
author
DaVinci
last_amended_at
null
trigger_patterns
[]
pre_conditions
git_repo_required
false
tools_available
[]
expected_output_format
natural_language

Edge Research Ticket Generator

This skill formalizes the process of turning a trading hypothesis or anomaly into a structured, reproducible research ticket. It's the first step in the quantitative research pipeline, ensuring that ideas are well-defined and testable before any backtesting code is written.

When to Use This Skill

  • User has a trading idea or hypothesis (e.g., "I think stocks that do X tend to go up").
  • User observes a market anomaly and wants to investigate it systematically.
  • User wants to create a new candidate for the trade-strategy-pipeline.
  • Triggers: "research ticket," "new strategy idea," "test this hypothesis," "is this an edge?".

Workflow: From Idea to Pipeline-Ready Spec

Step 1: Idea Ingestion

The skill prompts the user for the core components of their idea:

  • Hypothesis: A clear, one-sentence statement of the proposed edge.
  • Entry Signal: The specific conditions that trigger a buy.
  • Exit Signal: The conditions that trigger a sell (e.g., target profit, stop-loss, time-based).
  • Universe: The group of stocks to test this on (e.g., S&P 500, Nasdaq 100).
  • Rationale: *Why* should this edge exist? (Behavioral, structural, etc.).

Step 2: Ticket Generation

The edge-generator CLI tool takes these inputs and creates a structured research ticket in Markdown format.

edge-generator create \
  --hypothesis "Stocks hitting a 52-week high with high volume have momentum." \
  --entry "Price > 52-week high AND Volume > 2x 50-day avg volume" \
  --exit "5-day hold OR 10% profit target OR 5% stop-loss" \
  --universe "sp500" \
  --rationale "Breakout momentum, high volume confirms institutional interest."

This generates a file like tickets/ER-2026-015_52_week_high_momentum.md.

Ticket Structure:

  • ID: ER-YYYY-NNN
  • Title: Short description of the idea.
  • Hypothesis: As provided.
  • Entry/Exit/Universe/Rationale: As provided.
  • Data Requirements: Lists the data needed (e.g., daily OHLCV, 52-week high, 50-day avg volume).
  • Priority Score: An initial score (0-100) based on uniqueness, rationale strength, and testability.

Step 3: Prioritization

The skill can rank all open tickets in the tickets/ directory to help decide what to research next.

edge-generator prioritize

This updates the priority scores based on factors like:

  • Novelty: How similar is this to previously tested (and failed) ideas?
  • Data Availability: Can this be tested with our current data sources?
  • Computational Cost: Is the backtest likely to be fast or slow?

Step 4: Export to Pipeline Spec

Once a ticket is prioritized and approved for research, this skill exports it to the format required by the trade-strategy-pipeline.

edge-generator export ER-2026-015

This creates a directory pipeline-candidates/ER-2026-015/ containing:

  • strategy.yaml: The machine-readable definition of the strategy.
    version: edge-finder-candidate/v1
    name: 52-Week High Momentum
    hypothesis: Stocks hitting a 52-week high with high volume have momentum.
    entry:
      - "price > high_52w"
      - "volume > 2 * avg_volume_50d"
    exit:
      - "hold_days == 5"
      - "pct_change >= 0.10"
      - "pct_change <= -0.05"
    universe: "sp500"
  • metadata.json: Additional context for the pipeline runner.
    {
      "ticketId": "ER-2026-015",
      "rationale": "Breakout momentum, high volume confirms institutional interest.",
      "priority": 85,
      "dataRequirements": ["daily_ohlcv", "high_52w", "avg_volume_50d"]
    }

Step 5: Handoff to Backtest Engine

The generated directory is now ready to be processed by the einstein-research-backtest-engine skill, which will execute the backtest based on the strategy.yaml spec.

Why This Is Important

  • Reproducibility: Every research effort starts with a formal, version-controlled definition.
  • Efficiency: Prevents wasted time on ill-defined ideas.
  • Systematic Process: Ensures a consistent and rigorous approach to alpha research.
  • Automation: The strategy.yaml format allows the backtesting process to be fully automated.

This skill is the gateway to the entire quantitative research pipeline, turning qualitative ideas into testable, machine-readable artifacts.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

75.74%
按下载量换算764

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills