NOFX AI500 Report
by @tinkle-community
Generate periodic crypto market intelligence reports from the NOFX AI500 system. Monitors coin selections, analyzes OI (Open Interest), institutional fund fl...
clawhub install nofx-ai500-reportπ About This Skill
name: nofx-ai500-report description: Generate periodic crypto market intelligence reports from the NOFX AI500 system. Monitors coin selections, analyzes OI (Open Interest), institutional fund flows, K-line technicals, delta, long-short ratios, and funding rates. Use when setting up automated crypto market reports, AI500 signal monitoring, new coin alerts, or periodic trading signal summaries via Telegram/messaging. license: MIT
NOFX AI500 Report Skill
Generate comprehensive crypto market intelligence reports from the NOFX AI500 scoring system with automated monitoring and delivery.
Prerequisites
ssl, json, urllib (standard library)Setup
Ask the user for:
1. NOFX API base URL (e.g. https://nofxos.ai)
2. API auth key (e.g. cm_xxxx)
3. Delivery target β Telegram chat ID or channel
Then create two cron jobs using the OpenClaw cron tool:
Job 1: New Coin Monitor (every 15 min)
Run scripts/monitor.sh via exec. Pass API base and key as env vars.
NEW: β send alert + detailed analysisREMOVED: β send removal notice NO_CHANGE β silentSee references/monitor-job.md for full cron payload template.
Job 2: Periodic Report (every 30 min)
Fetch data from multiple NOFX API endpoints and Binance public API, compile into formatted report.
See references/report-job.md for full cron payload template.
API Endpoints
All NOFX endpoints require ?auth=KEY parameter.
| Endpoint | Purpose | Params |
|----------|---------|--------|
| /api/ai500/list | Current AI500 selections | β |
| /api/oi/top-ranking | OI increase rankings | duration |
| /api/oi/low-ranking | OI decrease rankings | duration |
| /api/netflow/top-ranking | Fund inflow rankings | type=institution&trade=future&duration |
| /api/netflow/low-ranking | Fund outflow rankings | same |
| /api/delta/list | Delta data | symbol |
| /api/long-short-ratio/list | Long/short ratio | symbol |
| /api/funding-rate/top-ranking | Funding rate high | β |
| /api/funding-rate/low-ranking | Funding rate low | β |
Duration values: 5m, 15m, 30m, 1h, 4h, 8h, 24h
Binance K-line (public, no auth):
https://fapi.binance.com/fapi/v1/klines?symbol=XXXUSDT&interval=15m&limit=10
Intervals: 15m, 1h, 4hSSL note: On some systems, Python needs:
import ssl
ctx = ssl._create_unverified_context()
Report Format
Use Unicode box-drawing in code blocks for Telegram compatibility. Each coin section includes:
1. AI500 score + cumulative return since selection
2. OI changes across 7 timeframes (5mβ24h) with percentage AND dollar value (from oi_delta_value)
3. Institutional fund flows across timeframes, with ranking when in TOP/LOW 20
4. K-line analysis (15m/1h/4h): trend direction, bull/bear candle ratio, MA3 vs MA7, volume change, support/resistance
5. Funding rate with warning if >0.03%
After individual coins, include:
K-line Analysis Method
For each timeframe (15m/1h/4h), fetch 10 candles and compute:
Video Report (Optional)
For video generation from report data, see references/video-pipeline.md.
βοΈ Configuration
Ask the user for:
1. NOFX API base URL (e.g. https://nofxos.ai)
2. API auth key (e.g. cm_xxxx)
3. Delivery target β Telegram chat ID or channel
Then create two cron jobs using the OpenClaw cron tool:
Job 1: New Coin Monitor (every 15 min)
Run scripts/monitor.sh via exec. Pass API base and key as env vars.
NEW: β send alert + detailed analysisREMOVED: β send removal notice NO_CHANGE β silentSee references/monitor-job.md for full cron payload template.
Job 2: Periodic Report (every 30 min)
Fetch data from multiple NOFX API endpoints and Binance public API, compile into formatted report.
See references/report-job.md for full cron payload template.