← 返回
数据分析 Key 中文

Polymarket Nordic Trader

Trades Polymarket prediction markets focused on Scandinavian and Nordic events — Swedish politics, Norwegian economy, Danish infrastructure, Nordic business...
Trades Polymarket prediction markets focused on Scandinavian and Nordic events — Swedish politics, Norwegian economy, Danish infrastructure, Nordic business...
diagnostikon
数据分析 clawhub v0.0.3 2 版本 99840.5 Key: 需要
★ 0
Stars
📥 626
下载
💾 8
安装
2
版本
#latest

概述

Nordic & Scandinavian Trader

> This is a template.

> The default signal is keyword discovery + Swedish/Nordic news feed monitoring — remix it with Riksdagen API for legislative tracking, SCB (Statistics Sweden) data releases, Affärsvärlden market feeds, or Spotify investor relations signals.

> The skill handles all the plumbing (market discovery, trade execution, safeguards). Your agent provides the alpha.

Strategy Overview

Nordic markets are one of the most underserved categories on global prediction platforms. Traders with genuine local knowledge — Swedish politics, Scandinavian business news, Nordic weather patterns — hold structural information advantages over global retail traders.

This skill trades:

  • Swedish politics — Government formation, Riksdag legislative milestones
  • Nordic business — Spotify profitability, Northvolt recovery, Klarna/unicorn IPOs
  • Infrastructure — Förbifart Stockholm, Malmö Arena, high-speed rail announcements
  • Sports — Champions League Nordic teams, Swedish/Norwegian international competitions
  • Local weather — Stockholm heatwaves, Öresund ice crossing, Oslo snowfall records
  • Culture — Melodifestivalen viewership, Way Out West attendance

Key edge: the vast majority of Polymarket liquidity is US/global retail. Nordic-specific markets will have mispriced odds whenever the resolver requires local knowledge.

Signal Logic

Default Signal: Conviction-Based Sizing with Local Edge Bias

  1. Discover markets matching Nordic/Scandinavian keywords
  2. Compute base conviction from distance to threshold (0% at boundary → 100% at p=0/p=1)
  3. Apply local_edge_bias() — combines CET timezone timing with domain confidence
  4. Size = max(MIN_TRADE, conviction × bias × MAX_POSITION) — capped at MAX_POSITION
  5. Skip markets with spread > MAX_SPREAD or fewer than MIN_DAYS to resolution

Local Edge Bias (built-in, no API required)

local_edge_bias() multiplies conviction using two factors simultaneously:

Factor 1 — CET Timezone Window

Nordic news breaks during CET business hours (approx 06:00–18:00 UTC). Polymarket is US-dominated — repricing on Nordic news takes 2–6 hours. Trading inside the window means information is still fresh.

Time (UTC)MultiplierWhy
---------
06:00–18:001.2xCET business hours — Nordic news is fresh, US retail hasn't caught up
18:00–06:000.9xOutside window — advantage likely already priced in

Factor 2 — Domain Confidence

DomainMultiplierWhy
---------
Riksdag / politics / elections1.20xPublic structured data, predictable process
Nordic tech (Spotify, Klarna, Northvolt)1.15xSwedish business press is early and detailed
SMHI / local weather1.10xSwedish forecasts published before English-language coverage
Sports / culture (Zlatan, Melodifestivalen)0.85xHigh randomness, hard to model

Combined multiplier is capped at 1.40x to avoid over-sizing on illiquid markets.

Example: Riksdag vote question at 25% during CET hours → conviction 34% × (1.2 × 1.2 = 1.40x capped) = 48% → $10 position. Same question at 01:00 UTC → 34% × (0.9 × 1.2 = 1.08x) = 37% → $7.

Remix Ideas

  • Riksdagen API: Feed live voting data into p — trade divergence between parliamentary consensus and market price
  • SMHI API: Replace market probability with SMHI forecast confidence for weather markets
  • SVT/Di.se RSS: Monitor Swedish news feeds for events that haven't hit English-language sources yet
  • Avanza/Nordnet sentiment: Swedish retail stock sentiment as proxy for Nordic tech markets
  • SCB data releases: Statistics Sweden economic releases as leading indicator for macro markets

Market Categories Tracked

KEYWORDS = [
    'Sweden', 'Sverige', 'Stockholm', 'Malmö', 'Göteborg',
    'Norway', 'Norge', 'Oslo', 'Denmark', 'Danmark', 'Copenhagen',
    'Finland', 'Helsinki', 'Nordic', 'Scandinavian',
    'Spotify', 'Northvolt', 'Klarna', 'Ericsson', 'Volvo', 'IKEA',
    'Riksdag', 'Melodifestivalen', 'Zlatan', 'Allsvenskan',
    'SMHI', 'Öresund',
]

Risk Parameters

ParameterDefaultNotes
---------------------------
Max position size$20 USDCNordic markets may be illiquid
Min market volume$1,000Accept lower liquidity for edge opportunity
Max bid-ask spread20%Niche markets have wider spreads
Min days to resolution3Local events can resolve quickly
Max open positions8Diversify across Nordic themes

Local Knowledge Edge

Information Advantage Examples

  • Förbifart Stockholm: A Swedish civil engineer knows the tunnel's actual completion status better than US retail traders
  • Northvolt bankruptcy: Swedish business press covered the restructuring in detail months before English-language coverage
  • SMHI winter forecasts: Local seasonal weather outlooks are published in Swedish first
  • Melodifestivalen: SVT viewership trends visible to Swedish residents immediately

Timing Edge

Swedish/Nordic news typically breaks in CET timezone (UTC+1/+2). US-dominated Polymarket markets take 2–6 hours to reprice on Nordic news.

Key Data Sources

  • SMHI (Weather): https://www.smhi.se/
  • Riksdagen (Parliament): https://data.riksdagen.se/
  • SCB (Statistics): https://www.scb.se/
  • SVT Nyheter: https://www.svt.se/nyheter/
  • Di.se (Business): https://www.di.se/

Installation & Setup

clawhub install polymarket-nordic-trader

Requires: SIMMER_API_KEY environment variable.

Cron Schedule

Runs every 15 minutes (/15 *). Nordic events follow business hours (CET); tighter polling during 06:00–22:00 CET recommended in remixes.

Safety & Execution Mode

The skill defaults to paper trading (venue="sim"). Real trades only execute when --live is passed explicitly.

ScenarioModeFinancial risk
--------------------------------
python trader.pyPaper (sim)None
Cron / automatonPaper (sim)None
python trader.py --liveLive (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

VariableRequiredNotes
---------------------------
SIMMER_API_KEYYesTrading 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.

VariableDefaultPurpose
----------------------------
SIMMER_MAX_POSITION20Max USDC per trade (reached at 100% conviction)
SIMMER_MIN_VOLUME1000Min market volume filter (USD)
SIMMER_MAX_SPREAD0.20Max bid-ask spread (0.20 = 20%, wider for niche markets)
SIMMER_MIN_DAYS3Min days until market resolves
SIMMER_MAX_POSITIONS8Max concurrent open positions
SIMMER_YES_THRESHOLD0.38Buy YES if market price ≤ this value
SIMMER_NO_THRESHOLD0.62Sell NO if market price ≥ this value
SIMMER_MIN_TRADE5Floor for any trade (min USDC regardless of conviction)

Dependency

simmer-sdk 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.

版本历史

共 2 个版本

  • v0.0.3 当前
    2026-05-01 10:03 安全 安全
  • v1.0.0
    2026-03-19 21:23 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

data-analysis

Data Analysis

ivangdavila
{"answer":"数据分析与可视化。查询数据库、生成报告、自动化电子表格,将原始数据转化为清晰可行的见解。适用于:(1) 您……"}
★ 198 📥 65,123
data-analysis

Excel / XLSX

ivangdavila
创建、检查和编辑 Microsoft Excel 工作簿及 XLSX 文件,支持可靠的公式、日期、类型、格式、重算及模板保留功能。
★ 368 📥 140,468
data-analysis

A股量化 AkShare

mbpz
A股量化数据分析工具,基于AkShare库获取A股行情、财务数据、板块信息等。用于回答关于A股股票查询、行情数据、财务分析、选股等问题。
★ 165 📥 60,019