Polymarket Mil Aircraft Tracker

API key required
Security

Trade Polymarket strike/action markets using military aircraft ADS-B positioning via pref.trade. Fires when tracked mil aircraft cluster in a target region.

Install

openclaw skills install polymarket-mil-aircraft-tracker

Polymarket Military Aircraft Tracker

Trade Polymarket strike/action markets using military aircraft ADS-B positioning via pref.trade.

Framework, not a production trading system. Read DISCLAIMER.md before connecting to a wallet with real funds.

Template skill. Defaults to dry-run mode. The --live flag is a deliberate opt-in for real-money execution. Configure tunables via env vars listed below.

Safety Rails

This skill executes real-money trades on Polymarket only when the --live flag is passed and the human's wallet is linked to their Simmer account. Trading is bounded by default:

  • Dry-run is the default. python milaircraft_tracker.py shows cluster state and opportunities but executes no trades.
  • $SIM paper sandbox option. Set TRADING_VENUE=sim to trade Simmer's virtual currency at real prices.
  • Real-money trading requires explicit human verification. A wallet must be linked at simmer.markets/dashboard before any real trade lands.
  • Per-trade cap. SIMMER_MILACFT_TRADE_SIZE defaults to $5.00 per trade.
  • Region exposure cap. SIMMER_MILACFT_CLUSTER_CAP defaults to $25.00 open exposure per region.
  • Daily kill switches. SIMMER_MILACFT_DAILY_LOSS_KILL and SIMMER_MILACFT_DAILY_TRADE_KILL stop new entries after the configured limits.
  • Strategy-side safeguards. The skill checks Simmer market context, slippage, resolved-market warnings, duplicate positions, and cluster state before orders. Disable only with --no-safeguards.
  • Reversibility. Open positions exit when price rises above SIMMER_MILACFT_EXIT_THRESHOLD, or when the regional aircraft cluster drops below its threshold.

If anything above is unclear, stop before passing --live.

Strategy Logic

The strategy watches military-tagged ADS-B aircraft via pref.trade's aviation.get_adsb_military MCP tool. Each scan fetches visible military aircraft once, filters them client-side into five target regions, then searches Polymarket for strike/action markets matching the fired region's keywords.

When a region has at least its configured aircraft threshold and a matching active market is priced below the entry threshold, the skill may buy YES. Position sizing is handled by simmer_sdk.sizing.size_position() using a conservative active-cluster prior and the SDK's minimum expected-value gate.

Test with TRADING_VENUE=sim before running real-money mode.

When to Use This Skill

Use this skill when the user wants to:

  • Track military aircraft cluster signals
  • Trade strike or military-action Polymarket markets
  • Run a pref.trade-powered Simmer skill
  • Check current cluster state and skill activity

Setup

Required environment:

  • SIMMER_API_KEY - get from simmer.markets/dashboard
  • PREF_API_KEY - register your own agent at pref.trade via POST /v1/agents/register to get a pref_agent_* key (50 free calls/day on anonymous tier, 250/day after claiming)

Then install the SDK:

pip install --upgrade simmer-sdk

Configuration

SettingEnvironment VariableDefaultDescription
Trading venueTRADING_VENUEpolymarketSet sim for paper trading
Entry thresholdSIMMER_MILACFT_ENTRY_THRESHOLD0.15Buy YES when price is below this and cluster fires
Exit thresholdSIMMER_MILACFT_EXIT_THRESHOLD0.45Sell open YES position when price is above this
Trade sizeSIMMER_MILACFT_TRADE_SIZE5.00Max USD per trade
Region capSIMMER_MILACFT_CLUSTER_CAP25.00Max open USD per region
Max trades/runSIMMER_MILACFT_MAX_TRADES_PER_RUN3Maximum entries per scan
CadenceSIMMER_MILACFT_CADENCE_MIN15Intended polling cadence in minutes
Daily loss killSIMMER_MILACFT_DAILY_LOSS_KILL25.00Stop new entries after daily loss reaches this
Daily trade killSIMMER_MILACFT_DAILY_TRADE_KILL10Stop new entries after this many daily trades
Slippage maxSIMMER_MILACFT_SLIPPAGE_MAX0.15Skip trades with estimated slippage above this
Order typeSIMMER_MILACFT_ORDER_TYPEGTCSimmer order type

Position sizing also supports the standard Simmer SDK sizing env vars from simmer_sdk.sizing, including SIMMER_POSITION_SIZING, SIMMER_KELLY_MULTIPLIER, and SIMMER_MIN_EV.

Quick Commands

# Dry run, no trades
python milaircraft_tracker.py

# Execute live trades
python milaircraft_tracker.py --live

# Use $SIM paper venue
TRADING_VENUE=sim python milaircraft_tracker.py --live

# Validate pref key and quota
python milaircraft_tracker.py --check

# Show current cluster dashboard
python milaircraft_tracker.py --status

# Show current Simmer positions
python milaircraft_tracker.py --positions

# View config
python milaircraft_tracker.py --config

How It Works

Each cycle the script:

  1. Loads region bounds from regions.yaml
  2. Calls pref.trade aviation.get_adsb_military
  3. Filters aircraft into target regions by bounding box
  4. Searches Polymarket for strike/action markets using region keywords
  5. Checks price, source context, slippage, daily kill switches, and exposure caps
  6. Sizes the position through Simmer SDK
  7. Buys YES in eligible markets
  8. Sells open positions when the price exits or the cluster goes stale
  9. Tags all trades with sdk:milaircraft

Source Tagging

All trades are tagged with source: "sdk:milaircraft" and skill_slug: "polymarket-mil-aircraft-tracker". This keeps P&L attribution separate from other skills and lets Simmer enforce cross-skill conflict checks.

Troubleshooting

PREF_API_KEY not set - create or export a pref.trade agent key.

SIMMER_API_KEY environment variable not set - get a key from simmer.markets/dashboard.

No clusters fired - military aircraft are visible globally, but may not be inside one of the five configured regions.

No markets found - Polymarket may not have active strike/action markets matching the region keywords.

Safeguard blocked - the Simmer context endpoint flagged a resolved market, high slippage, or flip-flop risk.

Daily kill switch active - reset happens automatically on the next UTC day, or inspect ~/.simmer/milaircraft-tracker/state.json.