★ ★ ★LIVE97 COINS ANALYZED BY CLAUDE MCP·VIEW SKILLS →★ ★ ★
MCP
claude.analyze("BTCUSDT")→ [buy] signal detectedmcp.draw_levels(resistance=98000)→ [drawn] on chartclaude.scan_watchlist(coins=100)→ [42] buy signals foundmcp.connect("tradingview")→ [connected] daily TFclaude.detect_sr("SOLUSDT")→ [S: $165] [R: $185]claude.analyze("ETHUSDT")→ [neutral] consolidatingmcp.screenshot_chart("BNBUSDT")→ [captured] analyzing...claude.score_quality("XRPUSDT")→ score: 78/100mcp.set_timeframe("1D")→ [ok] chart updatedclaude.analyze("BTCUSDT")→ [buy] signal detectedmcp.draw_levels(resistance=98000)→ [drawn] on chartclaude.scan_watchlist(coins=100)→ [42] buy signals foundmcp.connect("tradingview")→ [connected] daily TFclaude.detect_sr("SOLUSDT")→ [S: $165] [R: $185]claude.analyze("ETHUSDT")→ [neutral] consolidatingmcp.screenshot_chart("BNBUSDT")→ [captured] analyzing...claude.score_quality("XRPUSDT")→ score: 78/100mcp.set_timeframe("1D")→ [ok] chart updated
BACK TO CLAUDE SKILLS

export_analysis_json

Data PipelineDataExport
INSTALLATION
$python -c "exec(open('export_analysis_json.py').read())"
#or paste directly into your Claude Code terminal
[ ABOUT ]

Writes the analysis results list to a JSON file at the specified path, including a `generated_at` ISO timestamp and a total `count` field. The timestamp and count make the export file self-documenting — downstream consumers can verify data freshness without querying Supabase directly.

JSON export is useful for debugging, sharing snapshots of market state, or feeding data to visualization tools that cannot connect to Supabase directly. For automated pipelines, consider naming the file with a timestamp suffix (e.g. `analysis_2026-05-19.json`) rather than overwriting a static filename, so historical snapshots are preserved.

[ USAGE EXAMPLE ]
example.py
path = export_json(results, "analysis_2026-05-19.json")
# → {"generated_at": "2026-05-19T00:12:43", "count": 100, "data": [...]}
[ FULL CODE ]
export_analysis_json.py
import json, datetime def export_json(results, path="analysis.json"): with open(path, "w") as f: json.dump({"generated_at": datetime.now().isoformat(), "count": len(results), "data": results}, f, indent=2) return path
[ METADATA ]
CategoryData Pipeline
ComplexityIntermediate
LanguagePython 3.10+
TagsData, Export
[ ASK CLAUDE ]

Ask AI about this skill before installing it.

[ RELATED SKILLS ]