Install
openclaw skills install nofxClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
NOFX AI Trading OS integration - crypto market data, AI trading signals, strategy management, trader control, and automated reporting. Use when working with NOFX platform (nofxai.com, nofxos.ai) for crypto trading, market analysis, AI500/AI300 signals, fund flow tracking, OI monitoring, strategy creation, trader management, backtesting, or AI debate arena.
openclaw skills install nofxIntegrate with NOFX - the open-source AI-powered crypto trading operating system.
| Resource | URL |
|---|---|
| Web Dashboard | https://nofxai.com |
| Data API | https://nofxos.ai |
| API Docs | https://nofxos.ai/api-docs |
| GitHub | https://github.com/NoFxAiOS/nofx |
For installation and deployment instructions, see references/deployment.md:
For exchange registration links (with fee discounts) and API setup, see references/exchanges.md:
CEX: Binance, Bybit, OKX, Bitget, KuCoin, Gate.io DEX: Hyperliquid, Aster DEX, Lighter
AI Models: DeepSeek, Qwen, OpenAI, Claude, Gemini, Grok, Kimi
Store credentials in workspace skills/nofx/config.json:
{
"api_key": "cm_xxxxxx",
"web_email": "user@example.com",
"browser_profile": "clawd"
}
Base URL: https://nofxos.ai
Auth: ?auth=API_KEY or Authorization: Bearer API_KEY
# AI500 - High potential coins (score > 70)
curl "https://nofxos.ai/api/ai500/list?auth=$KEY"
# AI300 - Quantitative flow signals (S/A/B levels)
curl "https://nofxos.ai/api/ai300/list?auth=$KEY&limit=10"
# Single coin AI analysis
curl "https://nofxos.ai/api/ai500/{symbol}?auth=$KEY"
# Institution inflow ranking
curl "https://nofxos.ai/api/netflow/top-ranking?auth=$KEY&limit=10&duration=1h&type=institution"
# Outflow ranking
curl "https://nofxos.ai/api/netflow/low-ranking?auth=$KEY&limit=10&duration=1h&type=institution"
# OI increase ranking
curl "https://nofxos.ai/api/oi/top-ranking?auth=$KEY&limit=10&duration=1h"
# OI decrease ranking
curl "https://nofxos.ai/api/oi/low-ranking?auth=$KEY&limit=10&duration=1h"
# OI market cap ranking
curl "https://nofxos.ai/api/oi-cap/ranking?auth=$KEY&limit=10"
# Price ranking (gainers/losers)
curl "https://nofxos.ai/api/price/ranking?auth=$KEY&duration=1h"
# Funding rate top (crowded longs)
curl "https://nofxos.ai/api/funding-rate/top?auth=$KEY&limit=10"
# Funding rate low (crowded shorts)
curl "https://nofxos.ai/api/funding-rate/low?auth=$KEY&limit=10"
# Long-short ratio anomalies
curl "https://nofxos.ai/api/long-short/list?auth=$KEY&limit=10"
# Comprehensive coin data
curl "https://nofxos.ai/api/coin/{symbol}?auth=$KEY&include=all"
# Order book heatmap
curl "https://nofxos.ai/api/heatmap/future/{symbol}?auth=$KEY"
Duration options: 1m, 5m, 15m, 30m, 1h, 4h, 8h, 12h, 24h, 2d, 3d, 5d, 7d
Use browser automation on https://nofxai.com/strategy
{
"strategy_type": "ai_trading",
"language": "en",
"coin_source": {
"source_type": "ai500|static|oi_top|oi_low|mixed",
"static_coins": ["BTC", "ETH"],
"use_ai500": true,
"ai500_limit": 10
},
"indicators": {
"enable_ema": true,
"enable_rsi": true,
"enable_atr": true,
"enable_boll": true,
"enable_oi": true,
"enable_funding_rate": true,
"enable_quant_data": true,
"nofxos_api_key": "cm_xxx"
},
"risk_control": {
"max_position_pct": 10,
"stop_loss_pct": 3,
"take_profit_pct": 5
},
"prompt_sections": {
"role_definition": "...",
"entry_standards": "...",
"decision_process": "..."
}
}
When user describes a strategy in natural language:
Use browser automation on https://nofxai.com/traders
Model: claude|deepseek|gpt|gemini|grok|kimi|qwen
Exchange: binance|bybit|okx|bitget|kucoin|gate|hyperliquid|aster|lighter
Strategy: Select from strategy list
Navigate to https://nofxai.com/dashboard
Navigate to https://nofxai.com/debate
Navigate to https://nofxai.com/backtest
{
"name": "NOFX Market Report",
"schedule": {"kind": "cron", "expr": "*/30 * * * *"},
"sessionTarget": "isolated",
"payload": {
"kind": "agentTurn",
"message": "Fetch NOFX data and generate market report...",
"deliver": true,
"channel": "telegram",
"to": "USER_ID"
}
}
See references/api-examples.md for detailed response structures.
| Reference | Description |
|---|---|
references/grid-trading.md | Grid trading detailed guide with examples |
references/market-charts.md | Market page and chart analysis |
references/multi-account.md | Multi-account management |
references/webhooks.md | Telegram/Discord/Slack notifications |
references/faq.md | Frequently asked questions |