跳转到内容

估值历史

获取历史估值指标时间序列(市盈率、市净率、市销率、股息率)。

Parameters

SDK 方法参数。

NameTypeRequiredDescription
symbolstring证券代码,例如 AAPL.US

Request Example

Response

Response Example

json
{
  "code": 0,
  "message": "success",
  "data": {
    "history": {
      "metrics": {
        "pe": {
          "desc": "P/E Ratio",
          "high": "35.2",
          "low": "18.1",
          "median": "26.5",
          "list": [
            {
              "timestamp": "1622520000",
              "value": "28.5"
            }
          ]
        },
        "pb": null,
        "ps": null
      }
    }
  }
}

Response Status

StatusDescriptionSchema
200成功ValuationHistoryResponse
400请求错误None

Schemas

ValuationHistoryResponse

NameTypeRequiredDescription
symbolstring证券代码
listobject[]历史估值数据点列表,见 ValuationMetric
list[].datestring日期(YYYY-MM-DD)
list[].pedouble市盈率(PE)
list[].pbdouble市净率(PB)
list[].psdouble市销率(PS)
list[].dividend_yielddouble股息率(%)