Data API's

technical data

Fetch technical indicator values for an instrument. Pass the indicators you need - only those are computed and returned. All values are point-in-time as of the latest closed candle for the requested timeframe.

post/data/technical

Headers

access-tokenstring required

Request body

securityIdstring required

Exchange standard ID for each security
For eg. "1333"

exchangeSegment'NSE_EQ' | 'IDX_I' required
EnumsExchangeSegment
NSE_EQNSEEquity Cash
IDX_IINDEXIndices
instrument'INDEX' | 'EQUITY' required
EnumsDescription
INDEXIndex
EQUITYEquity
timeframe'1' | '5' | '15' | 'D' required

Candle size used to compute all indicators in this request.
Note : For intraday timeframes (1, 5, 15), indicators use candles from the current trading session only.

ValueTypeDescription
1Intraday1-minute candles
5Intraday5-minute candles
15Intraday15-minute candles
DDailyEnd-of-day daily candles. Default for positional analysis.
indicatorsstring[] required

Array of indicator identifiers to fetch. Only the indicators passed here are computed and returned.
For eg. [ "SMA_20", "RSI_14", "MACD_HIST" ]

Moving Averages

IdentifierDescription
SMA_5Simple Moving Average — 5-period
SMA_10Simple Moving Average — 10-period
SMA_20Simple Moving Average — 20-period
SMA_50Simple Moving Average — 50-period
SMA_100Simple Moving Average — 100-period
SMA_200Simple Moving Average — 200-period
EMA_5Exponential Moving Average — 5-period
EMA_10Exponential Moving Average — 10-period
EMA_20Exponential Moving Average — 20-period
EMA_50Exponential Moving Average — 50-period
EMA_100Exponential Moving Average — 100-period
EMA_200Exponential Moving Average — 200-period

Momentum / Oscillators

IdentifierDescriptionFixed Parameters
RSI_14Relative Strength IndexPeriod: 14
MACD_HISTMACD histogram (MACD line minus Signal line)Fast: 12 / Slow: 26 / Signal: 9
STOCHStochastic OscillatorK: 9 / D: 6
STOCHRSI_14Stochastic RSIPeriod: 14
ATR_14Average True RangePeriod: 14
ADX_14Average Directional Index — trend strength, not directionPeriod: 14
UOUltimate OscillatorPeriods: 7 / 14 / 28
ROCRate of ChangePeriod: 12
WILLRWilliams %RPeriod: 14

Pivot Points

Note : Pivot levels always use the previous session's OHLC regardless of the timeframe in the request.

IdentifierDescription
PIVOT_CLASSICStandard floor pivot. Levels computed from previous session OHLC.
PIVOT_FIBONACCIFibonacci ratios applied to the pivot range.
PIVOT_CAMARILLATighter intraday levels derived from close and previous range.

Response

Successful operation

securityIdstring

Echoed from request

timeframestring

Echoed from request

dataobject
ParametersData TypeDescriptionSample value
dataObjectKeyed by indicator type. Only requested indicators are present.{ "SMA": [...], "RSI": {...} }

Note : SMA and EMA return an array of objects (one per requested period). All other indicators return a single object. PIVOT returns an object keyed by method name (Classic, Fibonacci, Camarilla).

Note : action labels per indicator — SMA/EMA: Bullish / Bearish. RSI/STOCH/STOCHRSI/WILLR: Overbought / Oversold / Neutral. MACD: Bullish / Bearish. ATR: More Volatile / Less Volatile. ADX: Strong Trend / Weak Trend. UO: Bullish / Bearish. ROC: Uptrend And Accelerating / Decelerating / Downtrend And Accelerating / Decelerating.

Example response

{
  "securityId": "1333",
  "timeframe": "D",
  "data": {
    "SMA": [
      {
        "period": 20,
        "value": 22.5855,
        "action": "Bearish"
      }
    ],
    "EMA": [
      {
        "period": 20,
        "value": 23.1731,
        "action": "Bearish"
      }
    ],
    "RSI": {
      "value": 44.9067,
      "action": "Neutral"
    },
    "MACD_HIST": {
      "value": -0.0241,
      "action": "Bearish"
    },
    "PIVOT": {
      "Classic": {
        "PP": 22.98,
        "R1": 23.14,
        "R2": 23.31,
        "R3": 23.47,
        "S1": 22.81,
        "S2": 22.65,
        "S3": 22.48
      }
    }
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.