Space & Launch Trader
This is a template.
The default signal is keyword discovery + FAA/SpaceX launch schedule alignment — remix it with NASA launch manifest APIs, TLE (Two-Line Element) satellite tracking data, or social media sentiment from SpaceX/Blue Origin announcements.
The skill handles all the plumbing (market discovery, trade execution, safeguards). Your agent provides the alpha.
Strategy Overview
Space prediction markets have shown $120M+ cumulative volume (2020–2025) with 22% CAGR. Polymarket currently lists 106+ active space markets. This skill trades:
- - SpaceX milestones — Starship orbital tests, launch counts, Starlink constellation size
- Mars missions — NASA/private mission announcements and landing events
- Commercial spaceflight — Blue Origin, Virgin Galactic, Axiom Space timelines
- Satellite & telecom — Orbital congestion, direct-to-cell launch milestones
- Regulatory events — FAA approvals, international launch cadence comparisons
Key insight: volatility spikes ~25% around launch events, creating short-window entry opportunities for informed traders.
Signal Logic
Default Signal: Conviction-Based Sizing with Operator Reliability Bias
- 1. Discover active space/launch markets on Polymarket
- Compute base conviction from distance to threshold (0% at boundary → 100% at p=0/p=1)
- Apply
mission_bias() multiplier based on operator track record in the question - Size =
max(MIN_TRADE, conviction × bias × MAX_POSITION) — capped at MAXPOSITION - Skip markets with spread > MAXSPREAD or fewer than MIN_DAYS to resolution
Mission Bias (built-in, no API required)
Retail traders apply uniform skepticism across all space markets, ignoring the vast difference in historical reliability between operators. mission_bias() encodes documented success rates directly into position sizing:
| Operator / Mission | Track record | Multiplier |
|---|
| Falcon 9 / Starlink deployments | ~98% mission success | 1.35x |
| SpaceX / Crew Dragon (general) |
~95% success |
1.25x |
| Starship (test vehicle) | Rapidly improving, ~60%+ |
1.10x |
| Blue Origin / New Glenn | Lower cadence, less proven | 0.90x |
| NASA Artemis / SLS | Chronic delays, over-budget | 0.80x |
| Mars missions (any operator) | Retail overprice enthusiasm | 0.75x |
| Virgin Galactic | Multiple delays, financial struggles |
0.70x |
Example: Falcon 9 launch success market at 25% → conviction 34% × 1.35x = 46% → $14 position. NASA SLS timeline market at same price → 34% × 0.80x = 27% → $8.
Remix Ideas
- - FAA NOTAM filings: Public Notice to Air Missions filed days ahead of launch — feed scheduled probability into p to trade divergence with market
- Next Spaceflight / Rocket Watch: Public launch calendars as leading probability signal
- NASA API: Real-time mission status and telemetry feeds
- Satellite TLE data: Verify actual Starlink constellation count vs market claims before milestone markets resolve
Market Categories Tracked
CODEBLOCK0
Risk Parameters
| Parameter | Default | Notes |
|---|
| Max position size | $30 USDC | Space markets have good liquidity |
| Min market volume |
$2,500 | Space community is engaged |
| Max bid-ask spread | 8% | Tighter than climate markets |
| Min days to resolution | 3 | Short-window launch events are tradable |
| Max open positions | 6 | Space events cluster by launch window |
Volatility Note
Space markets spike sharply on anomaly news. If a launch is scrubbed, NO prices spike immediately. The skill detects these via context flip-flop warnings and pauses during high-volatility windows unless edge is strong.
Installation & Setup
CODEBLOCK1
Requires: SIMMER_API_KEY environment variable.
Cron Schedule
Runs every 10 minutes (*/10 * * * *). Launch events can resolve rapidly; tighter loop than other categories.
Safety & Execution Mode
The skill defaults to paper trading (venue="sim"). Real trades only execute when --live is passed explicitly.
| Scenario | Mode | Financial risk |
|---|
| INLINECODE7 | Paper (sim) | None |
| Cron / automaton |
Paper (sim) | None |
|
python trader.py --live | Live (polymarket) | Real USDC |
The automaton cron is set to null — it does not run on a schedule until you configure it in the Simmer UI. autostart: false means it won't start automatically on install.
Required Credentials
| Variable | Required | Notes |
|---|
| INLINECODE11 | Yes | Trading authority — keep this credential private. Do not place a live-capable key in any environment where automated code could call --live. |
Tunables (Risk Parameters)
All risk parameters are declared in clawhub.json as tunables and adjustable from the Simmer UI without code changes. They use SIMMER_-prefixed env vars so apply_skill_config() can load them securely.
| Variable | Default | Purpose |
|---|
| INLINECODE17 | INLINECODE18 | Max USDC per trade (reached at 100% conviction) |
| INLINECODE19 |
2500 | Min market volume filter (USD) |
|
SIMMER_MAX_SPREAD |
0.08 | Max bid-ask spread (0.08 = 8%) |
|
SIMMER_MIN_DAYS |
3 | Min days until market resolves |
|
SIMMER_MAX_POSITIONS |
6 | Max concurrent open positions |
|
SIMMER_YES_THRESHOLD |
0.38 | Buy YES if market price ≤ this value |
|
SIMMER_NO_THRESHOLD |
0.62 | Sell NO if market price ≥ this value |
|
SIMMER_MIN_TRADE |
5 | Floor for any trade (min USDC regardless of conviction) |
Dependency
INLINECODE33 is published on PyPI by Simmer Markets.
- - PyPI: https://pypi.org/project/simmer-sdk/
- GitHub: https://github.com/SpartanLabsXyz/simmer-sdk
- Publisher: hello@simmer.markets
Review the source before providing live credentials if you require full auditability.
太空与发射交易员
这是一个模板。
默认信号是关键词发现 + FAA/SpaceX发射计划对齐——可混搭NASA发射清单API、TLE(双行元素)卫星跟踪数据,或来自SpaceX/蓝色起源公告的社交媒体情绪。
该技能处理所有底层工作(市场发现、交易执行、安全防护)。你的智能体提供阿尔法。
策略概述
太空预测市场已显示累计交易量超1.2亿美元(2020-2025年),年复合增长率22%。Polymarket目前列出106+个活跃太空市场。本技能交易:
- - SpaceX里程碑 — 星舰轨道测试、发射次数、星链星座规模
- 火星任务 — NASA/私人任务公告及着陆事件
- 商业太空飞行 — 蓝色起源、维珍银河、公理太空时间表
- 卫星与电信 — 轨道拥堵、直连手机发射里程碑
- 监管事件 — FAA批准、国际发射节奏对比
关键洞察:发射事件期间波动率飙升约25%,为知情交易者创造短窗口入场机会。
信号逻辑
默认信号:基于信念的仓位规模与运营商可靠性偏差
- 1. 发现Polymarket上的活跃太空/发射市场
- 根据与阈值的距离计算基础信念(边界处0% → p=0/p=1处100%)
- 基于问题中运营商的过往记录应用mission_bias()乘数
- 仓位规模 = max(最小交易额, 信念 × 偏差 × 最大仓位) — 上限为最大仓位
- 跳过价差大于最大价差或距离结算少于最小天数的市场
任务偏差(内置,无需API)
散户交易者对所有太空市场施加统一怀疑,忽略运营商之间历史可靠性的巨大差异。mission_bias()将已记录的成功率直接编码到仓位规模中:
| 运营商/任务 | 过往记录 | 乘数 |
|---|
| 猎鹰9号/星链部署 | ~98%任务成功率 | 1.35倍 |
| SpaceX/载人龙飞船(通用) |
~95%成功率 |
1.25倍 |
| 星舰(测试飞行器) | 快速改进中,~60%+ |
1.10倍 |
| 蓝色起源/新格伦 | 较低发射频率,验证较少 | 0.90倍 |
| NASA阿尔忒弥斯/SLS | 长期延误,预算超支 | 0.80倍 |
| 火星任务(任何运营商) | 散户高估热情 | 0.75倍 |
| 维珍银河 | 多次延误,财务困境 |
0.70倍 |
示例:猎鹰9号发射成功市场定价25% → 信念34% × 1.35倍 = 46% → 14美元仓位。NASA SLS时间表市场相同价格 → 34% × 0.80倍 = 27% → 8美元。
混搭创意
- - FAA NOTAM备案:发射前数天提交的飞行通知公告 — 将计划概率输入p以交易与市场的背离
- Next Spaceflight / Rocket Watch:公开发射日历作为领先概率信号
- NASA API:实时任务状态和遥测数据流
- 卫星TLE数据:在里程碑市场结算前验证实际星链星座数量与市场声称的对比
跟踪的市场类别
python
关键词 = [
SpaceX, 星舰, 星链, 猎鹰9号, 载人龙飞船,
发射, 火箭, 火星, 月球, 月面,
NASA, 阿尔忒弥斯, SLS, 蓝色起源, 新格伦,
维珍银河, 公理, 卫星, 轨道, 国际空间站,
FAA, 发射窗口, ESA, JAXA,
]
风险参数
| 参数 | 默认值 | 说明 |
|---|
| 最大仓位规模 | 30 USDC | 太空市场流动性良好 |
| 最小市场交易量 |
2,500美元 | 太空社区参与度高 |
| 最大买卖价差 | 8% | 比气候市场更紧 |
| 最小结算天数 | 3 | 短窗口发射事件可交易 |
| 最大未平仓头寸 | 6 | 太空事件按发射窗口聚集 |
波动率说明
太空市场在异常新闻出现时急剧飙升。如果发射被取消,NO价格立即飙升。该技能通过上下文翻转警告检测这些情况,并在高波动窗口期间暂停,除非优势很强。
安装与设置
bash
clawhub install polymarket-space-trader
需要:SIMMERAPIKEY环境变量。
定时任务计划
每10分钟运行一次(/10 *)。发射事件可能快速结算;比其他类别的循环更紧。
安全与执行模式
该技能默认为模拟交易(venue=sim)。仅当显式传递--live时才执行真实交易。
| 场景 | 模式 | 财务风险 |
|---|
| python trader.py | 模拟 | 无 |
| 定时任务/自动化 |
模拟 | 无 |
| python trader.py --live | 实盘(polymarket) | 真实USDC |
自动化定时任务设置为null — 除非你在Simmer UI中配置,否则不会按计划运行。autostart: false意味着安装时不会自动启动。
所需凭证
| 变量 | 必需 | 说明 |
|---|
| SIMMERAPIKEY | 是 | 交易授权 — 保持此凭证私密。不要将具备实盘能力的密钥放在自动化代码可能调用--live的任何环境中。 |
可调参数(风险参数)
所有风险参数在clawhub.json中声明为tunables,可从Simmer UI调整而无需修改代码。它们使用SIMMER前缀的环境变量,以便applyskill_config()可以安全加载。
| 变量 | 默认值 | 用途 |
|---|
| SIMMERMAXPOSITION | 30 | 每笔交易最大USDC(100%信念时达到) |
| SIMMERMINVOLUME |
2500 | 最小市场交易量过滤器(美元) |
| SIMMER
MAXSPREAD | 0.08 | 最大买卖价差(0.08 = 8%) |
| SIMMER
MINDAYS | 3 | 市场结算前最小天数 |
| SIMMER
MAXPOSITIONS | 6 | 最大并发未平仓头寸 |
| SIMMER
YESTHRESHOLD | 0.38 | 如果市场价格≤此值则买入YES |
| SIMMER
NOTHRESHOLD | 0.62 | 如果市场价格≥此值则卖出NO |
| SIMMER
MINTRADE | 5 | 任何交易的最低金额(无论信念如何的最小USDC) |
依赖项
simmer-sdk由Simmer Markets在PyPI上发布。
- - PyPI:https://pypi.org/project/simmer-sdk/
- GitHub:https://github.com/SpartanLabsXyz/simmer-sdk
- 发布者:hello@simmer.markets
如果你需要完全可审计性,请在提供实盘凭证前审查源代码。