---
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` 標示當前所在的報告期。
