polly-gamba 1.0.38 → 1.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/claude-trader.js +10 -4
- package/package.json +1 -1
- package/service.log +947 -0
- package/src/claude-trader.ts +10 -4
package/dist/claude-trader.js
CHANGED
|
@@ -211,6 +211,7 @@ ${m.description ? `- Description: ${m.description.slice(0, 200)}` : ''}`).join('
|
|
|
211
211
|
- MAX 2 open positions per underlying theme. If you already have 2+ open positions in the same theme, SKIP all new markets in that theme regardless of apparent edge.
|
|
212
212
|
- Correlation examples: "Will Jesus return before GTA VI", "Will BTC hit $1M before GTA VI", "Will China invade Taiwan before GTA VI" — all three resolve based on GTA VI's release date. They are the SAME theme.
|
|
213
213
|
- Similarly: "Will Orbán be PM" and "Will Magyar be PM" are both the Hungary 2026 election — treat as same theme (you may hold both as a hedge pair, but do not add a third Hungary position).
|
|
214
|
+
- IMPORTANT: All 2028 US election markets share one theme — "2028 US election". This includes: Dem primary nominees (Newsom, Harris, etc.), Rep primary nominees (Vance, Rubio, etc.), and the general election winner. Do NOT hold more than 2 positions across this entire cycle.
|
|
214
215
|
- If you're uncertain whether a market correlates to an existing theme, assume it does and skip.
|
|
215
216
|
|
|
216
217
|
## CLOSED MARKET DISCIPLINE (absolute rule — never override):
|
|
@@ -225,8 +226,8 @@ ${m.description ? `- Description: ${m.description.slice(0, 200)}` : ''}`).join('
|
|
|
225
226
|
- Anchor fair value on base rates and world knowledge first; use sportsbooks to adjust by ±5pp only. If you cannot defend the estimate without the sportsbook line, the edge is too speculative.
|
|
226
227
|
- Exception: if both Polymarket AND sportsbooks agree with your base-rate analysis, the convergence strengthens the thesis.
|
|
227
228
|
|
|
228
|
-
STEP 1: Call get_positions
|
|
229
|
-
STEP 2: For each market,
|
|
229
|
+
STEP 1: Call get_positions. Then output a THEME CONCENTRATION TABLE — list every theme with ≥1 open position, showing count/max (e.g. "2028 US election: 3/2 FULL", "GTA VI: 2/2 FULL", "Hungary 2026 election: 1/2"). Any theme showing FULL must be skipped entirely. You MUST output this table before evaluating any market.
|
|
230
|
+
STEP 2: For each market, check your theme concentration table first. If the market's theme is FULL, skip it immediately. Otherwise apply horizon discipline, closed market discipline, and edge check.
|
|
230
231
|
STEP 3: If price differs from your fair probability by the required edge (accounting for sportsbook haircut if applicable), place a trade ($10 USDC). Call skip_all only if you have zero opinion on all markets.`;
|
|
231
232
|
const msg = JSON.stringify({
|
|
232
233
|
type: 'user',
|
|
@@ -298,7 +299,12 @@ For EVERY market above: if price differs from fair probability by >8%, place a t
|
|
|
298
299
|
}).join('\n\n');
|
|
299
300
|
const prompt = `## Position Review — ${new Date().toISOString()}
|
|
300
301
|
|
|
301
|
-
|
|
302
|
+
## STEP 0 — CONCENTRATION AUDIT (do this BEFORE reviewing individual positions):
|
|
303
|
+
Call get_positions to get the FULL list of all open positions. Count positions by underlying theme (see Rule 8 definition below). If ANY theme has 3+ open positions, immediately close the excess ones (starting with the one whose current price is closest to 50/50) until the theme has ≤2 positions. Do NOT wait — close them now before proceeding. If you have 4 positions in a theme, you must close 2.
|
|
304
|
+
|
|
305
|
+
## Review Candidates (${positionLines.split('###').length - 1} positions that moved >5% or expire within 72h):
|
|
306
|
+
|
|
307
|
+
Review each candidate below. For each: check whether the exit trigger has been met AND use world knowledge to assess thesis.
|
|
302
308
|
|
|
303
309
|
${positionLines}
|
|
304
310
|
|
|
@@ -310,7 +316,7 @@ CLOSE RULES — apply ALL that match, no thesis override allowed:
|
|
|
310
316
|
5. You have 2+ open positions in the SAME market with the SAME outcome — close the NEWER entry (higher ts value) regardless of P&L. Duplicate same-outcome positions double exposure without incremental edge. Keep the original entry.
|
|
311
317
|
6. Position is UP >25% from entry AND has been held >48h — CLOSE to lock in profits. The market has moved significantly in your favor; gains are now vulnerable to reversion. Use take_profit reason. Exception: if the resolution event is within 7 days AND the position is still clearly on the right side, you may hold until resolution.
|
|
312
318
|
7. STALE POSITION: Position held >7 days AND price has moved <5% from entry AND resolution event is >30 days away — CLOSE to redeploy capital. A position that doesn't move over 7 days means the mispricing wasn't as large as estimated. Cut it, accept the small loss/gain, and redeploy to markets with active price movement.
|
|
313
|
-
8. CONCENTRATION VIOLATION: Count open positions by underlying theme (the single real-world event that resolves all of them). Examples: "Will Jesus return before GTA VI", "Will BTC hit $1M before GTA VI", "Will China invade Taiwan before GTA VI" all share the theme "GTA VI release date". Similarly "Will Spurs win NBA Finals", "Will OKC win NBA Finals", "Will Celtics win NBA Finals" all share the theme "2026 NBA Finals". If you have 3+ positions in the same theme
|
|
319
|
+
8. CONCENTRATION VIOLATION: Count open positions by underlying theme (the single real-world event that resolves all of them). Examples: "Will Jesus return before GTA VI", "Will BTC hit $1M before GTA VI", "Will China invade Taiwan before GTA VI" all share the theme "GTA VI release date". Similarly "Will Spurs win NBA Finals", "Will OKC win NBA Finals", "Will Celtics win NBA Finals" all share the theme "2026 NBA Finals". IMPORTANT: All positions tied to the 2028 US election cycle share one theme — "2028 US election". This includes: 2028 Dem primary nominees (Newsom, etc.), 2028 Rep primary nominees (Vance, Rubio, etc.), and the 2028 general election winner — regardless of which stage of the race resolves each market. If you have 3+ positions in the same theme: close positions one by one (starting with the one whose current price is closest to 50/50) until you have ≤2 in that theme. If you have 4, you must close 2. If you have 5, close 3. Do NOT stop after closing just one if the theme still has 3+ positions. Apply this BEFORE checking other rules. This check requires the FULL position list — which is why Step 0 mandates calling get_positions first.
|
|
314
320
|
9. SPORTSBOOK THESIS DECAY: If the original reasoning cited a sportsbook cross-reference (e.g. "sportsbooks imply X%, Polymarket shows Y%") AND the position is currently down >20%: estimate current sportsbook consensus from your world knowledge. If the original sportsbook-Polymarket gap has narrowed by >60% (e.g. original 15pp gap is now ≤6pp), the arbitrage thesis is exhausted — CLOSE with reason "thesis_decayed". Do not continue holding through hard stops when the original edge is structurally gone.
|
|
315
321
|
|
|
316
322
|
HOLD RULES: If NONE of the close rules apply and exit trigger NOT triggered, do nothing (no output needed).
|
package/package.json
CHANGED
package/service.log
CHANGED
|
@@ -3014,3 +3014,950 @@ npm warn deprecated prebuild-install@7.1.3: No longer maintained. Please contact
|
|
|
3014
3014
|
[claude-trader:ollama] ready
|
|
3015
3015
|
[claude-trader:expiring] ready
|
|
3016
3016
|
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3017
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3018
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3019
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3020
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3021
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3022
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3023
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3024
|
+
[position-monitor] WARNING: no price data for 566140 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3025
|
+
[position-monitor] WARNING: no price data for 540819 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3026
|
+
[position-monitor] WARNING: no price data for 568629 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3027
|
+
[position-monitor] WARNING: no price data for 559652 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3028
|
+
[position-monitor] WARNING: no price data for 558936 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3029
|
+
[position-monitor] WARNING: no price data for 553866 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3030
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3031
|
+
[position-monitor] WARNING: no price data for 566142 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3032
|
+
[position-monitor] WARNING: no price data for 540844 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3033
|
+
[position-monitor] WARNING: no price data for 553862 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3034
|
+
[position-monitor] WARNING: no price data for 562828 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3035
|
+
[position-monitor] WARNING: no price data for 566188 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3036
|
+
[position-monitor] WARNING: no price data for 559651 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3037
|
+
[position-monitor] checked=24 review_candidates=3 hard_stops=0 (moved>5% or <72h expiry)
|
|
3038
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3039
|
+
[scan] 15 high-quality markets for autonomous review
|
|
3040
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3041
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3042
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3043
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3044
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.2h (closes after 24h continuous)
|
|
3045
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3046
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3047
|
+
[scan] 15 high-quality markets for autonomous review
|
|
3048
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3049
|
+
[expiring] 0 expiring markets for review
|
|
3050
|
+
[expiring] no expiring markets found this cycle
|
|
3051
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3052
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3053
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3054
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3055
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3056
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3057
|
+
[scan] 15 high-quality markets for autonomous review
|
|
3058
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3059
|
+
[expiring] 0 expiring markets for review
|
|
3060
|
+
[expiring] no expiring markets found this cycle
|
|
3061
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3062
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3063
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3064
|
+
[scan] 15 high-quality markets for autonomous review
|
|
3065
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3066
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3067
|
+
[expiring] 0 expiring markets for review
|
|
3068
|
+
[expiring] no expiring markets found this cycle
|
|
3069
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3070
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3071
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3072
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3073
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3074
|
+
[scan] 15 high-quality markets for autonomous review
|
|
3075
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3076
|
+
[expiring] 0 expiring markets for review
|
|
3077
|
+
[expiring] no expiring markets found this cycle
|
|
3078
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3079
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3080
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3081
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3082
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3083
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3084
|
+
[scan] failed to fetch markets: fetch failed
|
|
3085
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3086
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3087
|
+
[position-monitor] WARNING: no price data for 566140 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3088
|
+
[position-monitor] WARNING: no price data for 540819 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3089
|
+
[position-monitor] WARNING: no price data for 568629 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3090
|
+
[position-monitor] WARNING: no price data for 553866 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3091
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3092
|
+
[position-monitor] WARNING: no price data for 566142 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3093
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3094
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3095
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3096
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3097
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3098
|
+
[scan] failed to fetch markets: fetch failed
|
|
3099
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 0.3h (closes after 24h continuous)
|
|
3100
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.3h (closes after 24h continuous)
|
|
3101
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.3h (closes after 24h continuous)
|
|
3102
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.3h (closes after 24h continuous)
|
|
3103
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.3h (closes after 24h continuous)
|
|
3104
|
+
[position-monitor] WARNING: no price data for 567689 NO — missing 0.3h (closes after 24h continuous)
|
|
3105
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.3h (closes after 24h continuous)
|
|
3106
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3107
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3108
|
+
[expiring] 0 expiring markets for review
|
|
3109
|
+
[expiring] no expiring markets found this cycle
|
|
3110
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3111
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3112
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3113
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3114
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3115
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 0.5h (closes after 24h continuous)
|
|
3116
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.5h (closes after 24h continuous)
|
|
3117
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.5h (closes after 24h continuous)
|
|
3118
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.5h (closes after 24h continuous)
|
|
3119
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.5h (closes after 24h continuous)
|
|
3120
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3121
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3122
|
+
[scan] 17 high-quality markets for autonomous review
|
|
3123
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3124
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3125
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3126
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3127
|
+
[scan] failed to fetch markets: fetch failed
|
|
3128
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3129
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 0.8h (closes after 24h continuous)
|
|
3130
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.8h (closes after 24h continuous)
|
|
3131
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.8h (closes after 24h continuous)
|
|
3132
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.8h (closes after 24h continuous)
|
|
3133
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.8h (closes after 24h continuous)
|
|
3134
|
+
[position-monitor] WARNING: no price data for 559652 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3135
|
+
[position-monitor] WARNING: no price data for 553866 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3136
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3137
|
+
[position-monitor] WARNING: no price data for 566142 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3138
|
+
[position-monitor] WARNING: no price data for 559651 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3139
|
+
[position-monitor] WARNING: no price data for 567621 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3140
|
+
[position-monitor] WARNING: no price data for 561974 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3141
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3142
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3143
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3144
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3145
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3146
|
+
[scan] failed to fetch markets: fetch failed
|
|
3147
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3148
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 1.0h (closes after 24h continuous)
|
|
3149
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 1.0h (closes after 24h continuous)
|
|
3150
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 1.0h (closes after 24h continuous)
|
|
3151
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.2h (closes after 24h continuous)
|
|
3152
|
+
[position-monitor] WARNING: no price data for 559651 NO — missing 0.2h (closes after 24h continuous)
|
|
3153
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3154
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3155
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3156
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3157
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3158
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3159
|
+
[scan] failed to fetch markets: fetch failed
|
|
3160
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3161
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3162
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 1.3h (closes after 24h continuous)
|
|
3163
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 1.3h (closes after 24h continuous)
|
|
3164
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 1.3h (closes after 24h continuous)
|
|
3165
|
+
[position-monitor] WARNING: no price data for 559652 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3166
|
+
[position-monitor] WARNING: no price data for 558936 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3167
|
+
[position-monitor] WARNING: no price data for 553866 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3168
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3169
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.5h (closes after 24h continuous)
|
|
3170
|
+
[position-monitor] WARNING: no price data for 566188 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3171
|
+
[position-monitor] WARNING: no price data for 559651 NO — missing 0.5h (closes after 24h continuous)
|
|
3172
|
+
[position-monitor] WARNING: no price data for 561230 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3173
|
+
[position-monitor] WARNING: no price data for 561975 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3174
|
+
[position-monitor] WARNING: no price data for 561974 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3175
|
+
[position-monitor] WARNING: no price data for 567561 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3176
|
+
[position-monitor] checked=24 review_candidates=3 hard_stops=0 (moved>5% or <72h expiry)
|
|
3177
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3178
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3179
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3180
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3181
|
+
[scan] failed to fetch markets: fetch failed
|
|
3182
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3183
|
+
[position-monitor] WARNING: no price data for 559652 NO — missing 0.2h (closes after 24h continuous)
|
|
3184
|
+
[position-monitor] WARNING: no price data for 558936 YES — missing 0.2h (closes after 24h continuous)
|
|
3185
|
+
[position-monitor] WARNING: no price data for 553866 NO — missing 0.2h (closes after 24h continuous)
|
|
3186
|
+
[position-monitor] WARNING: no price data for 567689 NO — missing 0.2h (closes after 24h continuous)
|
|
3187
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.8h (closes after 24h continuous)
|
|
3188
|
+
[position-monitor] WARNING: no price data for 566188 NO — missing 0.2h (closes after 24h continuous)
|
|
3189
|
+
[position-monitor] WARNING: no price data for 559651 NO — missing 0.8h (closes after 24h continuous)
|
|
3190
|
+
[position-monitor] WARNING: no price data for 567621 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3191
|
+
[position-monitor] WARNING: no price data for 560317 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3192
|
+
[position-monitor] WARNING: no price data for 561975 NO — missing 0.2h (closes after 24h continuous)
|
|
3193
|
+
[position-monitor] WARNING: no price data for 561974 YES — missing 0.2h (closes after 24h continuous)
|
|
3194
|
+
[position-monitor] WARNING: no price data for 567687 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3195
|
+
[position-monitor] checked=24 review_candidates=4 hard_stops=0 (moved>5% or <72h expiry)
|
|
3196
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3197
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3198
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3199
|
+
[gamma] Loaded 496 markets (filtered from 500)
|
|
3200
|
+
[scan] 18 high-quality markets for autonomous review
|
|
3201
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3202
|
+
[expiring] 0 expiring markets for review
|
|
3203
|
+
[expiring] no expiring markets found this cycle
|
|
3204
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3205
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3206
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3207
|
+
[gamma] Loaded 496 markets (filtered from 500)
|
|
3208
|
+
[scan] 18 high-quality markets for autonomous review
|
|
3209
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3210
|
+
[expiring] 0 expiring markets for review
|
|
3211
|
+
[expiring] no expiring markets found this cycle
|
|
3212
|
+
[polly-gamba] Starting paper trading service
|
|
3213
|
+
[polly-gamba] Claude cwd: /Users/feral/polly-gamba
|
|
3214
|
+
[polly-gamba] Expiring trader cwd: /Users/feral/polly-gamba-expiring
|
|
3215
|
+
[coinbase-ws] Connecting to wss://ws-feed.exchange.coinbase.com
|
|
3216
|
+
[polly-gamba] Listening for BTC/ETH price signals (threshold: 0.5% in 60s)...
|
|
3217
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3218
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3219
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3220
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3221
|
+
[gamma] Loaded 496 markets (filtered from 500)
|
|
3222
|
+
[expiring] 0 expiring markets for review
|
|
3223
|
+
[expiring] no expiring markets found this cycle
|
|
3224
|
+
[gamma] Loaded 496 markets (filtered from 500)
|
|
3225
|
+
[scan] 18 high-quality markets for autonomous review
|
|
3226
|
+
[coinbase-ws] Connected
|
|
3227
|
+
[claude-trader:anthropic] ready
|
|
3228
|
+
[claude-trader:ollama] ready
|
|
3229
|
+
[claude-trader:expiring] ready
|
|
3230
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3231
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3232
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3233
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3234
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3235
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3236
|
+
[scan] failed to fetch markets: fetch failed
|
|
3237
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3238
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3239
|
+
[position-monitor] WARNING: no price data for 566140 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3240
|
+
[position-monitor] WARNING: no price data for 540819 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3241
|
+
[position-monitor] WARNING: no price data for 568629 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3242
|
+
[position-monitor] WARNING: no price data for 559652 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3243
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3244
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3245
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3246
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3247
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3248
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.2h (closes after 24h continuous)
|
|
3249
|
+
[position-monitor] WARNING: no price data for 566142 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3250
|
+
[position-monitor] WARNING: no price data for 561974 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3251
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3252
|
+
[gamma] Loaded 494 markets (filtered from 500)
|
|
3253
|
+
[scan] 18 high-quality markets for autonomous review
|
|
3254
|
+
[gamma] Loaded 494 markets (filtered from 500)
|
|
3255
|
+
[expiring] 0 expiring markets for review
|
|
3256
|
+
[expiring] no expiring markets found this cycle
|
|
3257
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3258
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3259
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3260
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3261
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3262
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3263
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3264
|
+
[position-monitor] WARNING: no price data for 566140 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3265
|
+
[position-monitor] WARNING: no price data for 540819 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3266
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.5h (closes after 24h continuous)
|
|
3267
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.3h (closes after 24h continuous)
|
|
3268
|
+
[position-monitor] WARNING: no price data for 559651 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3269
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3270
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3271
|
+
[scan] 18 high-quality markets for autonomous review
|
|
3272
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3273
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3274
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3275
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3276
|
+
[scan] failed to fetch markets: fetch failed
|
|
3277
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3278
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 0.3h (closes after 24h continuous)
|
|
3279
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.3h (closes after 24h continuous)
|
|
3280
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.3h (closes after 24h continuous)
|
|
3281
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.3h (closes after 24h continuous)
|
|
3282
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.8h (closes after 24h continuous)
|
|
3283
|
+
[position-monitor] WARNING: no price data for 553866 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3284
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3285
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.6h (closes after 24h continuous)
|
|
3286
|
+
[position-monitor] WARNING: no price data for 566188 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3287
|
+
[position-monitor] WARNING: no price data for 559651 NO — missing 0.3h (closes after 24h continuous)
|
|
3288
|
+
[position-monitor] WARNING: no price data for 560317 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3289
|
+
[position-monitor] WARNING: no price data for 561230 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3290
|
+
[position-monitor] WARNING: no price data for 561975 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3291
|
+
[position-monitor] WARNING: no price data for 561974 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3292
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3293
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3294
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3295
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3296
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3297
|
+
[scan] failed to fetch markets: fetch failed
|
|
3298
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3299
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 1.0h (closes after 24h continuous)
|
|
3300
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3301
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3302
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3303
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3304
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3305
|
+
[scan] failed to fetch markets: fetch failed
|
|
3306
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3307
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3308
|
+
[position-monitor] WARNING: no price data for 566140 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3309
|
+
[position-monitor] WARNING: no price data for 540819 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3310
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 1.3h (closes after 24h continuous)
|
|
3311
|
+
[position-monitor] WARNING: no price data for 559652 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3312
|
+
[position-monitor] WARNING: no price data for 558936 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3313
|
+
[position-monitor] WARNING: no price data for 553866 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3314
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3315
|
+
[position-monitor] WARNING: no price data for 566142 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3316
|
+
[position-monitor] checked=24 review_candidates=4 hard_stops=0 (moved>5% or <72h expiry)
|
|
3317
|
+
[gamma] Loaded 494 markets (filtered from 500)
|
|
3318
|
+
[expiring] 0 expiring markets for review
|
|
3319
|
+
[expiring] no expiring markets found this cycle
|
|
3320
|
+
[signal] BTC down -0.50% @ $68,410 over 59s
|
|
3321
|
+
[signal] BTC down 0.50% @ $68,410
|
|
3322
|
+
[match] 1 markets for BTC signal
|
|
3323
|
+
[signal] ETH down -0.62% @ $2,090.11 over 60s
|
|
3324
|
+
[signal] ETH down 0.62% @ $2,090.11
|
|
3325
|
+
[match] 20 markets for ETH signal
|
|
3326
|
+
[signal] ETH up 0.50% @ $2,100.59 over 47s
|
|
3327
|
+
[signal] ETH up 0.50% @ $2,100.59
|
|
3328
|
+
[match] 20 markets for ETH signal
|
|
3329
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3330
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3331
|
+
[scan] failed to fetch markets: fetch failed
|
|
3332
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3333
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3334
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3335
|
+
[expiring] 0 expiring markets for review
|
|
3336
|
+
[expiring] no expiring markets found this cycle
|
|
3337
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 0.2h (closes after 24h continuous)
|
|
3338
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.2h (closes after 24h continuous)
|
|
3339
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.2h (closes after 24h continuous)
|
|
3340
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.2h (closes after 24h continuous)
|
|
3341
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 1.5h (closes after 24h continuous)
|
|
3342
|
+
[position-monitor] WARNING: no price data for 553866 NO — missing 0.2h (closes after 24h continuous)
|
|
3343
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.2h (closes after 24h continuous)
|
|
3344
|
+
[position-monitor] WARNING: no price data for 567560 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3345
|
+
[position-monitor] WARNING: no price data for 567687 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3346
|
+
[position-monitor] WARNING: no price data for 562187 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3347
|
+
[position-monitor] checked=24 review_candidates=3 hard_stops=0 (moved>5% or <72h expiry)
|
|
3348
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3349
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3350
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3351
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3352
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3353
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 0.5h (closes after 24h continuous)
|
|
3354
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.5h (closes after 24h continuous)
|
|
3355
|
+
[position-monitor] WARNING: no price data for 559652 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3356
|
+
[position-monitor] WARNING: no price data for 558936 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3357
|
+
[position-monitor] WARNING: no price data for 553866 NO — missing 0.5h (closes after 24h continuous)
|
|
3358
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3359
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.5h (closes after 24h continuous)
|
|
3360
|
+
[position-monitor] WARNING: no price data for 540844 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3361
|
+
[position-monitor] WARNING: no price data for 553862 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3362
|
+
[position-monitor] WARNING: no price data for 562828 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3363
|
+
[position-monitor] WARNING: no price data for 566188 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3364
|
+
[position-monitor] WARNING: no price data for 559651 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3365
|
+
[position-monitor] WARNING: no price data for 567621 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3366
|
+
[position-monitor] WARNING: no price data for 560317 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3367
|
+
[position-monitor] WARNING: no price data for 561230 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3368
|
+
[position-monitor] WARNING: no price data for 561975 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3369
|
+
[position-monitor] WARNING: no price data for 561974 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3370
|
+
[position-monitor] WARNING: no price data for 567561 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3371
|
+
[position-monitor] WARNING: no price data for 567687 NO — missing 0.3h (closes after 24h continuous)
|
|
3372
|
+
[position-monitor] WARNING: no price data for 562187 YES — missing 0.3h (closes after 24h continuous)
|
|
3373
|
+
[position-monitor] checked=24 review_candidates=2 hard_stops=0 (moved>5% or <72h expiry)
|
|
3374
|
+
[scan] failed to fetch markets: terminated
|
|
3375
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3376
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3377
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3378
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3379
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 0.8h (closes after 24h continuous)
|
|
3380
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.8h (closes after 24h continuous)
|
|
3381
|
+
[position-monitor] WARNING: no price data for 566140 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3382
|
+
[position-monitor] WARNING: no price data for 540819 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3383
|
+
[position-monitor] WARNING: no price data for 568629 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3384
|
+
[position-monitor] WARNING: no price data for 553866 NO — missing 0.8h (closes after 24h continuous)
|
|
3385
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.8h (closes after 24h continuous)
|
|
3386
|
+
[position-monitor] WARNING: no price data for 562828 NO — missing 0.2h (closes after 24h continuous)
|
|
3387
|
+
[position-monitor] WARNING: no price data for 567561 NO — missing 0.2h (closes after 24h continuous)
|
|
3388
|
+
[position-monitor] WARNING: no price data for 567560 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3389
|
+
[position-monitor] WARNING: no price data for 567687 NO — missing 0.5h (closes after 24h continuous)
|
|
3390
|
+
[position-monitor] WARNING: no price data for 562187 YES — missing 0.5h (closes after 24h continuous)
|
|
3391
|
+
[position-monitor] checked=24 review_candidates=2 hard_stops=0 (moved>5% or <72h expiry)
|
|
3392
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3393
|
+
[scan] 18 high-quality markets for autonomous review
|
|
3394
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3395
|
+
[expiring] 0 expiring markets for review
|
|
3396
|
+
[expiring] no expiring markets found this cycle
|
|
3397
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3398
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3399
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3400
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3401
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3402
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 1.0h (closes after 24h continuous)
|
|
3403
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.2h (closes after 24h continuous)
|
|
3404
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.2h (closes after 24h continuous)
|
|
3405
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.2h (closes after 24h continuous)
|
|
3406
|
+
[position-monitor] WARNING: no price data for 559652 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3407
|
+
[position-monitor] WARNING: no price data for 558936 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3408
|
+
[position-monitor] WARNING: no price data for 553866 NO — missing 1.0h (closes after 24h continuous)
|
|
3409
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3410
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 1.0h (closes after 24h continuous)
|
|
3411
|
+
[position-monitor] WARNING: no price data for 540844 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3412
|
+
[position-monitor] WARNING: no price data for 553862 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3413
|
+
[position-monitor] WARNING: no price data for 562828 NO — missing 0.5h (closes after 24h continuous)
|
|
3414
|
+
[position-monitor] WARNING: no price data for 566188 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3415
|
+
[position-monitor] WARNING: no price data for 559651 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3416
|
+
[position-monitor] WARNING: no price data for 561974 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3417
|
+
[position-monitor] checked=24 review_candidates=3 hard_stops=0 (moved>5% or <72h expiry)
|
|
3418
|
+
[gamma] Loaded 494 markets (filtered from 500)
|
|
3419
|
+
[scan] 18 high-quality markets for autonomous review
|
|
3420
|
+
[signal] ETH up 0.50% @ $2,117.58 over 39s
|
|
3421
|
+
[signal] ETH up 0.50% @ $2,117.58
|
|
3422
|
+
[match] 20 markets for ETH signal
|
|
3423
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.4h (closes after 24h continuous)
|
|
3424
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.4h (closes after 24h continuous)
|
|
3425
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 1.2h (closes after 24h continuous)
|
|
3426
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3427
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3428
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3429
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3430
|
+
[scan] 18 high-quality markets for autonomous review
|
|
3431
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3432
|
+
[expiring] 0 expiring markets for review
|
|
3433
|
+
[expiring] no expiring markets found this cycle
|
|
3434
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3435
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3436
|
+
[scan] failed to fetch markets: fetch failed
|
|
3437
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3438
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3439
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3440
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3441
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3442
|
+
[position-monitor] WARNING: no price data for 566140 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3443
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.7h (closes after 24h continuous)
|
|
3444
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.7h (closes after 24h continuous)
|
|
3445
|
+
[position-monitor] WARNING: no price data for 553866 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3446
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3447
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 1.5h (closes after 24h continuous)
|
|
3448
|
+
[position-monitor] WARNING: no price data for 566188 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3449
|
+
[position-monitor] WARNING: no price data for 559651 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3450
|
+
[position-monitor] WARNING: no price data for 561975 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3451
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3452
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3453
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3454
|
+
[scan] failed to fetch markets: fetch failed
|
|
3455
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.2h (closes after 24h continuous)
|
|
3456
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.2h (closes after 24h continuous)
|
|
3457
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.9h (closes after 24h continuous)
|
|
3458
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.9h (closes after 24h continuous)
|
|
3459
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3460
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3461
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3462
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3463
|
+
[expiring] 0 expiring markets for review
|
|
3464
|
+
[expiring] no expiring markets found this cycle
|
|
3465
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3466
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3467
|
+
[scan] failed to fetch markets: fetch failed
|
|
3468
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3469
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.5h (closes after 24h continuous)
|
|
3470
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3471
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3472
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.5h (closes after 24h continuous)
|
|
3473
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 1.2h (closes after 24h continuous)
|
|
3474
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 1.2h (closes after 24h continuous)
|
|
3475
|
+
[position-monitor] WARNING: no price data for 558936 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3476
|
+
[position-monitor] WARNING: no price data for 553866 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3477
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3478
|
+
[position-monitor] WARNING: no price data for 566142 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3479
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3480
|
+
[gamma] Loaded 494 markets (filtered from 500)
|
|
3481
|
+
[expiring] 0 expiring markets for review
|
|
3482
|
+
[expiring] no expiring markets found this cycle
|
|
3483
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3484
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3485
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3486
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3487
|
+
[scan] failed to fetch markets: fetch failed
|
|
3488
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3489
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.8h (closes after 24h continuous)
|
|
3490
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.8h (closes after 24h continuous)
|
|
3491
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 1.5h (closes after 24h continuous)
|
|
3492
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 1.5h (closes after 24h continuous)
|
|
3493
|
+
[position-monitor] WARNING: no price data for 559652 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3494
|
+
[position-monitor] WARNING: no price data for 558936 YES — missing 0.3h (closes after 24h continuous)
|
|
3495
|
+
[position-monitor] WARNING: no price data for 553866 NO — missing 0.3h (closes after 24h continuous)
|
|
3496
|
+
[position-monitor] WARNING: no price data for 567689 NO — missing 0.3h (closes after 24h continuous)
|
|
3497
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.3h (closes after 24h continuous)
|
|
3498
|
+
[position-monitor] WARNING: no price data for 559651 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3499
|
+
[position-monitor] WARNING: no price data for 567621 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3500
|
+
[position-monitor] WARNING: no price data for 560317 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3501
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3502
|
+
[signal] ETH up 0.50% @ $2,119.9 over 57s
|
|
3503
|
+
[signal] ETH up 0.50% @ $2,119.9
|
|
3504
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3505
|
+
[gamma] Loaded 485 markets (filtered from 500)
|
|
3506
|
+
[match] 20 markets for ETH signal
|
|
3507
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3508
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3509
|
+
[scan] failed to fetch markets: fetch failed
|
|
3510
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3511
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3512
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 1.0h (closes after 24h continuous)
|
|
3513
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 1.0h (closes after 24h continuous)
|
|
3514
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 1.7h (closes after 24h continuous)
|
|
3515
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 1.7h (closes after 24h continuous)
|
|
3516
|
+
[position-monitor] WARNING: no price data for 559652 NO — missing 0.2h (closes after 24h continuous)
|
|
3517
|
+
[position-monitor] WARNING: no price data for 558936 YES — missing 0.5h (closes after 24h continuous)
|
|
3518
|
+
[position-monitor] WARNING: no price data for 553866 NO — missing 0.5h (closes after 24h continuous)
|
|
3519
|
+
[position-monitor] WARNING: no price data for 567689 NO — missing 0.5h (closes after 24h continuous)
|
|
3520
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.5h (closes after 24h continuous)
|
|
3521
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3522
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3523
|
+
[expiring] 0 expiring markets for review
|
|
3524
|
+
[expiring] no expiring markets found this cycle
|
|
3525
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3526
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3527
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3528
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3529
|
+
[scan] failed to fetch markets: fetch failed
|
|
3530
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3531
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 1.3h (closes after 24h continuous)
|
|
3532
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 2.0h (closes after 24h continuous)
|
|
3533
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 2.0h (closes after 24h continuous)
|
|
3534
|
+
[position-monitor] WARNING: no price data for 553866 NO — missing 0.8h (closes after 24h continuous)
|
|
3535
|
+
[position-monitor] WARNING: no price data for 567689 NO — missing 0.8h (closes after 24h continuous)
|
|
3536
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.8h (closes after 24h continuous)
|
|
3537
|
+
[position-monitor] WARNING: no price data for 553862 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3538
|
+
[position-monitor] WARNING: no price data for 562828 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3539
|
+
[position-monitor] WARNING: no price data for 566188 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3540
|
+
[position-monitor] WARNING: no price data for 559651 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3541
|
+
[position-monitor] WARNING: no price data for 567687 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3542
|
+
[position-monitor] checked=24 review_candidates=4 hard_stops=0 (moved>5% or <72h expiry)
|
|
3543
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3544
|
+
[expiring] 0 expiring markets for review
|
|
3545
|
+
[expiring] no expiring markets found this cycle
|
|
3546
|
+
[signal] ETH down -0.51% @ $2,099.41 over 43s
|
|
3547
|
+
[signal] ETH down 0.51% @ $2,099.41
|
|
3548
|
+
[match] 20 markets for ETH signal
|
|
3549
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 0.2h (closes after 24h continuous)
|
|
3550
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3551
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 1.5h (closes after 24h continuous)
|
|
3552
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 2.2h (closes after 24h continuous)
|
|
3553
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 2.2h (closes after 24h continuous)
|
|
3554
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3555
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3556
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3557
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3558
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3559
|
+
[gamma] Loaded 494 markets (filtered from 500)
|
|
3560
|
+
[scan] 18 high-quality markets for autonomous review
|
|
3561
|
+
[gamma] Loaded 494 markets (filtered from 500)
|
|
3562
|
+
[expiring] 0 expiring markets for review
|
|
3563
|
+
[expiring] no expiring markets found this cycle
|
|
3564
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.2h (closes after 24h continuous)
|
|
3565
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 1.7h (closes after 24h continuous)
|
|
3566
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 2.4h (closes after 24h continuous)
|
|
3567
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 2.4h (closes after 24h continuous)
|
|
3568
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3569
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3570
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3571
|
+
[gamma] Loaded 495 markets (filtered from 500)
|
|
3572
|
+
[scan] 18 high-quality markets for autonomous review
|
|
3573
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3574
|
+
[expiring] 0 expiring markets for review
|
|
3575
|
+
[expiring] no expiring markets found this cycle
|
|
3576
|
+
[coinbase-ws] Disconnected — reconnecting in 5s
|
|
3577
|
+
[coinbase-ws] Connecting to wss://ws-feed.exchange.coinbase.com
|
|
3578
|
+
[coinbase-ws] Connected
|
|
3579
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3580
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.5h (closes after 24h continuous)
|
|
3581
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 2.0h (closes after 24h continuous)
|
|
3582
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 2.7h (closes after 24h continuous)
|
|
3583
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 2.7h (closes after 24h continuous)
|
|
3584
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3585
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3586
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3587
|
+
[scan] failed to fetch markets: fetch failed
|
|
3588
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3589
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3590
|
+
[gamma] Loaded 472 markets (filtered from 500)
|
|
3591
|
+
[expiring] 0 expiring markets for review
|
|
3592
|
+
[expiring] no expiring markets found this cycle
|
|
3593
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3594
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3595
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3596
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3597
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3598
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 0.3h (closes after 24h continuous)
|
|
3599
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.8h (closes after 24h continuous)
|
|
3600
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 2.3h (closes after 24h continuous)
|
|
3601
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 3.0h (closes after 24h continuous)
|
|
3602
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 3.0h (closes after 24h continuous)
|
|
3603
|
+
[position-monitor] WARNING: no price data for 566142 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3604
|
+
[position-monitor] WARNING: no price data for 567621 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3605
|
+
[position-monitor] WARNING: no price data for 560317 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3606
|
+
[position-monitor] WARNING: no price data for 561230 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3607
|
+
[position-monitor] WARNING: no price data for 561975 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3608
|
+
[position-monitor] WARNING: no price data for 561974 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3609
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3610
|
+
[gamma] Loaded 472 markets (filtered from 500)
|
|
3611
|
+
[scan] 17 high-quality markets for autonomous review
|
|
3612
|
+
[position-monitor] checked=24 review_candidates=7 hard_stops=0 (moved>5% or <72h expiry)
|
|
3613
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3614
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3615
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3616
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3617
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3618
|
+
[gamma] Loaded 472 markets (filtered from 500)
|
|
3619
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3620
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3621
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3622
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3623
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3624
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3625
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3626
|
+
[position-monitor] WARNING: no price data for 566140 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3627
|
+
[position-monitor] WARNING: no price data for 540819 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3628
|
+
[position-monitor] WARNING: no price data for 568629 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3629
|
+
[position-monitor] WARNING: no price data for 558936 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3630
|
+
[position-monitor] WARNING: no price data for 553866 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3631
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3632
|
+
[position-monitor] WARNING: no price data for 566142 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3633
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3634
|
+
[gamma] Loaded 472 markets (filtered from 500)
|
|
3635
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3636
|
+
[gamma] Loaded 472 markets (filtered from 500)
|
|
3637
|
+
[expiring] 0 expiring markets for review
|
|
3638
|
+
[expiring] no expiring markets found this cycle
|
|
3639
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3640
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3641
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 0.2h (closes after 24h continuous)
|
|
3642
|
+
[position-monitor] WARNING: no price data for 567621 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3643
|
+
[position-monitor] WARNING: no price data for 561974 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3644
|
+
[position-monitor] WARNING: no price data for 567561 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3645
|
+
[position-monitor] WARNING: no price data for 562187 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3646
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3647
|
+
[gamma] Loaded 472 markets (filtered from 500)
|
|
3648
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3649
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3650
|
+
[expiring] 0 expiring markets for review
|
|
3651
|
+
[expiring] no expiring markets found this cycle
|
|
3652
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3653
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3654
|
+
[scan] failed to fetch markets: fetch failed
|
|
3655
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3656
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3657
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3658
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 0.5h (closes after 24h continuous)
|
|
3659
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3660
|
+
[position-monitor] WARNING: no price data for 566140 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3661
|
+
[position-monitor] WARNING: no price data for 540819 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3662
|
+
[position-monitor] WARNING: no price data for 568629 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3663
|
+
[position-monitor] WARNING: no price data for 566142 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3664
|
+
[position-monitor] WARNING: no price data for 567621 NO — missing 0.3h (closes after 24h continuous)
|
|
3665
|
+
[position-monitor] WARNING: no price data for 560317 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3666
|
+
[position-monitor] WARNING: no price data for 561230 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3667
|
+
[position-monitor] WARNING: no price data for 561975 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3668
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3669
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3670
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3671
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.2h (closes after 24h continuous)
|
|
3672
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.2h (closes after 24h continuous)
|
|
3673
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.2h (closes after 24h continuous)
|
|
3674
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.2h (closes after 24h continuous)
|
|
3675
|
+
[position-monitor] WARNING: no price data for 558936 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3676
|
+
[position-monitor] WARNING: no price data for 553866 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3677
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3678
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.2h (closes after 24h continuous)
|
|
3679
|
+
[position-monitor] WARNING: no price data for 559651 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3680
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3681
|
+
[gamma] Loaded 473 markets (filtered from 500)
|
|
3682
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3683
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3684
|
+
[expiring] 0 expiring markets for review
|
|
3685
|
+
[expiring] no expiring markets found this cycle
|
|
3686
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3687
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3688
|
+
[scan] failed to fetch markets: fetch failed
|
|
3689
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3690
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3691
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3692
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3693
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.5h (closes after 24h continuous)
|
|
3694
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.5h (closes after 24h continuous)
|
|
3695
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.5h (closes after 24h continuous)
|
|
3696
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.5h (closes after 24h continuous)
|
|
3697
|
+
[position-monitor] WARNING: no price data for 567689 NO — missing 0.3h (closes after 24h continuous)
|
|
3698
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.5h (closes after 24h continuous)
|
|
3699
|
+
[position-monitor] WARNING: no price data for 540844 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3700
|
+
[position-monitor] WARNING: no price data for 553862 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3701
|
+
[position-monitor] WARNING: no price data for 562828 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3702
|
+
[position-monitor] WARNING: no price data for 566188 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3703
|
+
[position-monitor] WARNING: no price data for 559651 NO — missing 0.3h (closes after 24h continuous)
|
|
3704
|
+
[position-monitor] WARNING: no price data for 567621 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3705
|
+
[position-monitor] WARNING: no price data for 561975 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3706
|
+
[position-monitor] WARNING: no price data for 562187 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3707
|
+
[position-monitor] checked=24 review_candidates=4 hard_stops=0 (moved>5% or <72h expiry)
|
|
3708
|
+
[position-monitor] checked=24 review_candidates=7 hard_stops=0 (moved>5% or <72h expiry)
|
|
3709
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3710
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3711
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3712
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3713
|
+
[gamma] Loaded 479 markets (filtered from 500)
|
|
3714
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3715
|
+
[gamma] Loaded 479 markets (filtered from 500)
|
|
3716
|
+
[expiring] 0 expiring markets for review
|
|
3717
|
+
[expiring] no expiring markets found this cycle
|
|
3718
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3719
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3720
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3721
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3722
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3723
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3724
|
+
[position-monitor] WARNING: no price data for 566140 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3725
|
+
[position-monitor] WARNING: no price data for 540819 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3726
|
+
[position-monitor] WARNING: no price data for 568629 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3727
|
+
[position-monitor] WARNING: no price data for 558936 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3728
|
+
[position-monitor] WARNING: no price data for 553866 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3729
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3730
|
+
[position-monitor] WARNING: no price data for 566142 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3731
|
+
[position-monitor] WARNING: no price data for 561230 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3732
|
+
[position-monitor] WARNING: no price data for 561975 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3733
|
+
[position-monitor] WARNING: no price data for 561974 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3734
|
+
[position-monitor] WARNING: no price data for 562187 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3735
|
+
[position-monitor] checked=24 review_candidates=4 hard_stops=0 (moved>5% or <72h expiry)
|
|
3736
|
+
[gamma] Loaded 497 markets (filtered from 500)
|
|
3737
|
+
[expiring] 0 expiring markets for review
|
|
3738
|
+
[expiring] no expiring markets found this cycle
|
|
3739
|
+
[gamma] Loaded 497 markets (filtered from 500)
|
|
3740
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3741
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3742
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3743
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3744
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3745
|
+
[expiring] failed to fetch markets: fetch failed
|
|
3746
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.3h (closes after 24h continuous)
|
|
3747
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.3h (closes after 24h continuous)
|
|
3748
|
+
[position-monitor] WARNING: no price data for 567689 NO — missing 0.3h (closes after 24h continuous)
|
|
3749
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.3h (closes after 24h continuous)
|
|
3750
|
+
[position-monitor] WARNING: no price data for 553862 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3751
|
+
[position-monitor] WARNING: no price data for 562828 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3752
|
+
[position-monitor] WARNING: no price data for 566188 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3753
|
+
[position-monitor] WARNING: no price data for 559651 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3754
|
+
[position-monitor] WARNING: no price data for 567561 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3755
|
+
[position-monitor] WARNING: no price data for 567560 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3756
|
+
[position-monitor] WARNING: no price data for 567687 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3757
|
+
[position-monitor] WARNING: no price data for 562187 YES — missing 0.3h (closes after 24h continuous)
|
|
3758
|
+
[position-monitor] checked=24 review_candidates=1 hard_stops=0 (moved>5% or <72h expiry)
|
|
3759
|
+
[gamma] Loaded 497 markets (filtered from 500)
|
|
3760
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3761
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3762
|
+
[position-monitor] WARNING: no price data for 566140 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3763
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.5h (closes after 24h continuous)
|
|
3764
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.5h (closes after 24h continuous)
|
|
3765
|
+
[position-monitor] WARNING: no price data for 567689 NO — missing 0.5h (closes after 24h continuous)
|
|
3766
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.5h (closes after 24h continuous)
|
|
3767
|
+
[position-monitor] WARNING: no price data for 559651 NO — missing 0.2h (closes after 24h continuous)
|
|
3768
|
+
[position-monitor] WARNING: no price data for 567560 YES — missing 0.2h (closes after 24h continuous)
|
|
3769
|
+
[position-monitor] WARNING: no price data for 562187 YES — missing 0.5h (closes after 24h continuous)
|
|
3770
|
+
[position-monitor] checked=24 review_candidates=4 hard_stops=0 (moved>5% or <72h expiry)
|
|
3771
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3772
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3773
|
+
[gamma] Loaded 497 markets (filtered from 500)
|
|
3774
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3775
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3776
|
+
[expiring] 0 expiring markets for review
|
|
3777
|
+
[expiring] no expiring markets found this cycle
|
|
3778
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.7h (closes after 24h continuous)
|
|
3779
|
+
[position-monitor] WARNING: no price data for 566188 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3780
|
+
[position-monitor] WARNING: no price data for 559651 NO — missing 0.4h (closes after 24h continuous)
|
|
3781
|
+
[position-monitor] WARNING: no price data for 561974 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3782
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3783
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3784
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3785
|
+
[gamma] Loaded 497 markets (filtered from 500)
|
|
3786
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3787
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3788
|
+
[expiring] 0 expiring markets for review
|
|
3789
|
+
[expiring] no expiring markets found this cycle
|
|
3790
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3791
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3792
|
+
[position-monitor] WARNING: no price data for 566140 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3793
|
+
[position-monitor] WARNING: no price data for 540819 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3794
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.9h (closes after 24h continuous)
|
|
3795
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3796
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3797
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3798
|
+
[gamma] Loaded 497 markets (filtered from 500)
|
|
3799
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3800
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3801
|
+
[expiring] 0 expiring markets for review
|
|
3802
|
+
[expiring] no expiring markets found this cycle
|
|
3803
|
+
[position-monitor] checked=24 review_candidates=7 hard_stops=0 (moved>5% or <72h expiry)
|
|
3804
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3805
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3806
|
+
[gamma] Loaded 497 markets (filtered from 500)
|
|
3807
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3808
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3809
|
+
[expiring] 0 expiring markets for review
|
|
3810
|
+
[expiring] no expiring markets found this cycle
|
|
3811
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3812
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3813
|
+
[scan] failed to fetch markets: fetch failed
|
|
3814
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3815
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3816
|
+
[position-monitor] WARNING: no price data for 568629 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3817
|
+
[position-monitor] WARNING: no price data for 559652 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3818
|
+
[position-monitor] WARNING: no price data for 553866 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3819
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3820
|
+
[position-monitor] WARNING: no price data for 566142 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3821
|
+
[position-monitor] WARNING: no price data for 559651 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3822
|
+
[position-monitor] WARNING: no price data for 561230 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3823
|
+
[position-monitor] WARNING: no price data for 561974 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3824
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3825
|
+
[gamma] Loaded 497 markets (filtered from 500)
|
|
3826
|
+
[expiring] 0 expiring markets for review
|
|
3827
|
+
[expiring] no expiring markets found this cycle
|
|
3828
|
+
[position-monitor] checked=24 review_candidates=7 hard_stops=0 (moved>5% or <72h expiry)
|
|
3829
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3830
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3831
|
+
[gamma] Loaded 497 markets (filtered from 500)
|
|
3832
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3833
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3834
|
+
[expiring] 0 expiring markets for review
|
|
3835
|
+
[expiring] no expiring markets found this cycle
|
|
3836
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3837
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3838
|
+
[position-monitor] WARNING: no price data for 566140 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3839
|
+
[position-monitor] WARNING: no price data for 540819 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3840
|
+
[position-monitor] WARNING: no price data for 568629 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3841
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3842
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3843
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3844
|
+
[gamma] Loaded 497 markets (filtered from 500)
|
|
3845
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3846
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3847
|
+
[expiring] 0 expiring markets for review
|
|
3848
|
+
[expiring] no expiring markets found this cycle
|
|
3849
|
+
[coinbase-ws] Disconnected — reconnecting in 5s
|
|
3850
|
+
[coinbase-ws] Connecting to wss://ws-feed.exchange.coinbase.com
|
|
3851
|
+
[coinbase-ws] Connected
|
|
3852
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 0.3h (closes after 24h continuous)
|
|
3853
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.3h (closes after 24h continuous)
|
|
3854
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.3h (closes after 24h continuous)
|
|
3855
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.3h (closes after 24h continuous)
|
|
3856
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.3h (closes after 24h continuous)
|
|
3857
|
+
[position-monitor] WARNING: no price data for 566142 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3858
|
+
[position-monitor] WARNING: no price data for 559651 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3859
|
+
[position-monitor] WARNING: no price data for 561230 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3860
|
+
[position-monitor] WARNING: no price data for 567561 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3861
|
+
[position-monitor] checked=24 review_candidates=5 hard_stops=0 (moved>5% or <72h expiry)
|
|
3862
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3863
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3864
|
+
[gamma] Loaded 497 markets (filtered from 500)
|
|
3865
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3866
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3867
|
+
[expiring] 0 expiring markets for review
|
|
3868
|
+
[expiring] no expiring markets found this cycle
|
|
3869
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3870
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3871
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3872
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3873
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 0.6h (closes after 24h continuous)
|
|
3874
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.6h (closes after 24h continuous)
|
|
3875
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.6h (closes after 24h continuous)
|
|
3876
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.6h (closes after 24h continuous)
|
|
3877
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.6h (closes after 24h continuous)
|
|
3878
|
+
[position-monitor] WARNING: no price data for 559652 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3879
|
+
[position-monitor] WARNING: no price data for 553866 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3880
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3881
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.3h (closes after 24h continuous)
|
|
3882
|
+
[position-monitor] WARNING: no price data for 553862 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3883
|
+
[position-monitor] WARNING: no price data for 566188 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3884
|
+
[position-monitor] WARNING: no price data for 559651 NO — missing 0.3h (closes after 24h continuous)
|
|
3885
|
+
[position-monitor] WARNING: no price data for 561974 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3886
|
+
[position-monitor] WARNING: no price data for 567561 NO — missing 0.3h (closes after 24h continuous)
|
|
3887
|
+
[position-monitor] checked=24 review_candidates=4 hard_stops=0 (moved>5% or <72h expiry)
|
|
3888
|
+
[gamma] Loaded 497 markets (filtered from 500)
|
|
3889
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3890
|
+
[gamma] Loaded 497 markets (filtered from 500)
|
|
3891
|
+
[expiring] 0 expiring markets for review
|
|
3892
|
+
[expiring] no expiring markets found this cycle
|
|
3893
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3894
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3895
|
+
[gamma] Loaded 498 markets (filtered from 500)
|
|
3896
|
+
[scan] 16 high-quality markets for autonomous review
|
|
3897
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 0.8h (closes after 24h continuous)
|
|
3898
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 0.8h (closes after 24h continuous)
|
|
3899
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.8h (closes after 24h continuous)
|
|
3900
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 0.8h (closes after 24h continuous)
|
|
3901
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 0.8h (closes after 24h continuous)
|
|
3902
|
+
[position-monitor] WARNING: no price data for 553866 NO — missing 0.2h (closes after 24h continuous)
|
|
3903
|
+
[position-monitor] WARNING: no price data for 566142 NO — missing 0.5h (closes after 24h continuous)
|
|
3904
|
+
[position-monitor] WARNING: no price data for 562828 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3905
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3906
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3907
|
+
[expiring] 0 expiring markets for review
|
|
3908
|
+
[expiring] no expiring markets found this cycle
|
|
3909
|
+
[position-monitor] WARNING: no price data for 553830 NO — missing 1.0h (closes after 24h continuous)
|
|
3910
|
+
[position-monitor] WARNING: no price data for 558934 YES — missing 1.0h (closes after 24h continuous)
|
|
3911
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 1.0h (closes after 24h continuous)
|
|
3912
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 1.0h (closes after 24h continuous)
|
|
3913
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 1.0h (closes after 24h continuous)
|
|
3914
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3915
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3916
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3917
|
+
[gamma] Loaded 498 markets (filtered from 500)
|
|
3918
|
+
[scan] 17 high-quality markets for autonomous review
|
|
3919
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3920
|
+
[expiring] 0 expiring markets for review
|
|
3921
|
+
[expiring] no expiring markets found this cycle
|
|
3922
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 1.3h (closes after 24h continuous)
|
|
3923
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 1.3h (closes after 24h continuous)
|
|
3924
|
+
[position-monitor] WARNING: no price data for 567689 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3925
|
+
[position-monitor] WARNING: no price data for 540844 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3926
|
+
[position-monitor] WARNING: no price data for 567561 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3927
|
+
[position-monitor] WARNING: no price data for 567560 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3928
|
+
[position-monitor] checked=24 review_candidates=4 hard_stops=0 (moved>5% or <72h expiry)
|
|
3929
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3930
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3931
|
+
[gamma] Loaded 498 markets (filtered from 500)
|
|
3932
|
+
[scan] 17 high-quality markets for autonomous review
|
|
3933
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3934
|
+
[expiring] 0 expiring markets for review
|
|
3935
|
+
[expiring] no expiring markets found this cycle
|
|
3936
|
+
[position-monitor] WARNING: no price data for 558934 YES — first miss recorded, watching (market may be resolved or delisted)
|
|
3937
|
+
[position-monitor] WARNING: no price data for 566140 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3938
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 1.5h (closes after 24h continuous)
|
|
3939
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 1.5h (closes after 24h continuous)
|
|
3940
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3941
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3942
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3943
|
+
[scan] failed to fetch markets: fetch failed
|
|
3944
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3945
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3946
|
+
[gamma] Loaded 498 markets (filtered from 500)
|
|
3947
|
+
[expiring] 0 expiring markets for review
|
|
3948
|
+
[expiring] no expiring markets found this cycle
|
|
3949
|
+
[position-monitor] WARNING: no price data for 553830 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3950
|
+
[position-monitor] WARNING: no price data for 566140 NO — missing 0.3h (closes after 24h continuous)
|
|
3951
|
+
[position-monitor] WARNING: no price data for 540819 NO — missing 1.8h (closes after 24h continuous)
|
|
3952
|
+
[position-monitor] WARNING: no price data for 568629 YES — missing 1.8h (closes after 24h continuous)
|
|
3953
|
+
[position-monitor] WARNING: no price data for 553866 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3954
|
+
[position-monitor] WARNING: no price data for 559651 NO — first miss recorded, watching (market may be resolved or delisted)
|
|
3955
|
+
[position-monitor] checked=24 review_candidates=6 hard_stops=0 (moved>5% or <72h expiry)
|
|
3956
|
+
[scan] fetching high-quality markets (vol24h>$50k, liq>$50k, price 0.10-0.90)
|
|
3957
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3958
|
+
[scan] failed to fetch markets: fetch failed
|
|
3959
|
+
[expiring] fetching expiring markets (closing within 72h, vol24h>$10k, liq>$10k, price 0.05-0.95)
|
|
3960
|
+
[gamma] Fetching active markets from https://gamma-api.polymarket.com/markets?active=true&closed=false&limit=500
|
|
3961
|
+
[gamma] Loaded 498 markets (filtered from 500)
|
|
3962
|
+
[expiring] 0 expiring markets for review
|
|
3963
|
+
[expiring] no expiring markets found this cycle
|
package/src/claude-trader.ts
CHANGED
|
@@ -239,6 +239,7 @@ ${m.description ? `- Description: ${m.description.slice(0, 200)}` : ''}`).join('
|
|
|
239
239
|
- MAX 2 open positions per underlying theme. If you already have 2+ open positions in the same theme, SKIP all new markets in that theme regardless of apparent edge.
|
|
240
240
|
- Correlation examples: "Will Jesus return before GTA VI", "Will BTC hit $1M before GTA VI", "Will China invade Taiwan before GTA VI" — all three resolve based on GTA VI's release date. They are the SAME theme.
|
|
241
241
|
- Similarly: "Will Orbán be PM" and "Will Magyar be PM" are both the Hungary 2026 election — treat as same theme (you may hold both as a hedge pair, but do not add a third Hungary position).
|
|
242
|
+
- IMPORTANT: All 2028 US election markets share one theme — "2028 US election". This includes: Dem primary nominees (Newsom, Harris, etc.), Rep primary nominees (Vance, Rubio, etc.), and the general election winner. Do NOT hold more than 2 positions across this entire cycle.
|
|
242
243
|
- If you're uncertain whether a market correlates to an existing theme, assume it does and skip.
|
|
243
244
|
|
|
244
245
|
## CLOSED MARKET DISCIPLINE (absolute rule — never override):
|
|
@@ -253,8 +254,8 @@ ${m.description ? `- Description: ${m.description.slice(0, 200)}` : ''}`).join('
|
|
|
253
254
|
- Anchor fair value on base rates and world knowledge first; use sportsbooks to adjust by ±5pp only. If you cannot defend the estimate without the sportsbook line, the edge is too speculative.
|
|
254
255
|
- Exception: if both Polymarket AND sportsbooks agree with your base-rate analysis, the convergence strengthens the thesis.
|
|
255
256
|
|
|
256
|
-
STEP 1: Call get_positions
|
|
257
|
-
STEP 2: For each market,
|
|
257
|
+
STEP 1: Call get_positions. Then output a THEME CONCENTRATION TABLE — list every theme with ≥1 open position, showing count/max (e.g. "2028 US election: 3/2 FULL", "GTA VI: 2/2 FULL", "Hungary 2026 election: 1/2"). Any theme showing FULL must be skipped entirely. You MUST output this table before evaluating any market.
|
|
258
|
+
STEP 2: For each market, check your theme concentration table first. If the market's theme is FULL, skip it immediately. Otherwise apply horizon discipline, closed market discipline, and edge check.
|
|
258
259
|
STEP 3: If price differs from your fair probability by the required edge (accounting for sportsbook haircut if applicable), place a trade ($10 USDC). Call skip_all only if you have zero opinion on all markets.`
|
|
259
260
|
|
|
260
261
|
const msg = JSON.stringify({
|
|
@@ -350,7 +351,12 @@ For EVERY market above: if price differs from fair probability by >8%, place a t
|
|
|
350
351
|
|
|
351
352
|
const prompt = `## Position Review — ${new Date().toISOString()}
|
|
352
353
|
|
|
353
|
-
|
|
354
|
+
## STEP 0 — CONCENTRATION AUDIT (do this BEFORE reviewing individual positions):
|
|
355
|
+
Call get_positions to get the FULL list of all open positions. Count positions by underlying theme (see Rule 8 definition below). If ANY theme has 3+ open positions, immediately close the excess ones (starting with the one whose current price is closest to 50/50) until the theme has ≤2 positions. Do NOT wait — close them now before proceeding. If you have 4 positions in a theme, you must close 2.
|
|
356
|
+
|
|
357
|
+
## Review Candidates (${positionLines.split('###').length - 1} positions that moved >5% or expire within 72h):
|
|
358
|
+
|
|
359
|
+
Review each candidate below. For each: check whether the exit trigger has been met AND use world knowledge to assess thesis.
|
|
354
360
|
|
|
355
361
|
${positionLines}
|
|
356
362
|
|
|
@@ -362,7 +368,7 @@ CLOSE RULES — apply ALL that match, no thesis override allowed:
|
|
|
362
368
|
5. You have 2+ open positions in the SAME market with the SAME outcome — close the NEWER entry (higher ts value) regardless of P&L. Duplicate same-outcome positions double exposure without incremental edge. Keep the original entry.
|
|
363
369
|
6. Position is UP >25% from entry AND has been held >48h — CLOSE to lock in profits. The market has moved significantly in your favor; gains are now vulnerable to reversion. Use take_profit reason. Exception: if the resolution event is within 7 days AND the position is still clearly on the right side, you may hold until resolution.
|
|
364
370
|
7. STALE POSITION: Position held >7 days AND price has moved <5% from entry AND resolution event is >30 days away — CLOSE to redeploy capital. A position that doesn't move over 7 days means the mispricing wasn't as large as estimated. Cut it, accept the small loss/gain, and redeploy to markets with active price movement.
|
|
365
|
-
8. CONCENTRATION VIOLATION: Count open positions by underlying theme (the single real-world event that resolves all of them). Examples: "Will Jesus return before GTA VI", "Will BTC hit $1M before GTA VI", "Will China invade Taiwan before GTA VI" all share the theme "GTA VI release date". Similarly "Will Spurs win NBA Finals", "Will OKC win NBA Finals", "Will Celtics win NBA Finals" all share the theme "2026 NBA Finals". If you have 3+ positions in the same theme
|
|
371
|
+
8. CONCENTRATION VIOLATION: Count open positions by underlying theme (the single real-world event that resolves all of them). Examples: "Will Jesus return before GTA VI", "Will BTC hit $1M before GTA VI", "Will China invade Taiwan before GTA VI" all share the theme "GTA VI release date". Similarly "Will Spurs win NBA Finals", "Will OKC win NBA Finals", "Will Celtics win NBA Finals" all share the theme "2026 NBA Finals". IMPORTANT: All positions tied to the 2028 US election cycle share one theme — "2028 US election". This includes: 2028 Dem primary nominees (Newsom, etc.), 2028 Rep primary nominees (Vance, Rubio, etc.), and the 2028 general election winner — regardless of which stage of the race resolves each market. If you have 3+ positions in the same theme: close positions one by one (starting with the one whose current price is closest to 50/50) until you have ≤2 in that theme. If you have 4, you must close 2. If you have 5, close 3. Do NOT stop after closing just one if the theme still has 3+ positions. Apply this BEFORE checking other rules. This check requires the FULL position list — which is why Step 0 mandates calling get_positions first.
|
|
366
372
|
9. SPORTSBOOK THESIS DECAY: If the original reasoning cited a sportsbook cross-reference (e.g. "sportsbooks imply X%, Polymarket shows Y%") AND the position is currently down >20%: estimate current sportsbook consensus from your world knowledge. If the original sportsbook-Polymarket gap has narrowed by >60% (e.g. original 15pp gap is now ≤6pp), the arbitrage thesis is exhausted — CLOSE with reason "thesis_decayed". Do not continue holding through hard stops when the original edge is structurally gone.
|
|
367
373
|
|
|
368
374
|
HOLD RULES: If NONE of the close rules apply and exit trigger NOT triggered, do nothing (no output needed).
|