upstox-rust-sdk 0.2.0

SDK to access Upstox's Uplink v2 APIs programmatically
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod full_market_quotes_request;
pub mod full_market_quotes_response;
pub mod ltp_quotes_request;
pub mod ltp_quotes_response;
pub mod ohlc_quotes_request;
pub mod ohlc_quotes_response;

use serde::{Deserialize, Serialize};

#[derive(Deserialize, Serialize, Debug)]
pub struct OHLC {
    pub open: f64,
    pub high: f64,
    pub low: f64,
    pub close: f64,
}