1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//! Data models for finance-query responses.
//!
//! This module contains all the data structures returned by the library's API
//! methods. Types are organized by capability. Yahoo-backed capabilities
//! compile unconditionally; provider-specific capabilities are gated behind
//! the corresponding feature flag.
// ── Format type parameter ──────────────────────────────────────────────────
// ── Capability directories ──────────────────────────────────────────────────
// Yahoo-backed (always available)
/// Chart/historical data models, including spark sparklines.
/// Corporate data: profiles, officers, ownership, news, transcripts, recommendations.
/// Discovery: search, lookup, screeners, trending.
/// SEC EDGAR filing data models.
/// Fundamental financial statement models (income, balance sheet, cash flow).
/// Market-level data: summary, sectors, industries, hours, currencies, exchanges.
/// Options contract models.
/// Quote models for detailed stock information.
/// Market sentiment models (Fear & Greed Index).
// Provider-specific (gated on the provider feature that supplies them)
/// Commodities market data (gold, silver, oil, etc.) — FMP / Alpha Vantage.
/// Cryptocurrency market data — CoinGecko, Alpha Vantage, FMP, Polygon.
/// Macro-economic data — FRED, Alpha Vantage, Polygon.
/// Forex (foreign exchange) data models — Polygon / FMP / Alpha Vantage.
/// Futures market data models — Polygon.
/// Stock market index data models — Polygon / FMP.
/// Technical analysis indicator models (SMA, EMA, RSI, MACD, etc.).