API Documentation

GET/api/1/equity-extended/aggregate-signals/{identifier}

Aggregate Technical Signals API

Returns consolidated technical indicator signals (buy/sell/neutral counts, ADX trend strength, overall signal) across multiple resolutions (1min, 5min, 15min, 30min, 1h, D, W, M)

Parameters

1
identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/equity-extended/aggregate-signals/US0378331005' \
  -H 'Accept: application/json'
200 Response
{
  "isin": "string",
  "symbol": "string",
  "signals": {
    "resolution": "D",
    "signal": "buy",
    "buy": 8,
    "neutral": 3,
    "sell": 1,
    "adx": 32.5,
    "trending": true
  },
  "summary": {
    "signal": "buy",
    "buyCount": 0,
    "sellCount": 0,
    "neutralCount": 0
  }
}