finance-query 2.5.1

A Rust library for querying financial data
Documentation
//! Data models for Yahoo Finance responses.
//!
//! This module contains all the data structures returned by the library's API methods.
//! Types are organized by category (chart, quote, options, etc.).

/// Chart/historical data models.
pub mod chart;
/// Currency models.
pub mod currencies;
/// SEC EDGAR data models for filing history, XBRL financial data, and full-text search.
pub mod edgar;
/// Exchange models for supported markets.
pub mod exchanges;
/// Financials (fundamentals-timeseries) models.
pub mod financials;
/// Market hours models.
pub mod hours;
/// Industry models for market industry data.
pub mod industries;
/// Lookup models for type-filtered symbol discovery.
pub mod lookup;
/// Market summary models.
pub mod market_summary;
/// News models.
pub mod news;
/// Options models.
pub mod options;
/// Quote models for detailed stock information.
pub mod quote;
/// Recommendation models.
pub mod recommendation;
/// Screener models for predefined Yahoo Finance screeners.
pub mod screeners;
/// Search models.
pub mod search;
/// Sector models for market sector data.
pub mod sectors;
/// Market sentiment models (Fear & Greed Index).
pub mod sentiment;
/// Spark models for batch sparkline data.
pub mod spark;
/// Earnings call transcript models.
pub mod transcript;
/// Trending tickers models.
pub mod trending;