Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

sim-trading-mvp模拟交易 MVP

Agent Skill

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

总安装

7,975

周安装

329

GitHub Stars

公开资料未说明

下载量

2,606
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:sim-trading-mvp(模拟交易 MVP)
来源仓库:https://github.com/qrg-cloud/sim-trading-mvp
安装命令:
openclaw skills install sim-trading-mvp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install sim-trading-mvp

简介

用于查找、检索和筛选模拟交易相关信息,运行纸质投资工作流程。

  • 支持风格选择、风险规则设定和每日三个决策窗口,可选 cron 调度。
  • 可结合来源仓库和 README 继续核验具体用法。sim-trading-mvp 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写。
  • 适用于 OpenClaw 中执行模拟交易策略的场景。

SKILL.md

name
sim-trading-mvp
description
Run a paper-trading / simulated investing workflow with explicit style selection, fixed risk rules, three decision windows per trading day, optional cron setup, persistent account and trade logs, and a post-market daily recap. Use when the user wants a simulated US stock trading account, asks the agent to act like an investor, maintain a model portfolio, make buy/sell/hold decisions, schedule trading decisions during market hours, or send a daily market/trading review. Especially use when the user cares about discipline, repeatability, and truthful reporting without fabricated data.

Sim Trading MVP

Run a disciplined paper-trading loop for an OpenClaw user.

This skill is meant to be reusable across different OpenClaw setups. Do not assume one specific user's style, files, or schedule. Confirm the user's preferences before locking in the workflow.

Use a single structured market-data source for prices, benchmark tracking, and account valuation whenever possible. Current recommended source for this skill: Finnhub.

Non-negotiable rule: truthfulness

Never fabricate market data, execution prices, benchmark performance, news, portfolio state, or trade history.

If data is missing, delayed, unavailable, or uncertain:

  • say so clearly
  • record the uncertainty explicitly
  • prefer HOLD over pretending certainty
  • never optimize for apparent profit by inventing facts

Trust matters more than simulated returns.

Confirm these inputs before finalizing the workflow

Before turning the workflow into a persistent setup, confirm these four items with the user:

  1. Style
  2. Initial rules
  3. Three decision windows and cron behavior
  4. Post-market report format

Do not skip confirmation unless the user explicitly says to use the current/default version.

1. Style selection

The skill should support multiple styles.

Examples:

  • conservative
  • aggressive
  • default growth
  • custom

Important

A custom style should be personalized for the current OpenClaw user based on their preferences, temperament, and working style. Do not assume one universal custom style across all users.

When building or updating a custom style:

  • use the current user's stated preferences
  • reflect their appetite for action vs stability
  • capture what kind of process they want to watch every day
  • write the resulting style into the local project/account files

2. Initial rules

Default starter rules for this MVP:

  • Initial cash: $10,000
  • Market: US stocks + ETFs
  • Disallowed: options, leverage, shorting
  • Max single-position weight: 30%
  • Minimum cash: 10%
  • Max high-volatility positions at once: 3
  • Benchmarks: SPY and QQQ

These are defaults, not sacred constants. If the user changes them, store the updated rules in the project files.

3. Three decision windows and automation

The default workflow uses three decision windows per trading day:

  1. pre_or_open
  2. intraday
  3. near_close

In each window, output exactly one action:

  • BUY
  • SELL
  • HOLD

HOLD is a valid action. Do not force activity.

If the user wants automation, set up cron jobs for:

  • the three decision windows
  • one post-market sync

If cron already exists, inspect before changing it. Avoid duplicate jobs.

4. Post-market report

The default post-market report should include:

  • account equity
  • daily return
  • cumulative return
  • benchmark comparison (SPY / QQQ)
  • current positions
  • today's three decision windows
  • reasoning
  • review / lessons / next watch items

The report can be concise, but it must remain honest and specific.

Recommended project structure

Use a project directory so the simulated account survives across sessions.

Suggested files:

  • account.json — account state, rules, style, positions, watchlist
  • trades.jsonl — append-only decision / execution log
  • README.md — brief project note

If the user already has a preferred project path, use that instead.

Core workflow

Follow this order.

Step 1: Load state

Read the account file and trade log before making any decision.

At minimum, know:

  • current cash
  • current positions
  • current rules
  • prior decisions from the same day
  • current style

Step 2: Identify the current decision window

Determine whether you are acting in:

  • pre_or_open
  • intraday
  • near_close
  • postmarket_sync

For the first three, make exactly one action decision.

Step 3: Research before acting

Before every decision, gather enough real market context to justify the move.

Use Finnhub as the primary single source for:

  • current price / quote lookups
  • historical price context
  • benchmark symbols such as SPY and QQQ
  • account valuation inputs

Use open research/news sources as secondary inputs for:

  • broad market tone
  • relevant macro events
  • company-specific catalysts
  • earnings / guidance
  • narrative context around held names and watchlist names

Prefer a small number of useful sources over noisy overcollection.

Data source and secrets

Store API keys outside the skill itself, for example in a local project .env or another secret-bearing runtime configuration.

Never hardcode, publish, commit, or echo a user's market-data API key into SKILL.md, reference files, public repos, or ClawHub releases.

For this skill, Finnhub may be required for robust price and benchmark handling, but the key must stay in local runtime configuration only.

Authenticity guardrails

When researching and reporting:

  • do not state a price unless you actually retrieved or calculated it from a real source
  • do not imply a trade happened unless it was actually recorded
  • do not backfill trades after the fact to make the log look better
  • do not invent benchmark performance
  • do not turn missing information into confident narrative

If the needed data is unavailable, say something like:

  • Market data was unavailable for this window, so I recorded HOLD rather than fabricate a view.

Risk enforcement

Always enforce the stored account rules.

If a proposed action breaks the rules, reject it and record HOLD with the reason.

Examples:

  • position would exceed max concentration
  • cash floor would be broken
  • security type is not allowed
  • too many high-volatility names would be held simultaneously

Action format

For every BUY or SELL, record three things:

  1. why act now
  2. what would invalidate the thesis
  3. what the exit / damage-control plan is

For HOLD, explain why patience is better than forced activity.

Logging format

Append one JSON object per line to trades.jsonl.

Suggested shape:

{"date":"2026-03-12","window":"intraday","action":"HOLD","ticker":null,"qty":0,"price":null,"reason":"No clean setup.","thesisInvalidation":null,"exitPlan":null,"dataStatus":"incomplete"}

For executed buys/sells, include:

  • ticker
  • quantity
  • execution price assumption
  • reason
  • thesis invalidation
  • exit plan
  • data quality note if needed

Post-market sync behavior

At the end of the trading day, send a concise Chinese recap containing:

  • account performance
  • benchmark comparison
  • positions
  • today's three decisions
  • reasoning
  • review
  • what to watch next

If any figures are incomplete or estimated, label them clearly.

Tone

  • Sound like an investor with a process.
  • Do not sound like a hype bot.
  • Discipline beats excitement.
  • Truth beats pretty results.
  • A boring honest recap is better than a flashy fake one.

References

Read references/project-template.md when setting up a new account from scratch. Read references/report-template.md when formatting the daily sync. Read references/log-schema.md when updating or validating the trading log format. Read references/cron-setup.md when the user wants automated decision windows and post-market sync. Read references/style-profiles.md when selecting or generating a style profile, especially custom.

Scripts

Use scripts/update_account.py <account.json> as a minimal account-update helper.

It currently:

  • recalculates account equity from cash plus position market value when currentPrice is available
  • updates totalReturnPct
  • refreshes updatedAt

Treat it as a safe starter framework. Extend it when the project grows, but do not silently turn missing price data into fake marks.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.35%
按下载量换算1,912

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills