upstox-rust-sdk 0.2.0

SDK to access Upstox's Uplink v2 APIs programmatically
Documentation
1
2
3
4
5
6
7
use serde::{Deserialize, Serialize};

#[derive(Deserialize, Serialize, Debug)]
pub struct CandleDataResponse {
    // Order is timestamp, open, high, low, close, volume, open interest
    pub candles: Vec<(String, f64, f64, f64, f64, i64, u32)>,
}