dukascopy-fx 0.5.1

Library-first Dukascopy market-data fetcher for FX, metals, indices, and equities with ticker API, incremental checkpoints, and universe catalog support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Public API for fetching forex data.
//!
//! This module provides the user-facing API including:
//! - `Ticker` - yfinance-style ticker for fetching exchange rates
//! - `download` - batch download function for multiple tickers

mod ticker;

pub use ticker::{
    download, download_incremental, download_incremental_with_client,
    download_incremental_with_concurrency, download_range, download_range_with_client,
    download_range_with_concurrency, download_with_client, download_with_concurrency, Period,
    Ticker, DEFAULT_DOWNLOAD_CONCURRENCY,
};