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
Response
Successful operation
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.