finance-query 3.0.0

A Rust library for querying financial data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Discovery models.
//!
//! Search, lookup, screeners, and trending tickers.

/// Security-identifier mapping (CUSIP/ISIN/SEDOL/FIGI → instruments).
#[cfg(feature = "openfigi")]
pub mod figi;
/// Type-filtered symbol lookup.
pub mod lookup;
/// Provider-routed symbol reference data (search, details, exchanges, screener).
pub mod reference;
/// Predefined and custom screeners.
pub mod screeners;
/// Full-text symbol and news search.
pub mod search;
/// Trending tickers.
pub mod trending;