41 lines
1.9 KiB
Markdown
41 lines
1.9 KiB
Markdown
---
|
||
title: "Polymarket Autopilot: Automated Paper Trading"
|
||
type: source
|
||
tags: [polymarket, autopilot, paper-trading, prediction-market]
|
||
date: 2026-04-17
|
||
---
|
||
|
||
## Source File
|
||
- [[raw/Agent/usecases/polymarket-autopilot.md]]
|
||
|
||
## Summary
|
||
- 核心主题:AI Agent 自动化模拟交易预测市场
|
||
- 问题域:预测市场机会监控、交易策略执行、组合绩效追踪
|
||
- 方法/机制:通过 Cron Jobs 定时执行,调用 Polymarket API 获取市场数据,使用 TAIL(趋势跟随)、BONDING(逆势)、SPREAD(价差套利)三种策略执行模拟交易,记录每日绩效并推送 Discord 报告
|
||
- 结论/价值:在无风险环境下测试和优化交易策略,学习市场模式并自适应调整参数
|
||
|
||
## Key Claims
|
||
- AI Agent 可通过 API 持续监控预测市场并自动执行模拟交易策略
|
||
- TAIL 策略在强趋势(概率 >60% + 成交量飙升)时有效
|
||
- BONDING 策略在市场对新闻过度反应时(突然下跌 >10%)有效
|
||
- SPREAD 策略在 YES+NO 概率之和 >1.05 时存在套利机会
|
||
|
||
## Key Quotes
|
||
> "Manually monitoring prediction markets for arbitrage opportunities and executing trades is time-consuming and requires constant attention." — 手动监控预测市场的痛点
|
||
|
||
## Key Concepts
|
||
- [[Paper Trading]]:模拟交易,使用虚拟资金测试策略无需承担真实风险
|
||
- [[Cron Jobs]]:定时任务调度,AI Agent 每 15 分钟执行一次市场扫描
|
||
- [[Discord Integration]]:通过 Discord Webhook 实现每日交易报告推送
|
||
- [[Sub-agent Spawning]]:在高峰期并行分析多个市场
|
||
|
||
## Key Entities
|
||
- [[Polymarket]]:预测市场平台,提供 API 获取市场价格、成交量、价差数据
|
||
|
||
## Connections
|
||
- [[Cron Jobs]] ← 驱动 ← [[Polymarket Autopilot]]
|
||
- [[Discord]] ← 通知 ← [[Polymarket Autopilot]]
|
||
- [[Subagent 管理]] ← 实现 ← [[Polymarket Autopilot]](并行市场分析)
|
||
|
||
## Contradictions
|
||
- (暂无) |