Guavy Logo GUAVY
Technical Analysis Get Indicators
GET
·
/api/v1/technical-analysis/get-indicators

Get Indicators

Compute key technical indicators from historical price data for a given symbol and analysis period. Returns SMA, EMA, RSI, MACD, Bollinger Bands, Stochastic Oscillator, ATR, VWAP, OBV, Fibonacci Retracement, ADX, and ROC.

Attributes

symbol
string
Required
The symbol of the instrument to analyze (e.g. BTC, ETH).
period
integer
Number of days to analyze. Defaults to 30.

API Request

Example Request with cURL

curl \
--request GET \
--url     'https://data.guavy.com/api/v1/technical-analysis/get-indicators/<symbol>?period=<integer>' \
--header 'Authorization: Bearer YOUR-GUAVY-ACCESS-TOKEN' \
--header 'Content-Type: application/json'

This request format works across all modern HTTP clients, including Python requests, JavaScript fetch, and other programming language libraries.

Example Response for /api/v1/technical-analysis/get-indicators/BTC?period=30

{
  "indicators": {
    "adx": 10.9,
    "atr": 1171.59,
    "bollinger_bands": {
      "lower": 64929.36,
      "middle": 69544.21,
      "upper": 74159.06
    },
    "ema": 69105.11,
    "fibonacci_retracement": {
      "high": 75382.11,
      "levels": {
        "23.6": 73123.47,
        "38.2": 71726.17,
        "50.0": 70596.85,
        "61.8": 69467.53
      },
      "low": 65811.6
    },
    "macd": {
      "histogram": 366.72,
      "macd_line": -224.78,
      "signal_line": -591.5
    },
    "obv": 188555563301.0,
    "roc": 4.45,
    "rsi": 59.2,
    "sma": 69544.21,
    "stochastic_oscillator": {
      "d": 73.7,
      "k": 100.0
    },
    "vwap": 69878.43
  },
  "period": 30,
  "symbol": "BTC"
}

Response Object

indicators
object
Map of technical indicator values.
sma
float
Simple Moving Average over the period.
ema
float
Exponential Moving Average over the period.
rsi
float
Relative Strength Index (0-100). >70 overbought, <30 oversold.
macd
object
MACD with macd_line, signal_line, and histogram.
bollinger_bands
object
Upper, middle, and lower Bollinger Bands.
stochastic_oscillator
object
Stochastic %K and %D values.
atr
float
Average True Range — volatility indicator.
vwap
float
Volume Weighted Average Price.
obv
float
On-Balance Volume.
fibonacci_retracement
object
Fibonacci levels (23.6%, 38.2%, 50%, 61.8%) with high and low.
adx
float
Average Directional Index (0-100). >25 strong trend, <20 weak/ranging.
roc
float
Rate of Change — percentage price change over N periods.
symbol
string
The analyzed symbol.
period
integer
The number of days analyzed.

Token Costs

Each API call consumes tokens from your monthly budget. Endpoints that return richer or deeper data cost more tokens. Historical endpoints scale with the amount of data requested.

Endpoint Token Cost
GET /api/v1/ping 1
GET /api/v1/instruments/list-symbols 1
GET /api/v1/instruments/search-instruments/:query 2
GET /api/v1/instruments/get-detail/:symbol 5
GET /api/v1/instruments/scorecard/:symbol 10
GET /api/v1/newsroom/get-market-summary 3
GET /api/v1/newsroom/get-article/:id 3
GET /api/v1/newsroom/get-recent-briefs/:symbol 3 – 8 (scales with limit)
GET /api/v1/newsroom/search-briefs/:symbol 3 – 8 (scales with limit)
GET /api/v1/newsroom/get-instrument-analysis/:symbol 10
GET /api/v1/trades/get-recent-buys 3
GET /api/v1/trades/get-recent-sells 3
GET /api/v1/trades/get-recommendations 5
GET /api/v1/trades/get-current-action/:symbol/:strategy 5
GET /api/v1/trades/get-trend-history/:symbol/:limit 5 – 15 (scales with limit)
GET /api/v1/trades/get-backtest-history/:symbol/:strategy 8 – 20 (scales with years)
GET /api/v1/trades/get-backtest-summary/:symbol/:strategy 8 – 20 (scales with years)
GET /api/v1/sentiment/get-sentiment-history/:symbol 3 – 12 (scales with limit)
GET /api/v1/technical-analysis/get-price-history/:symbol 5
GET /api/v1/technical-analysis/get-indicators/:symbol 8

Account Limits

Each plan includes a monthly token budget: 3,000 for Sandbox, 250,000 for Quant, and 2,000,000 for Commercial. You can top up at any time with a one-time token pack — unused tokens roll over every month. If you exceed your budget, the API returns a 403 until the next reset or until you purchase more tokens.

Connection Limits

The Guavy API has a limit of 10 simultaneous connections and a 120-second timeout per request. We recommend caching responses that don't change frequently to reduce token consumption and improve performance.

Was this helpful?
Feedback option #{picture.id}
Feedback option #{picture.id}
Feedback option #{picture.id}
Feedback option #{picture.id}

© 2026 Guavy Inc. All rights reserved.