GET
/
technicals
/
rating
/
{symbol}
/
{timeframe}
Get single timeframe technical rating
curl --request GET \
  --url https://api.fcontext.com/technicals/rating/{symbol}/{timeframe} \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "signal": "BUY",
    "summary": {
      "recommendation": "BUY",
      "buy": 8,
      "neutral": 4,
      "sell": 3
    },
    "indicators": {
      "RSI": {
        "value": 45.2,
        "signal": "NEUTRAL"
      },
      "MACD": {
        "value": 1.2,
        "signal": "BUY"
      },
      "MA20": {
        "value": 185.5,
        "signal": "BUY"
      }
    }
  },
  "message": "Technical rating retrieved successfully",
  "timestamp": "2024-01-02T12:00:00Z"
}

Authorizations

X-API-Key
string
header
required

Path Parameters

symbol
string
required
Minimum length: 1
timeframe
enum<string>
required
Available options:
1m,
5m,
15m,
30m,
1h,
2h,
4h,
1d,
1W,
1M

Response

Technical rating retrieved successfully

success
boolean
required

Indicates successful API response

data
any
required

Response data payload

timestamp
string
required

ISO 8601 timestamp of the response

pagination
object

Pagination information for paginated responses

message
string

Optional success message

meta
object

Optional metadata including pagination, statistics, and additional context