finance-query 2.5.1

A Rust library for querying financial data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Multi-symbol data access.
//!
//! Provides [`Tickers`] for fetching quotes, charts, and other data
//! for multiple symbols with optimized batch operations.

mod core;
mod macros;

pub use core::{
    BatchCapitalGainsResponse, BatchChartsResponse, BatchDividendsResponse,
    BatchFinancialsResponse, BatchNewsResponse, BatchOptionsResponse, BatchQuotesResponse,
    BatchRecommendationsResponse, BatchSparksResponse, Tickers, TickersBuilder,
};

#[cfg(feature = "indicators")]
pub use core::BatchIndicatorsResponse;