暗号通貨の価格履歴とテクニカル分析
https://crypto-analysis-api-x402-689670267582.us-central1.run.apphttps://x402.org/facilitator指定した暗号通貨の価格履歴を取得します。
$0.05 USDC
{
"symbol": "BTC",
"days": 30,
"interval": "1d"
}
{
"symbol": "BTC",
"prices": [
{ "timestamp": "2026-01-01T00:00:00Z", "open": 42000, "high": 42500, "low": 41800, "close": 42300 },
{ "timestamp": "2026-01-02T00:00:00Z", "open": 42300, "high": 43100, "low": 42100, "close": 42900 }
]
}
テクニカル指標(RSI, MACD, 移動平均線など)を算出します。
$0.10 USDC
{
"symbol": "ETH",
"indicators": ["RSI", "MACD", "SMA"],
"period": 14
}
{
"symbol": "ETH",
"analysis": {
"RSI": { "value": 65.4, "signal": "neutral" },
"MACD": { "macd": 120.5, "signal": 115.2, "histogram": 5.3 },
"SMA": { "sma20": 2850, "sma50": 2720, "sma200": 2450 }
},
"summary": "Bullish momentum with RSI in neutral zone"
}