Crypto Price Alerter

v1.0.0

Monitor live cryptocurrency prices, technical indicators, and support/resistance levels with customizable price alerts and portfolio summaries.

0· 52·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for fuzzyb33s/crypto-price-alerter.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Crypto Price Alerter" (fuzzyb33s/crypto-price-alerter) from ClawHub.
Skill page: https://clawhub.ai/fuzzyb33s/crypto-price-alerter
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install crypto-price-alerter

ClawHub CLI

Package manager switcher

npx clawhub@latest install crypto-price-alerter
Security Scan
Capability signals
Crypto
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description match the provided script: the code queries CoinGecko endpoints and computes SMA/RSI/support-resistance and alerts. No unrelated services, binaries, or credentials are requested.
Instruction Scope
SKILL.md only instructs running the included script and describes expected args/outputs. It does not ask the agent to read unrelated files, access secrets, or transmit data to unknown endpoints; all network calls are to CoinGecko public APIs.
Install Mechanism
No install spec is provided (instruction-only with a bundled script). This means nothing is downloaded or written during install. Note: the script depends on the 'requests' library (not declared), so ensure runtime has that dependency.
Credentials
No environment variables, credentials, or config paths are requested. The skill does not attempt to read secrets or unrelated system config — access requests are proportional to the stated purpose.
Persistence & Privilege
The skill does not request always:true or any elevated persistence. Model invocation is allowed by default but that's normal; nothing in the skill tries to modify other skills or system-wide settings.
Assessment
This skill appears to do what it claims: it queries CoinGecko and computes simple indicators, with no credential requests. Before installing or running it: (1) inspect and fix the bundled script — there is a likely string/quote formatting error in build_report that will cause a Python syntax error, so the script may not run as-is; (2) ensure the runtime has Python and the 'requests' package installed; (3) run it in a sandbox or controlled environment (no secrets) and verify network access is restricted to only the CoinGecko endpoints if you require that; (4) be aware CoinGecko is rate-limited and responses can change — consider adding error/rate-limit handling if you rely on it for alerts; (5) no credentials are needed, so do not add API keys unless you intentionally extend the skill and understand the implications.

Like a lobster shell, security has layers — review code before you run it.

latestvk9714vcc6q9thnpcj1xgphaq6585hm71
52downloads
0stars
1versions
Updated 3d ago
v1.0.0
MIT-0

Crypto Price Alerter

Fetch live cryptocurrency prices and technical indicators via CoinGecko free API.

Quick Usage

uv run python scripts/price_check.py --symbol BTC --currency USD
uv run python scripts/price_check.py --symbol ETH --currency USD --upper 4000 --lower 2000
uv run python scripts/price_check.py --symbol SOL --currency USD --output json

Core Features

  1. Current Price — Live price, 24h change %, 24h volume, market cap
  2. Technical Indicators — SMA(7), SMA(21), RSI(14) from 30-day historical data
  3. Key Levels — 30-day resistance and support
  4. Price Alerts — Triggered when 24h change >5% or price crosses user thresholds
  5. JSON output — For automation pipelines: --output json

Scripts

  • scripts/price_check.py — Main script. Run standalone with uv run python scripts/price_check.py [args]

Arguments

ArgDescription
--symbolCrypto symbol (e.g. BTC, ETH, SOL) — required
--currencyFiat currency (default: USD)
--upperUpper price threshold for alert
--lowerLower price threshold for alert
--daysHistorical days for SMA (default: 30)
--outputtext (default) or json

Technical Signals

See references/signals.md for explanation of SMA, RSI, support/resistance, and trading signal interpretation.

Alert Logic

  • 24h change > +5% → Bullish alert
  • 24h change < -5% → Bearish alert
  • Price >= --upper threshold → Price ceiling alert
  • Price <= --lower threshold → Price floor alert

Comments

Loading comments...