candles-rs 0.1.4

A Rust library for fetching candlestick (OHLCV) data from multiple cryptocurrency exchanges including Binance, OKX, Bybit, BloFin, and BingX.
Documentation
pub mod base;
pub mod connections;
pub mod errors;
pub mod types;
pub mod utils;

pub mod binance {
    mod __test__;
    pub mod main;
}

pub mod okx {
    mod __test__;
    pub mod main;
}

pub mod bybit {
    mod __test__;
    pub mod main;
    mod types;
}

pub mod blofin {
    mod __test__;
    pub mod main;
}

pub mod bingx {
    mod __test__;
    pub mod main;
}

pub mod htx {
    mod __test__;
    pub mod main;
    mod types;
}

pub mod mexc {
    mod __test__;
    pub mod main;
    mod types;
}