f0b92a9718
Finnhub's earnings calendar now supplies next_earnings_date through the fundamentals chain; persisted on fundamental_data (migration 006) and exposed in the fundamentals API. The recommendation panel warns when earnings fall within the ~30-day target horizon (a report can gap price through stop/target) and otherwise shows the next date. Informational only. Deploy: run alembic upgrade (new fundamental_data.next_earnings_date column). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
21 lines
548 B
Python
21 lines
548 B
Python
"""Pydantic schemas for fundamental data endpoints."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import date, datetime
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class FundamentalResponse(BaseModel):
|
|
"""Envelope-ready fundamental data response."""
|
|
|
|
symbol: str
|
|
pe_ratio: float | None = None
|
|
revenue_growth: float | None = None
|
|
earnings_surprise: float | None = None
|
|
market_cap: float | None = None
|
|
next_earnings_date: date | None = None
|
|
fetched_at: datetime | None = None
|
|
unavailable_fields: dict[str, str] = {}
|