A data-driven read on where a token has been.
Real, reproducible technical analysis on any XRPL token, in one call. From OHLC it computes the trend (9/21 EMA), RSI momentum, support and resistance, volatility and volume trend, and composes a plain-language assessment from those numbers. When the server has an LLM configured, it adds an AI-written outlook plus a genuine counter-argument — an “AI peer-reviewed” read — and ai_available tells you whether that layer is live. Every response is stamped an informational signal, not financial advice, and never contains a price target or a buy/sell call.
MCP tool: analyze_token_trend Price: $0.02 / call
Parameters
| Param | Description |
|---|---|
issuer | XRPL issuer address (r...) |
currency | 3-char code or 40-char hex |
interval | 5 | 15 | 60 | 240 | D | W — candle timeframe (default D) |
bars | how many candles to analyze (default 90) |
Example
Call (MCP tools/call arguments):
{
"issuer": "rsoLo2S1kiGeCcn6hCUXVrCpGMWLrRrLZz",
"currency": "534F4C4F00000000000000000000000000000000",
"interval": "D",
"bars": 90
}
Result:
{
"ok": true,
"interval": "D",
"quote": "XRP",
"indicators": {
"trend": "down",
"change_pct": -12.4,
"rsi": 41.2,
"momentum": "neutral",
"support": 0.0128,
"resistance": 0.0241,
"range_position_pct": 12.0,
"volatility_pct": 6.3,
"volume_trend_pct": -38.0,
"bars": 90
},
"assessment": "Over the last 90 daily bars the token is in a downtrend, down 12.4% across the window. The 9-EMA sits below the 21-EMA. RSI is 41.2 (neutral). Price is at 12% of its recent range\u2026",
"ai_narrative": null,
"ai_available": false,
"disclaimer": "Informational signal derived from on-chain price data \u2014 NOT financial advice, not a forecast."
}
FAQ
What does the XRPL trend analysis actually compute?
From OHLC candles it computes the trend via 9/21 EMA crossover, RSI(14) momentum (overbought/oversold), support and resistance from the range, per-bar volatility, and whether volume is rising or fading — then writes a plain-language assessment straight from those numbers. All of it is deterministic and reproducible.
Is the AI part always available?
No — the computed indicators always run, but the AI-written narrative is optional and only active when the server has a language model configured. The response's ai_available field tells you which mode you got, and ai_narrative is null when it's off. Nothing is faked.
Is this financial advice?
No. Every response is explicitly an informational signal derived from price data — never a price target, never a buy or sell recommendation, and never a promise about what happens next. Markets can move against any signal. See the disclaimer.
Related tools
resolve_assetResolve an XRPL token's real cross-chain identity: is it the canonical asset (legitimately deployed across chains) or an impostor
verify_priceValidate an XRPL token's price against its canonical cross-chain value: is a stablecoin still pegged, has the price diverged from
token_holdersHolder distribution and concentration risk for any XRP Ledger token: holder count, top-1 and top-10 share of circulating supply, A
get_new_poolsFeed of newly created XRPL AMM pools with initial liquidity, trading fee, and safety-signal scores from launch-time screening.
get_token_ohlcOpen/high/low/close and volume candles for any XRP Ledger token, at 5m to weekly intervals, quoted in XRP or USD — the price-histohttps://cerberusindex.com/mcp — see
the quickstart. Payment is automatic for x402-aware clients.
Verdicts are informational risk signals, not financial advice.