← All skills
Tencent SkillHub · Data Analysis

Synth Data

Query volatility forecasts from Synthdata.co for crypto, commodities, and stocks. Compare assets and run Monte Carlo simulations.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Query volatility forecasts from Synthdata.co for crypto, commodities, and stocks. Compare assets and run Monte Carlo simulations.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, clawhub.json, examples/use-cases.md, references/api.md, scripts/synth.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.5

Documentation

ClawHub primary doc Primary doc: SKILL.md 14 sections Open source page

Synthdata Volatility Skill

Query and analyze volatility forecasts from Synthdata.co for crypto, commodities, and stock indices.

Setup

Set your API key: export SYNTHDATA_API_KEY=your_key_here

Quick Start

# Single asset python3 scripts/synth.py BTC # Multiple assets comparison python3 scripts/synth.py BTC ETH SOL --compare # All assets overview python3 scripts/synth.py --all # Monte Carlo simulation (24h max) python3 scripts/synth.py BTC --simulate --hours 12

Available Assets

TickerNameCategoryBTCBitcoinCryptoETHEthereumCryptoSOLSolanaCryptoXAUGoldCommoditySPYXS&P 500IndexNVDAXNVIDIAStockGOOGLXGoogleStockTSLAXTeslaStockAAPLXAppleStock

Output Example

================================================== BTC — Bitcoin ================================================== Price: $77,966 24h Change: 🔴 -0.95% Current Vol: 58.4% 🟠 [Elevated] Avg Realized: 53.3% Forecast Vol: 52.2%

Volatility Levels

LevelRangeEmojiLow< 20%🟢Moderate20-40%🟡Elevated40-60%🟠High60-80%🔴Extreme> 80%🔴

1. Market Overview

python3 scripts/synth.py --all Get a ranked table of all assets by volatility.

2. Trading Signals

High forecast → Current low: Expect volatility spike Low forecast → Current high: Volatility may decrease Use for position sizing and options trading

3. Monte Carlo Projections

python3 scripts/synth.py BTC --simulate --hours 24 --paths 1000 Generate probabilistic price ranges using forecast volatility (24h max - Synthdata forecast window).

4. Scheduled Reports

Create a cron job for daily Slack/Telegram forecasts (see examples/use-cases.md).

5. Risk Alerts

Monitor for assets crossing volatility thresholds and trigger notifications.

API Reference

See references/api.md for full API documentation.

Direct API Usage

import requests resp = requests.get( "https://api.synthdata.co/insights/volatility", params={"asset": "BTC"}, headers={"Authorization": f"Apikey {API_KEY}"} ) data = resp.json() # Key fields: price = data["current_price"] realized_vol = data["realized"]["average_volatility"] forecast_vol = data["forecast_future"]["average_volatility"]

Integration Ideas

Polymarket: Use volatility forecasts to inform up/down market bets Options: High forecast vol = consider buying options Portfolio: Rebalance when aggregate volatility spikes Alerts: Notify when forecast differs significantly from realized

Category context

Data access, storage, extraction, analysis, reporting, and insight generation.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • examples/use-cases.md Docs
  • README.md Docs
  • references/api.md Docs
  • scripts/synth.py Scripts
  • clawhub.json Config