Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

wyckoff-agent-skill威科夫特工技能

Agent Skill

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

总安装

2,493

周安装

106

GitHub Stars

公开资料未说明

下载量

873
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:wyckoff-agent-skill(威科夫特工技能)
来源仓库:https://github.com/youngcan-wang/wyckoff-agent-skill
安装命令:
openclaw skills install wyckoff-agent-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install wyckoff-agent-skill

简介

Wyckoff A 股分析代理,集成完整 CLI 操作界面。

  • 引导用户完成安装、注册与数据源配置全流程。
  • 支持本地检测与交互式设置指导。wyckoff-agent-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install wyckoff-agent-skill。
  • 需按指引获取券商接口权限并填写真实交易账户信息。

SKILL.md

name
wyckoff
description
Wyckoff A-share analysis agent with full CLI integration. Detects local CLI installation, guides users through setup (install → register → configure data sources → configure model), then executes Wyckoff-style volume-price analysis with auditable portfolio decisions. Supports both first-time onboarding and daily operational workflows (portfolio management, signal queries, recommendations) via the wyckoff CLI.

Wyckoff Trading Agent

This skill operates in two modes: Setup (Step 0) and Analysis (Steps 1–9). Step 0 runs only when prerequisites are missing; once everything is configured, jump directly to analysis.

Step 0: Environment Detection & Guided Setup

Run these checks in order. Stop at the first failure and guide the user to fix it before continuing.

0.1 CLI Installation Check

Run wyckoff --version.

  • Success → proceed to 0.2.
  • Failure → guide installation:
  pip install youngcan-wyckoff-analysis

Or one-line install:

  curl -fsSL https://raw.githubusercontent.com/YoungCan-Wang/Wyckoff-Analysis/main/install.sh | bash

After install, verify with wyckoff --version again.

0.2 Auth Check

Run wyckoff auth status.

  • Logged in → proceed to 0.3. (Credentials are auto-saved; token expiry triggers automatic re-login.)
  • Not logged in → guide registration and login:

1. Tell user to open https://wyckoff-analysis-youngcanphoenix.streamlit.app/ to register an account. 2. After registration, run: wyckoff auth login <email> <password> (credentials will be persisted, no need to login again). 3. Verify with wyckoff auth status.

0.3 Data Source Check

Run wyckoff config show.

  • tushare_token present → OK.
  • tushare_token missing → guide:

- Tushare token is free, get it from https://tushare.pro/ after registration. - Then run: wyckoff config tushare <token>

  • tickflow_api_key present → OK.
  • tickflow_api_key missing → guide:

- TickFlow provides real-time and historical A-share data. - Purchase at: https://tickflow.org/auth/register?ref=5N4NKTCPL4 - Then run: wyckoff config tickflow <api_key>

Note: At least one data source (tushare or tickflow) must be configured. Both are recommended for better coverage.

0.4 Model Check

Run wyckoff model list.

  • Has models → proceed to Step 1.
  • No models → guide: wyckoff model add (interactive) or wyckoff model set <name> <provider> <api_key> --model <model_name>.

When all checks pass, print a brief summary and proceed to analysis.

CLI Operational Commands

When the user's intent is operational (not analysis), route directly to the appropriate CLI command instead of running the analysis pipeline:

IntentCommand
View portfoliowyckoff portfolio list
Add positionwyckoff portfolio add <code> <shares> <cost>
Remove positionwyckoff portfolio rm <code>
Set cashwyckoff portfolio cash <amount>
View signalswyckoff signal
View recommendationswyckoff recommend
Update CLIwyckoff update

For the full CLI reference, see rules/cli-setup-guide.md.

Input Protocol

Accept any combination of:

  • Stock symbol(s), single or multiple.
  • holdings: [symbol+cost+qty, ...].
  • cash: available cash amount.
  • candidate: optional non-holding symbol.
  • CSV file(s), image(s), text constraints/goals.

Infer scenario automatically:

  • holdings non-empty + candidate: rotation comparison + per-holding actions.
  • holdings non-empty + no candidate: per-holding add/reduce/hold/exit.
  • holdings empty + cash: empty-position cash deployment.
  • No portfolio fields: symbol analysis flow.

Do not require users to explicitly say "switch/add/reduce/empty-position."

Full Capability Orchestration (Steps 1–9, Required Order)

  1. Parse and normalize inputs.

- Normalize symbols to exchange-qualified format when possible. - Parse holdings into {symbol, cost, qty}. - Preserve raw user inputs for output audit.

  1. Acquire current time via system/tool first.

- Fetch current timestamp from tool/system. - Convert to Asia/Shanghai. - Print 当前北京时间:YYYY-MM-DD HH:MM(UTC+8).

  1. Decide trading availability with authoritative calendar checks.

- Judge weekday and continuous-auction windows: 09:30-11:30, 13:00-15:00 (Beijing time). - Query authoritative trading calendar when holiday/adjusted-workday uncertainty exists. - If not tradable, downgrade to post-market review + next-session plan + T+1-safe order strategy.

  1. Fetch online data with source fallback.

- Follow rules/source-fallbacks.md strictly for each symbol. - Perform schema and row-count validation before accepting a source. - Log fallback attempts and final source per symbol.

  1. Integrate CSV/image modalities when provided.

- Use CSV as supplemental historical structure input and reconcile with fetched data. - Treat chart images as micro-structure evidence; explicitly acknowledge image reception. - Continue analysis if one modality fails and state exact failure cause.

  1. Run Wyckoff structural analysis first.

- Analyze latest available window (target 500 trading days) with MA50/MA200. - Identify only evidenced phases/events (SC/ST/Spring/LPS/SOS/UTAD). - Use event-date news search only for validation context, never as primary trade logic.

  1. Produce portfolio decisions after structure analysis.

- For each holding, output one explicit action: add / reduce / hold / exit. - If candidate exists, compare against structurally weakest current holding and decide switch / partial switch / hold. - If holdings are empty and cash exists, output staged cash deployment suggestion.

  1. Render plots only when session rules allow.

- Skip plotting during tradable intraday windows. - When plotting is allowed, enforce all constraints in rules/alpha-system-prompt.md.

  1. Apply capability degrade policy.

- Never fabricate OHLCV rows, event timestamps, or trading status. - If all sources fail for a symbol, mark data_unavailable and continue others. - If valid rows < 30, report insufficient structure depth and avoid hard phase labels. - If image parsing fails, explain reason and continue CSV/text/online path.

For detailed capability-routing policy, read rules/system-capability-playbook.md.

Fixed Output Contract

Always output in this order:

  1. 当前北京时间:YYYY-MM-DD HH:MM(UTC+8)
  2. Trading verdict: 当前是否可盘中交易:是/否 (with reason if no).
  3. Data audit table per symbol: symbol, source_used, rows_kept, window_end_date, fallback_count.
  4. Wyckoff analysis: current cycle background and phase (only evidenced), key events with rationale, action boundaries respecting T+1.
  5. Portfolio action section (portfolio flow only): holdings snapshot, per-holding actions, candidate comparison, cash suggestion, final summary in Wyckoff tone.
  6. Plotting section (only when allowed by session rules).

Hard Constraints

  • Do not change the fixed prompt wording unless explicitly requested.
  • Do not fabricate missing OHLCV rows.
  • Do not ignore image input if image is parseable.
  • Do not use opaque white text boxes in chart annotations.
  • If fetching data requires running Python scripts, run them only in a sandboxed environment.
  • Prefer direct web/API fetch first; use Python scripts only when needed for fallback, parsing, or normalization.

Resources

  • rules/alpha-system-prompt.md: fixed role and hard rules.
  • rules/source-fallbacks.md: online source switching policy.
  • rules/system-capability-playbook.md: full system capability routing and degrade policy.
  • rules/cli-setup-guide.md: CLI installation, registration, and command reference.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.11%
按下载量换算656

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install wyckoff-agent-skill 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills