finance-query 2.6.0

A Rust library for querying financial data
Documentation
//! Market data models.
//!
//! Market summary, sectors, industries, hours, currencies, exchanges, and index trends.

/// Currency pair data.
pub mod currencies;
/// Exchange information.
pub mod exchanges;
/// Market trading hours.
pub mod hours;
/// Industry-level market data.
pub mod industries;
/// Market summary (indices, commodities, forex overview).
pub mod market_summary;
/// Sector-level market data.
pub mod sectors;

// quoteSummary modules (canonical home, re-exported from quote/ for backward compat)
pub(crate) mod index_trend;
pub(crate) use index_trend::{IndexTrend, IndustryTrend, SectorTrend};