---
title: 'consensus'
sidebar_label: 'consensus'
sidebar_position: 5
---

# longbridge consensus

查看华尔街对即将到来的财报周期的一致性财务预测——营收、EBIT 及 EPS。

## 基本用法

```bash
longbridge consensus TSLA.US
```

```
Currency: USD | Period: qf
| metric        | Q3 2026 | Q2 2026 | Q1 2026  | Q4 2025   | Q3 2025  |
|---------------|---------|---------|----------|-----------|----------|
| Revenue       | ~27.14B | ~24.71B | ~22.75B  | 24.90B ↑  | 28.09B ↑ |
| Net Income    | ~1.28B  | ~1.08B  | ~879.54M | 840.00M ↓ | 1.37B ↓  |
| EPS           | ~0.3818 | ~0.2969 | ~0.2390  | 0.2400 ↓  | 0.3900 ↓ |
...
```

## 示例

### 查看一致性预测

```bash
longbridge consensus TSLA.US
```

展示即将报告期的分析师一致性预测，涵盖营收、EBIT 及 EPS 等核心指标。

### JSON 输出

```bash
longbridge consensus TSLA.US --format json
```

```json
{
  "currency": "USD",
  "current_period": "qf",
  "list": [
    {
      "details": [
        { "key": "revenue", "name": "Revenue", "estimate": "27144782630.0000", "is_released": false },
        { "key": "ebit", "name": "EBIT", "estimate": "1496709370.0000", "is_released": false }
      ]
    }
  ]
}
```

每条 `details` 记录包含指标名称、一致性预测值，以及实际结果是否已发布。完整响应中的 `current_index` 标示当前所在的报告期。
