> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agno.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Analyst Mode: Statements, Insiders, Earnings, Filings

> By default FinanceTools registers the seven "market brief" tools.

By default FinanceTools registers the seven "market brief" tools. Analyst work needs the long tail too: financial statements, insider trades, earnings history and SEC filings. Turn them on with `all=True`, or one at a time (`financials=True`, `insider_trades=True`, `earnings=True`, `sec_filings=True`).

```python analyst_mode.py theme={null}
"""
Analyst Mode: Statements, Insiders, Earnings, Filings
======================================================
By default FinanceTools registers the seven "market brief" tools. Analyst
work needs the long tail too: financial statements, insider trades, earnings
history and SEC filings. Turn them on with `all=True`, or one at a time
(`financials=True`, `insider_trades=True`, `earnings=True`, `sec_filings=True`).

Tools registered here (yfinance provider):
    search_symbols, get_quote, get_price_history, get_company_profile,
    get_key_metrics, get_news, get_analyst_recommendations, get_financials,
    get_insider_trades, get_earnings, get_sec_filings

Prompts to try:
- "Deep dive on NVDA: revenue and margins for the last 4 quarters, insider activity, next earnings date, latest 8-K."
- "Compare the free cash flow of MSFT and GOOGL over the last 3 fiscal years."
"""

from agno.agent import Agent
from agno.tools.finance import FinanceTools

# ---------------------------------------------------------------------------
# Agent Instructions
# ---------------------------------------------------------------------------
instructions = """\
You are an equity research analyst.
- Start with a two-line thesis, then the evidence in tables.
- For statements, name the reporting period and currency of every figure.
- Compute margins and growth yourself from the statement line items when they are not provided.
- Flag data you could not retrieve as N/A. Never estimate a missing number.
- Close with the next scheduled earnings date if available.
"""

# ---------------------------------------------------------------------------
# Create the Agent
# ---------------------------------------------------------------------------
agent = Agent(
    name="Equity Analyst",
    model="openai:gpt-5.6",
    tools=[FinanceTools(all=True)],
    instructions=instructions,
    markdown=True,
)

# ---------------------------------------------------------------------------
# Run the Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    agent.print_response(
        "Deep dive on NVDA: revenue and net margin for the last 4 quarters, notable insider activity, "
        "the next earnings date, and the most recent 8-K.",
        stream=True,
    )
```

## Run the Example

<Steps>
  <Snippet file="create-venv-step.mdx" />

  <Step title="Install dependencies">
    ```bash theme={null}
    uv pip install -U agno yfinance
    ```
  </Step>

  <Step title="Export your API keys">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export FINANCIAL_DATASETS_API_KEY="your_financial_datasets_api_key_here"
      ```

      ```bash Windows theme={null}
      $Env:FINANCIAL_DATASETS_API_KEY="your_financial_datasets_api_key_here"
      ```
    </CodeGroup>
  </Step>

  <Step title="Run the example">
    Save the code above as `analyst_mode.py`, then run:

    ```bash theme={null}
    python analyst_mode.py
    ```
  </Step>
</Steps>

Full source: [cookbook/91\_tools/finance/04\_analyst\_mode.py](https://github.com/agno-agi/agno/blob/v3.0.4/cookbook/91_tools/finance/04_analyst_mode.py)
