World Cup Assist Value Trading
/install world-cup-assist-value-trading
name: world-cup-assist-value-trading displayName: "World Cup Assist Value Trader" description: "Scans all World Cup Most Assists markets on Simmer, fetches real club stats from FBref, and generates buy signals when a player is undervalued by 8%+ vs their form-based expected price." version: 1.0.1 author: maxhejohansen-boop license: MIT platforms: [linux, macos, windows] category: world-cup categories: [trading, world-cup] tags: [trading, assists, world-cup, simmer, signal, football, soccer]
World Cup Assist Value Trading Skill
This skill implements a signal-based trading strategy for World Cup assist markets on Simmer. It searches for recent club form stats (chances created, key passes, assists) for five target players, computes a form-based assist value, compares it to the current Simmer market price, and triggers a dry-run buy when the market price is at least 8% below the form-based value.
Players Monitored
- Bruno Fernandes (Manchester United)
- Michael Olise (Crystal Palace / Bayern Munich)
- Rayan Cherki (Lyon)
- Lamine Yamal (Barcelona)
- Luis Diaz (Liverpool)
Signal Logic
- Form Stats Retrieval: For each player, search the web for recent club form over the last 5 matches, focusing on:
- Chances created
- Key passes
- Assists
- Form-Based Value Calculation: Assign weights to each stat (e.g., assists weight 0.5, key passes 0.3, chances created 0.2) and compute a normalized score. Convert this score to an expected assist market price using a scaling factor derived from historical data (skill author should adjust based on backtesting).
- Market Price Fetch: Search Simmer (or general web) for the current assist market price for each player on Simmer.
- Comparison: If Simmer price ≤ (form-based value × 0.92) (i.e., at least 8% below), generate a buy signal.
- Trade Execution: In dry-run mode, log the intended trade (player, amount, expected value, market price). In live mode, would place a 1% bankroll trade via Simmer API.
- Hold to Match Resolution: Maintain the position until the relevant World Cup match concludes (skill should note to check match schedule and exit after match end).
Dry-Run Mode
The skill starts in dry-run mode, meaning no actual trades are placed. Instead, it outputs detailed logs of signals that would have been triggered.
Baseline Data Requirement
Before running or reporting a dry-run, check baselines.json for structured player baselines. Do not silently rely on placeholder/capped dummy values from web snippets. If recent last-5-match data cannot be fetched reliably, run the signal against the season baselines and clearly label it as baseline-driven. baselines.json should include raw totals, appearances, derived per-game values, and source URLs so the numbers are auditable.
Implementation Steps (for the agent when invoking this skill)
1. Search for Recent Form Stats
For each player, execute a web search query like:
"Bruno Fernandes" last 5 matches chances created key passes assists
Extract numerical values from the results (may require visiting specific sports stats sites like FBref, Premier League, Ligue 1, La Liga, Bundesliga, etc.).
2. Compute Form-Based Value
Example calculation (adjust weights as needed):
form_score = (assists * 0.5) + (key_passes * 0.3) + (chances_created * 0.2)
expected_price = form_score * scaling_factor
Where scaling_factor maps form score to market price (e.g., if average form score of 2.0 corresponds to average assist price of $10, scaling_factor = 5).
3. Fetch Simmer Assist Price
Search for:
Simmer assist price Bruno Fernandes
or visit Simmer market page and extract the current price.
4. Generate Signal
If simmer_price \x3C= expected_price * 0.92, output:
[SIGNAL] BUY Bruno Fernandes: Expected ${expected_price:.2f}, Simmer ${simmer_price:.2f} (discount {discount_pct:.1f}%)
5. Trade Sizing
Use 1% of allocated bankroll per trade. In dry-run, compute and log the stake amount.
6. Hold Until Match Resolution
After entering a trade, monitor the World Cup fixture list for the player's national team. Exit the trade after the match concludes (or when the market settles).
Notes
- The skill assumes the agent has access to web search and can parse HTML/text for numeric stats.
- For production use, replace dry-run logs with actual Simmer API calls for price fetching and order placement.
- Consider adding error handling for missing data or price fetch failures.
- Backtest the weighting and scaling factor on historical data before live deployment.
Example Invocation
When the agent loads this skill, it should run the signal generation process once (or be scheduled via cron to run periodically, e.g., every 6 hours).
# To run manually (if skill exposes an entrypoint):
# The skill itself does not define a CLI; it is intended to be invoked via the agent's reasoning loop.
# Example: delegate_task with goal "Run world-cup-assist-value-trading skill".
Linked Files
references/player_baselines.md- Baseline stats for all monitored playersreferences/2024_25_baseline_refresh.md- Auditable 2024/25 baseline refresh notes, source strategy, and pitfallsreferences/2025_26_baseline_refresh.md- Auditable 2025/26 baseline refresh notes, source strategy, current values, and pitfallsreferences/world_cup_2026_fixtures.md- World Cup 2026 match schedulereferences/research_notes.md- Methodology, limitations, and improvement notesscripts/signal.py- Executable signal generation script (dry-run mode)
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install world-cup-assist-value-trading - 安装完成后,直接呼叫该 Skill 的名称或使用
/world-cup-assist-value-trading触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
World Cup Assist Value Trading 是什么?
World Cup Assist Value trading signal: buy players when Simmer assist price is 8% below form-based value. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 35 次。
如何安装 World Cup Assist Value Trading?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install world-cup-assist-value-trading」即可一键安装,无需额外配置。
World Cup Assist Value Trading 是免费的吗?
是的,World Cup Assist Value Trading 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
World Cup Assist Value Trading 支持哪些平台?
World Cup Assist Value Trading 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 World Cup Assist Value Trading?
由 maxhejohansen-boop(@maxhejohansen-boop)开发并维护,当前版本 v1.0.2。