---
title: 'forecast-eps'
sidebar_label: 'forecast-eps'
sidebar_position: 4
---

# longbridge forecast-eps

获取分析师对未来报告期的 EPS 一致性预测——均值、中位数、最高及最低预测值。

## 基本用法

```bash
longbridge forecast-eps TSLA.US
```

```
EPS Forecasts (recent 19):
| end_date   | mean  | median | highest | lowest | up | down | total |
|------------|-------|--------|---------|--------|----|------|-------|
| 2026-02-03 | 2.092 | 2.04   | 2.75    | 1.212  | 0  | 0    | 0     |
| 2026-02-04 | 2.092 | 2.04   | 2.75    | 1.212  | 0  | 0    | 0     |
| 2026-02-08 | 2.057 | 2.035  | 2.75    | 1.212  | 0  | 0    | 0     |
...
```

## 示例

### 查看 EPS 预测

```bash
longbridge forecast-eps TSLA.US
```

展示每个未来报告期的分析师 EPS 一致性预测，以及预测区间（最高和最低值）。

### JSON 输出用于跟踪预测变化

```bash
longbridge forecast-eps TSLA.US --format json
```

```json
{
  "items": [
    {
      "forecast_end_date": "1726790400",
      "forecast_eps_highest": "3.79",
      "forecast_eps_lowest": "2.37",
      "forecast_eps_mean": "3.043",
      "forecast_eps_median": "3.02",
      "institution_down": 0,
      "institution_total": 0,
      "institution_up": 0
    }
  ]
}
```

每条记录对应一个报告期。`forecast_eps_mean` 和 `forecast_eps_median` 代表一致性预测，`highest` 和 `lowest` 显示分析师预测区间。
