Install
openclaw skills install crypto-market-publishComprehensive cryptocurrency market monitoring and economic data analysis. Use when tracking crypto prices, market sentiment, economic data releases, or anal...
openclaw skills install crypto-market-publishComplete cryptocurrency market monitoring system with price tracking, economic data releases, and impact analysis.
Quick install:
clawhub install crypto-market
For manual installation, see INSTALL.md.
Monitor 13 major cryptocurrencies (BTC, ETH, XRP, BNB, SOL, ADA, AVAX, DOGE, TRX, LINK, SUI, WLFI, XAUT) with real-time prices, volatility alerts (±5%), market sentiment analysis, and EMA technical indicators.
From your crypto workspace:
cd scripts
python3 crypto_monitor_telegram.py
View upcoming economic data releases (7-day forecast) with importance levels (high/medium) and countdown timers.
From your crypto workspace:
cd economic
python3 daily_economic_report_v2.py
When economic data is released, update actual values to trigger automatic bullish/bearish analysis.
From your crypto workspace:
cd economic
python3 update_economic_data.py update "数据名称" "实际值" --datetime "发布时间"
Examples:
# CPI data (lower is bullish)
python3 update_economic_data.py update "CPI 消费者价格指数" "2.1%" --datetime "2026-03-13 21:30"
# NFP data (higher is bullish)
python3 update_economic_data.py update "非农就业数据" "+280K" --datetime "2026-03-14 21:30"
# GDP data (higher is bullish)
python3 update_economic_data.py update "GDP 季度报告" "1.8%" --datetime "2026-03-20 21:30"
# Unemployment rate (lower is bullish)
python3 update_economic_data.py update "失业率" "4.0%" --datetime "2026-03-14 21:30"
Analyze data impact without saving to database.
python3 update_economic_data.py analyze "数据名称" "实际值" "预期值" "前值"
Example:
python3 update_economic_data.py analyze "CPI" "2.1%" "2.3%" "2.4%"
Check all economic data with actual values.
python3 update_economic_data.py list
Rule: Actual > Expected (+2%+) = Bullish
Rule: Actual < Expected (-2%+) = Bullish (pressure relief)
crypto/ # Your crypto workspace
├── economic/ # Economic data scripts
├── scripts/ # Monitoring scripts
├── data/ # Data storage (actual_data.json)
└── logs/ # Log files
See data-types.md for detailed information on each indicator.
Core modules (in economic/):
economic_calendar.py - Economic calendar managementeconomic_analyzer.py - Bullish/bearish analysis engineupdate_economic_data.py - Actual value managementMonitoring (in scripts/):
crypto_monitor_telegram.py - Price monitoring + economic dataReferences:
Edit paths in scripts or create a config file. See INSTALL.md for details.
Edit scripts/crypto_monitor_telegram.py:
ALERT_THRESHOLD = 5.0 # Change to your preferred threshold
Edit scripts/crypto_monitor_telegram.py TOKENS dictionary.
data/actual_data.jsonFor detailed installation, customization, and usage scenarios, see INSTALL.md and usage-examples.md.