一键导入
signal
Send a test trading signal through the Sapphire pipeline
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Send a test trading signal through the Sapphire pipeline
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Infrastructure-as-code — GCP Terraform, Pi deployment configs, Docker
Trading engine — signals, risk, execution, self-improvement loop
PM hub — project board, task scoring, event stream, Telegram integration
Agent dispatch — OpenClaw, NemoClaw, orchestrator, runtime policy
Aster DEX trading bot — Solana perpetuals, CEX-style API, Shield HFT strategy
Flask trading dashboard at sapphirealpha.xyz — PnL, positions, system status
| name | signal |
| description | Send a test trading signal through the Sapphire pipeline |
| disable-model-invocation | true |
Send a test signal through the full pipeline: webhook (Windows) → signal logger (Mac) → Telegram.
/signal ETHBTC buy 0.048 0.9 # symbol action price confidence
/signal HYPEUSDT sell 35.0 # confidence defaults to 0.5
/signal BTCUSDT buy # price defaults to 0, confidence 0.5
TradingView alert (simulated)
→ POST http://100.x.x.z:9090/webhook/tradingview
→ webhook validates + enriches
→ POST http://100.x.x.w:18081/api/signals
→ signal logger saves to data/trading_signals.jsonl
→ Nemotron AI assessment
→ Telegram notification via NemotronRariBot
{
"secret": "sapphire_trading_2024",
"symbol": "<SYMBOL>",
"action": "<ACTION>",
"strategy": "v3_ultra",
"price": <PRICE>,
"confidence": <CONFIDENCE>
}
curl -s -X POST http://100.x.x.z:9090/webhook/tradingview \
-H "Content-Type: application/json" \
-d '<payload>'
tail -1 data/trading_signals.jsonl | python3 -m json.tool
ETHBTC, SOLBTC, ZECBTC, BTCUSDT, ETHUSDT, HYPEUSDT, SOLUSDT
buy, sell, long, short, exit, close