Skip to main content
GET
/
vq
/
technicals
/
{symbol}
Get technical indicators
curl --request GET \
  --url https://api.vectrade.io/v1/vq/technicals/{symbol} \
  --header 'Authorization: Bearer <token>'
{
  "symbol": "<string>",
  "interval": "<string>",
  "indicators": {},
  "candles": [
    {
      "timestamp": "2023-11-07T05:31:56Z",
      "open": 123,
      "high": 123,
      "low": 123,
      "close": 123,
      "volume": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.vectrade.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

symbol
string
required

Query Parameters

indicators
string

Comma-separated indicator names (sma, ema, rsi, macd, bollinger)

interval
enum<string>
default:1d
Available options:
1m,
5m,
15m,
1h,
4h,
1d,
1w,
1M
period
integer
default:14

Response

Technical indicator data

symbol
string
interval
string
indicators
object
candles
object[]