一键导入
varrd-search
Find saved strategies by keyword or natural language query. Use when the user wants to look up or browse previously validated trading strategies.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Find saved strategies by keyword or natural language query. Use when the user wants to look up or browse previously validated trading strategies.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Browse VARRD's validated edge library — see which edges are firing right now, get stats and trade levels, or drill into the full methodology and performance of any edge.
Check VARRD credit balance and available credit packs. Use when the user asks about credits, billing, or how much research budget remains.
Autonomous edge discovery — VARRD generates, tests, and validates trading hypotheses hands-free. Use when the user wants the AI to find trading edges on its own given a topic or market.
Get full details on a specific saved strategy — formula, metrics, version history. Use when the user wants to inspect a particular hypothesis or strategy in detail.
The core VARRD research tool — talk to a state-of-the-art quant AI to research, chart, test, optimize, and trade any market idea. Use when the user wants to test a trading hypothesis, find edges, or validate a strategy with real market data.
Reset a broken or stuck research session and start fresh. Use when a VARRD session is erroring or stuck.
| name | varrd-search |
| description | Find saved strategies by keyword or natural language query. Use when the user wants to look up or browse previously validated trading strategies. |
| version | 1.0.0 |
| tools | ["Bash"] |
| homepage | https://varrd.com |
| metadata | {"openclaw":{"requires":{"bins":["varrd"]},"emoji":"🔎"}} |
Use this skill when a user wants to find strategies in their library by topic, keyword, or market.
varrd search "<query>"
varrd search "RSI oversold" --market ES
varrd search "momentum strategies" --limit 5
Searches all saved strategies using keyword and semantic matching. Returns matches ranked by relevance with key stats (win rate, Sharpe, edge status).
| Flag | Description |
|---|---|
--market ES | Filter results to a specific market |
--limit N | Max results to return (default 10) |
varrd search "momentum strategies"
varrd search "RSI oversold"
varrd search "corn seasonal"
varrd search "mean reversion" --market ES
varrd search "volatility" --limit 20
Each result includes:
varrd hypothesis <id> for full detailsFree. No credits consumed.
from varrd import VARRD
v = VARRD()
results = v.search("momentum on grains", limit=5)
for r in results.results:
print(f"{r.name} ({r.market}) — edge: {r.has_edge}, WR: {r.win_rate}")