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
1
2
3
4
5
6
7
use serde::Deserialize;
use serde_json::Value;

#[derive(Deserialize)]
pub struct BybitKlineResponse {
    pub list: Vec<Value>,
}