跳轉到內容

估值指標

獲取當前估值指標(市盈率、市凈率、市銷率、股息率)及 5 年歷史區間數據。

Parameters

SDK 方法參數。

NameTypeRequiredDescription
symbolstring證券代碼,例如 AAPL.US
indicatorstring指標篩選:pepbpsdvd_yld

Request Example

Response

Response Example

json
{
  "code": 0,
  "message": "success",
  "data": {
    "metrics": {
      "pe": { "current": "29.5", "high": "35.2", "low": "18.0", "median": "26.0" },
      "pb": { "current": "45.1", "high": "50.0", "low": "30.0", "median": "42.0" }
    }
  }
}

Response Status

StatusDescriptionSchema
200成功ValuationsResponse
400請求錯誤None

Schemas

ValuationsResponse

NameTypeRequiredDescription
metricsobject估值指標映射
∟ peobject市盈率數據
∟∟ currentstring當前值
∟∟ highstring5 年最高值
∟∟ lowstring5 年最低值
∟∟ medianstring5 年中位值