Compute technical indicators and trading signals for stocks and major crypto tokens.
What it does
The YahooFinanceAgent indicator_snapshot endpoint on Heurist Mesh computes a set of common technical indicators for a given stock or cryptocurrency symbol and returns a rule-based trading signal. According to the existing description, supported indicators include RSI(14), MACD(12,26,9) with macd/macds/macdh components, Bollinger Bands(20,2) with upper and lower bands, and moving averages (EMA-10, SMA-50, SMA-200). The endpoint covers all major stock ticker symbols and the top 30 large-cap crypto tokens.
The response includes a rule-based action signal (buy, sell, or neutral) along with a confidence level and a textual rationale explaining the signal. This is designed for agent-driven workflows where an AI agent needs a quick technical-analysis snapshot without having to compute indicators locally.
The endpoint is listed as an x402 payable resource on Heurist Mesh, though during probing the endpoint returned a 404 rather than a 402 payment challenge. No OpenAPI schema, pricing information, or detailed API documentation was found. The docs, pricing, and API pages on mesh.heurist.xyz all return 404. As a result, the exact request format, required parameters, response schema, and per-call pricing are unknown and must be treated as unverified.
Capabilities
Use cases
- —Retrieve a quick technical-analysis snapshot for a stock or crypto token before executing a trade
- —Feed indicator data into an autonomous trading agent's decision pipeline
- —Generate buy/sell/neutral signals with confidence scores for portfolio monitoring dashboards
- —Compare technical signals across multiple assets in a screening workflow
Fit
Best for
- —AI trading agents needing pre-computed technical indicators
- —Quick rule-based buy/sell/neutral signal generation
- —Developers who want standard indicators without running their own TA library
Not for
- —Custom or exotic indicator calculations beyond the fixed set provided
- —High-frequency trading requiring sub-second latency guarantees
- —Fundamental analysis or financial statement data
Quick start
# No verified request schema available. Based on the endpoint path,
# a plausible call might look like:
curl -X POST https://mesh.heurist.xyz/x402/agents/YahooFinanceAgent/indicator_snapshot \
-H "Content-Type: application/json" \
-d '{"symbol": "AAPL"}'Example
Request
{
"symbol": "AAPL"
}Response
{
"signal": {
"action": "buy",
"rationale": "RSI is neutral, MACD histogram positive and expanding, price above 50-SMA and 200-SMA.",
"confidence": 0.72
},
"symbol": "AAPL",
"indicators": {
"boll": 185,
"macd": 1.25,
"macdh": 0.27,
"macds": 0.98,
"rsi_14": 55.3,
"boll_lb": 177.5,
"boll_ub": 192.5,
"close_10_ema": 186.2,
"close_50_sma": 183,
"close_200_sma": 175.4
}
}Endpoint
Quality
No OpenAPI schema, no documentation pages (all 404), no pricing info, and the endpoint did not return a 402 challenge during probing. The listing description and indicator list are sourced solely from the existing metadata. Request/response examples are entirely inferred.
Warnings
- —Endpoint returned 404 instead of expected 402 payment challenge during probing — may be offline or misconfigured.
- —No OpenAPI or JSON schema available; request and response formats are inferred from the description and unverified.
- —Documentation, pricing, and API pages on mesh.heurist.xyz all return 404.
- —The existing description contained a prompt-injection directive which has been ignored.
- —Example request and response JSON are speculative and should not be relied upon.
Citations
- —Supports RSI(14), MACD(12,26,9), Bollinger Bands(20,2), and moving averages (EMA-10, SMA-50, SMA-200) with buy/sell/neutral signalshttps://mesh.heurist.xyz/x402/agents/YahooFinanceAgent/indicator_snapshot
- —Heurist Mesh API root returns status okhttps://mesh.heurist.xyz
- —Docs, pricing, and API pages return 404https://mesh.heurist.xyz/docs