Claim this agent
Agent DossierCLAWHUBSafety 84/100

Xpersona Agent

Prediction Trade Journal

Auto-log trades with context, track outcomes, generate calibration reports to improve trading. Skill: Prediction Trade Journal Owner: adlai88 Summary: Auto-log trades with context, track outcomes, generate calibration reports to improve trading. Tags: latest:1.1.10 Version history: v1.1.10 | 2026-02-27T10:22:47.697Z | auto - Added a "difficulty: beginner" field to SKILL.md for clearer guidance. - No functional or command changes; documentation improvement only. v1.1.9 | 2026-02-27T03:59:32.149Z | user Sync v1.

OpenClaw ยท self-declared
682 downloadsTrust evidence available
clawhub skill install kn7axnp7bzqsf5fkx0z8px7han7zyq1x:prediction-trade-journal

Overall rank

#62

Adoption

682 downloads

Trust

Unknown

Freshness

Mar 1, 2026

Freshness

Last checked Mar 1, 2026

Best For

Prediction Trade Journal is best for general automation workflows where OpenClaw compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, CLAWHUB, runtime-metrics, public facts pack

Overview

Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.

Verifiededitorial-content

Overview

Executive Summary

Auto-log trades with context, track outcomes, generate calibration reports to improve trading. Skill: Prediction Trade Journal Owner: adlai88 Summary: Auto-log trades with context, track outcomes, generate calibration reports to improve trading. Tags: latest:1.1.10 Version history: v1.1.10 | 2026-02-27T10:22:47.697Z | auto - Added a "difficulty: beginner" field to SKILL.md for clearer guidance. - No functional or command changes; documentation improvement only. v1.1.9 | 2026-02-27T03:59:32.149Z | user Sync v1. Capability contract not published. No trust telemetry is available yet. 682 downloads reported by the source. Last updated 4/15/2026.

No verified compatibility signals682 downloads

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Mar 1, 2026

Vendor

Clawhub

Artifacts

0

Benchmarks

0

Last release

1.1.10

Install & run

Setup Snapshot

clawhub skill install kn7axnp7bzqsf5fkx0z8px7han7zyq1x:prediction-trade-journal
  1. 1

    Setup complexity is classified as HIGH. You must provision dedicated cloud infrastructure or an isolated VM. Do not run this directly on your local workstation.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence & Timeline

Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.

Verifiededitorial-content

Public facts

Evidence Ledger

Vendor (1)

Vendor

Clawhub

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Release (1)

Latest release

1.1.10

releasemedium
Observed Feb 27, 2026Source linkProvenance
Adoption (1)

Adoption signal

682 downloads

profilemedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance

Artifacts & Docs

Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.

Self-declaredCLAWHUB

Captured outputs

Artifacts Archive

Extracted files

2

Examples

6

Snippets

0

Languages

Unknown

Executable Examples

bash

# Sync trades from API
python tradejournal.py --sync

# Show recent trades
python tradejournal.py --history 10

# Generate weekly report
python tradejournal.py --report weekly

# Export to CSV
python tradejournal.py --export trades.csv

json

{
  "trades": [{
    "id": "uuid",
    "market_question": "Will X happen?",
    "side": "yes",
    "shares": 10.5,
    "cost": 6.83,
    "outcome": {
      "resolved": false,
      "winning_side": null,
      "pnl_usd": null
    }
  }],
  "metadata": {
    "last_sync": "2025-01-29T...",
    "total_trades": 50
  }
}

python

from tradejournal import log_trade

# After executing a trade
log_trade(
    trade_id=result['trade_id'],
    source="copytrading",
    thesis="Mirroring whale 0x123...",
    confidence=0.70
)

text

๐Ÿ““ Weekly Report
========================================
Period: Last 7 days
Trades: 15
Total cost: $125.50
Resolved: 8 / 15
Win rate: 62.5%
P&L: +$18.30

By side: 10 YES, 5 NO

bash

# Sync trades from API
python tradejournal.py --sync

# Show recent trades
python tradejournal.py --history 10

# Generate weekly report
python tradejournal.py --report weekly

# Export to CSV
python tradejournal.py --export trades.csv

json

{
  "trades": [{
    "id": "uuid",
    "market_question": "Will X happen?",
    "side": "yes",
    "shares": 10.5,
    "cost": 6.83,
    "outcome": {
      "resolved": false,
      "winning_side": null,
      "pnl_usd": null
    }
  }],
  "metadata": {
    "last_sync": "2025-01-29T...",
    "total_trades": 50
  }
}
Extracted Files

SKILL.md

---
name: prediction-trade-journal
displayName: Prediction Trade Journal
description: Auto-log trades with context, track outcomes, generate calibration reports to improve trading.
metadata: {"clawdbot":{"emoji":"๐Ÿ““","requires":{"env":["SIMMER_API_KEY"],"pip":["simmer-sdk"]},"cron":null,"autostart":false}}
authors:
  - Simmer (@simmer_markets)
version: "1.1.8"
difficulty: beginner
published: true
---

# Prediction Trade Journal

Track every trade, learn from outcomes, improve your edge.

## When to Use This Skill

Use this skill when the user wants to:
- See their trade history
- Track win rate and P&L
- Generate trading reports
- Analyze which strategies work best

## Quick Commands

```bash
# Sync trades from API
python tradejournal.py --sync

# Show recent trades
python tradejournal.py --history 10

# Generate weekly report
python tradejournal.py --report weekly

# Export to CSV
python tradejournal.py --export trades.csv
```

**API Reference:**
- Base URL: `https://api.simmer.markets`
- Auth: `Authorization: Bearer $SIMMER_API_KEY`
- Trades: `GET /api/sdk/trades`

## How It Works

1. **Sync** - Polls `/api/sdk/trades` to fetch trade history
2. **Store** - Saves trades locally with outcome tracking
3. **Track** - Updates outcomes when markets resolve
4. **Report** - Generates win rate, P&L, and calibration analysis

## CLI Reference

| Command | Description |
|---------|-------------|
| `--sync` | Fetch new trades from API |
| `--history N` | Show last N trades (default: 10) |
| `--sync-outcomes` | Update resolved markets |
| `--report daily/weekly/monthly` | Generate summary report |
| `--config` | Show configuration |
| `--export FILE.csv` | Export to CSV |
| `--dry-run` | Preview without making changes |

## Configuration

| Setting | Environment Variable | Default |
|---------|---------------------|---------|
| API Key | `SIMMER_API_KEY` | (required) |

## Storage

Trades are stored locally in `data/trades.json`:

```json
{
  "trades": [{
    "id": "uuid",
    "market_question": "Will X happen?",
    "side": "yes",
    "shares": 10.5,
    "cost": 6.83,
    "outcome": {
      "resolved": false,
      "winning_side": null,
      "pnl_usd": null
    }
  }],
  "metadata": {
    "last_sync": "2025-01-29T...",
    "total_trades": 50
  }
}
```

## Skill Integration

Other skills can enrich trades with context:

```python
from tradejournal import log_trade

# After executing a trade
log_trade(
    trade_id=result['trade_id'],
    source="copytrading",
    thesis="Mirroring whale 0x123...",
    confidence=0.70
)
```

This adds thesis, confidence, and source to the trade record for better analysis.

## Example Report

```
๐Ÿ““ Weekly Report
========================================
Period: Last 7 days
Trades: 15
Total cost: $125.50
Resolved: 8 / 15
Win rate: 62.5%
P&L: +$18.30

By side: 10 YES, 5 NO
```

## Troubleshooting

**"SIMMER_API_KEY environment variable not set"**
- Set your API key: `export SIMMER_API_KEY=sk_live_...`

**"No trades recorded ye

_meta.json

{
  "ownerId": "kn7axnp7bzqsf5fkx0z8px7han7zyq1x",
  "slug": "prediction-trade-journal",
  "version": "1.1.10",
  "publishedAt": 1772187767697
}

Editorial read

Docs & README

Docs source

CLAWHUB

Editorial quality

ready

Auto-log trades with context, track outcomes, generate calibration reports to improve trading. Skill: Prediction Trade Journal Owner: adlai88 Summary: Auto-log trades with context, track outcomes, generate calibration reports to improve trading. Tags: latest:1.1.10 Version history: v1.1.10 | 2026-02-27T10:22:47.697Z | auto - Added a "difficulty: beginner" field to SKILL.md for clearer guidance. - No functional or command changes; documentation improvement only. v1.1.9 | 2026-02-27T03:59:32.149Z | user Sync v1.

Full README

Skill: Prediction Trade Journal

Owner: adlai88

Summary: Auto-log trades with context, track outcomes, generate calibration reports to improve trading.

Tags: latest:1.1.10

Version history:

v1.1.10 | 2026-02-27T10:22:47.697Z | auto

  • Added a "difficulty: beginner" field to SKILL.md for clearer guidance.
  • No functional or command changes; documentation improvement only.

v1.1.9 | 2026-02-27T03:59:32.149Z | user

Sync

v1.1.8 | 2026-02-25T13:56:12.834Z | auto

No changes detected in this version.

  • Version number remains the same: 1.1.7
  • No file or documentation updates
  • No new features or bug fixes added

v1.1.7 | 2026-02-25T13:49:32.127Z | auto

  • Added simmer-sdk as a required package in metadata for installation.
  • Updated version number to 1.1.7 in the documentation.

v1.1.6 | 2026-02-24T13:44:13.596Z | auto

  • Updated version number to 1.1.5 in documentation.
  • No functional changes; SKILL.md file version metadata was incremented for consistency.

v1.1.5 | 2026-02-17T07:53:44.380Z | auto

  • Updated documentation to remove the API URL configuration option and default; API key is now the only documented required environment variable.
  • Bumped version from 1.1.3 to 1.1.4 in SKILL.md.

v1.1.4 | 2026-02-17T07:00:27.516Z | auto

  • Updated version number from 1.1.2 to 1.1.3 in SKILL.md.
  • No other functional or documentation changes.

v1.1.3 | 2026-02-17T06:36:19.188Z | auto

  • Removed the local sample data file data/trades.json.
  • No user-facing functionality or documentation changes.

v1.1.2 | 2026-02-14T14:59:29.296Z | auto

  • Improved documentation with clear usage instructions, command reference, and integration examples.
  • Detailed description of features: auto-logging trades, tracking outcomes, and generating calibration reports.
  • Added explicit CLI command documentation and example JSON data structure.
  • Provided troubleshooting tips for common setup issues.
  • Listed environment variables and configuration requirements.

Archive index:

Archive v1.1.10: 4 files, 8763 bytes

Files: scripts/status.py (477b), SKILL.md (3179b), tradejournal.py (21822b), _meta.json (144b)

File v1.1.10:SKILL.md


name: prediction-trade-journal displayName: Prediction Trade Journal description: Auto-log trades with context, track outcomes, generate calibration reports to improve trading. metadata: {"clawdbot":{"emoji":"๐Ÿ““","requires":{"env":["SIMMER_API_KEY"],"pip":["simmer-sdk"]},"cron":null,"autostart":false}} authors:

  • Simmer (@simmer_markets) version: "1.1.8" difficulty: beginner published: true

Prediction Trade Journal

Track every trade, learn from outcomes, improve your edge.

When to Use This Skill

Use this skill when the user wants to:

  • See their trade history
  • Track win rate and P&L
  • Generate trading reports
  • Analyze which strategies work best

Quick Commands

# Sync trades from API
python tradejournal.py --sync

# Show recent trades
python tradejournal.py --history 10

# Generate weekly report
python tradejournal.py --report weekly

# Export to CSV
python tradejournal.py --export trades.csv

API Reference:

  • Base URL: https://api.simmer.markets
  • Auth: Authorization: Bearer $SIMMER_API_KEY
  • Trades: GET /api/sdk/trades

How It Works

  1. Sync - Polls /api/sdk/trades to fetch trade history
  2. Store - Saves trades locally with outcome tracking
  3. Track - Updates outcomes when markets resolve
  4. Report - Generates win rate, P&L, and calibration analysis

CLI Reference

| Command | Description | |---------|-------------| | --sync | Fetch new trades from API | | --history N | Show last N trades (default: 10) | | --sync-outcomes | Update resolved markets | | --report daily/weekly/monthly | Generate summary report | | --config | Show configuration | | --export FILE.csv | Export to CSV | | --dry-run | Preview without making changes |

Configuration

| Setting | Environment Variable | Default | |---------|---------------------|---------| | API Key | SIMMER_API_KEY | (required) |

Storage

Trades are stored locally in data/trades.json:

{
  "trades": [{
    "id": "uuid",
    "market_question": "Will X happen?",
    "side": "yes",
    "shares": 10.5,
    "cost": 6.83,
    "outcome": {
      "resolved": false,
      "winning_side": null,
      "pnl_usd": null
    }
  }],
  "metadata": {
    "last_sync": "2025-01-29T...",
    "total_trades": 50
  }
}

Skill Integration

Other skills can enrich trades with context:

from tradejournal import log_trade

# After executing a trade
log_trade(
    trade_id=result['trade_id'],
    source="copytrading",
    thesis="Mirroring whale 0x123...",
    confidence=0.70
)

This adds thesis, confidence, and source to the trade record for better analysis.

Example Report

๐Ÿ““ Weekly Report
========================================
Period: Last 7 days
Trades: 15
Total cost: $125.50
Resolved: 8 / 15
Win rate: 62.5%
P&L: +$18.30

By side: 10 YES, 5 NO

Troubleshooting

"SIMMER_API_KEY environment variable not set"

  • Set your API key: export SIMMER_API_KEY=sk_live_...

"No trades recorded yet"

  • Run python tradejournal.py --sync to fetch trades from API

Trades not showing outcomes

  • Run python tradejournal.py --sync-outcomes to update resolved markets

File v1.1.10:_meta.json

{ "ownerId": "kn7axnp7bzqsf5fkx0z8px7han7zyq1x", "slug": "prediction-trade-journal", "version": "1.1.10", "publishedAt": 1772187767697 }

Archive v1.1.9: 4 files, 8749 bytes

Files: scripts/status.py (477b), SKILL.md (3158b), tradejournal.py (21822b), _meta.json (143b)

File v1.1.9:SKILL.md


name: prediction-trade-journal displayName: Prediction Trade Journal description: Auto-log trades with context, track outcomes, generate calibration reports to improve trading. metadata: {"clawdbot":{"emoji":"๐Ÿ““","requires":{"env":["SIMMER_API_KEY"],"pip":["simmer-sdk"]},"cron":null,"autostart":false}} authors:

  • Simmer (@simmer_markets) version: "1.1.8" published: true

Prediction Trade Journal

Track every trade, learn from outcomes, improve your edge.

When to Use This Skill

Use this skill when the user wants to:

  • See their trade history
  • Track win rate and P&L
  • Generate trading reports
  • Analyze which strategies work best

Quick Commands

# Sync trades from API
python tradejournal.py --sync

# Show recent trades
python tradejournal.py --history 10

# Generate weekly report
python tradejournal.py --report weekly

# Export to CSV
python tradejournal.py --export trades.csv

API Reference:

  • Base URL: https://api.simmer.markets
  • Auth: Authorization: Bearer $SIMMER_API_KEY
  • Trades: GET /api/sdk/trades

How It Works

  1. Sync - Polls /api/sdk/trades to fetch trade history
  2. Store - Saves trades locally with outcome tracking
  3. Track - Updates outcomes when markets resolve
  4. Report - Generates win rate, P&L, and calibration analysis

CLI Reference

| Command | Description | |---------|-------------| | --sync | Fetch new trades from API | | --history N | Show last N trades (default: 10) | | --sync-outcomes | Update resolved markets | | --report daily/weekly/monthly | Generate summary report | | --config | Show configuration | | --export FILE.csv | Export to CSV | | --dry-run | Preview without making changes |

Configuration

| Setting | Environment Variable | Default | |---------|---------------------|---------| | API Key | SIMMER_API_KEY | (required) |

Storage

Trades are stored locally in data/trades.json:

{
  "trades": [{
    "id": "uuid",
    "market_question": "Will X happen?",
    "side": "yes",
    "shares": 10.5,
    "cost": 6.83,
    "outcome": {
      "resolved": false,
      "winning_side": null,
      "pnl_usd": null
    }
  }],
  "metadata": {
    "last_sync": "2025-01-29T...",
    "total_trades": 50
  }
}

Skill Integration

Other skills can enrich trades with context:

from tradejournal import log_trade

# After executing a trade
log_trade(
    trade_id=result['trade_id'],
    source="copytrading",
    thesis="Mirroring whale 0x123...",
    confidence=0.70
)

This adds thesis, confidence, and source to the trade record for better analysis.

Example Report

๐Ÿ““ Weekly Report
========================================
Period: Last 7 days
Trades: 15
Total cost: $125.50
Resolved: 8 / 15
Win rate: 62.5%
P&L: +$18.30

By side: 10 YES, 5 NO

Troubleshooting

"SIMMER_API_KEY environment variable not set"

  • Set your API key: export SIMMER_API_KEY=sk_live_...

"No trades recorded yet"

  • Run python tradejournal.py --sync to fetch trades from API

Trades not showing outcomes

  • Run python tradejournal.py --sync-outcomes to update resolved markets

File v1.1.9:_meta.json

{ "ownerId": "kn7axnp7bzqsf5fkx0z8px7han7zyq1x", "slug": "prediction-trade-journal", "version": "1.1.9", "publishedAt": 1772164772149 }

API & Reliability

Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.

MissingCLAWHUB

Machine interfaces

Contract & API

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/trust"

Operational fit

Reliability & Benchmarks

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Machine Appendix

Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.

MissingCLAWHUB

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "OPENCLEW"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "CLAWHUB",
      "generatedAt": "2026-04-17T02:49:42.140Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "OPENCLEW",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}

Facts JSON

[
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Clawhub",
    "href": "https://clawhub.ai/adlai88/prediction-trade-journal",
    "sourceUrl": "https://clawhub.ai/adlai88/prediction-trade-journal",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "traction",
    "category": "adoption",
    "label": "Adoption signal",
    "value": "682 downloads",
    "href": "https://clawhub.ai/adlai88/prediction-trade-journal",
    "sourceUrl": "https://clawhub.ai/adlai88/prediction-trade-journal",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "latest_release",
    "category": "release",
    "label": "Latest release",
    "value": "1.1.10",
    "href": "https://clawhub.ai/adlai88/prediction-trade-journal",
    "sourceUrl": "https://clawhub.ai/adlai88/prediction-trade-journal",
    "sourceType": "release",
    "confidence": "medium",
    "observedAt": "2026-02-27T10:22:47.697Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "release",
    "title": "Release 1.1.10",
    "description": "- Added a \"difficulty: beginner\" field to SKILL.md for clearer guidance. - No functional or command changes; documentation improvement only.",
    "href": "https://clawhub.ai/adlai88/prediction-trade-journal",
    "sourceUrl": "https://clawhub.ai/adlai88/prediction-trade-journal",
    "sourceType": "release",
    "confidence": "medium",
    "observedAt": "2026-02-27T10:22:47.697Z",
    "isPublic": true
  }
]

Sponsored

Ads related to Prediction Trade Journal and adjacent AI workflows.