pub struct CCFuturesOHLCV {Show 41 fields
pub unit: String,
pub timestamp: i64,
pub type_: String,
pub market: String,
pub instrument: String,
pub mapped_instrument: String,
pub index_underlying: String,
pub quote_currency: String,
pub settlement_currency: String,
pub contract_currency: String,
pub denomination_type: String,
pub index_underlying_id: i32,
pub quote_currency_id: i32,
pub settlement_currency_id: i32,
pub contract_currency_id: i32,
pub transform_function: String,
pub open: f64,
pub high: f64,
pub low: f64,
pub close: f64,
pub first_trade_timestamp: i64,
pub last_trade_timestamp: i64,
pub first_trade_price: f64,
pub high_trade_price: f64,
pub high_trade_timestamp: i64,
pub low_trade_price: f64,
pub low_trade_timestamp: i64,
pub last_trade_price: f64,
pub total_trades: i64,
pub total_trades_buy: i64,
pub total_trades_sell: i64,
pub total_trades_unknown: i64,
pub number_of_contracts: i64,
pub volume: f64,
pub quote_volume: f64,
pub volume_buy: f64,
pub quote_volume_buy: f64,
pub volume_sell: f64,
pub quote_volume_sell: f64,
pub volume_unknown: f64,
pub quote_volume_unknown: f64,
}
Expand description
Futures: Historical OHLCV+
Fields§
§unit: String
§timestamp: i64
§type_: String
§market: String
§instrument: String
§mapped_instrument: String
§index_underlying: String
§quote_currency: String
§settlement_currency: String
§contract_currency: String
§denomination_type: String
§index_underlying_id: i32
§quote_currency_id: i32
§settlement_currency_id: i32
§contract_currency_id: i32
§transform_function: String
§open: f64
§high: f64
§low: f64
§close: f64
§first_trade_timestamp: i64
§last_trade_timestamp: i64
§first_trade_price: f64
§high_trade_price: f64
§high_trade_timestamp: i64
§low_trade_price: f64
§low_trade_timestamp: i64
§last_trade_price: f64
§total_trades: i64
§total_trades_buy: i64
§total_trades_sell: i64
§total_trades_unknown: i64
§number_of_contracts: i64
§volume: f64
§quote_volume: f64
§volume_buy: f64
§quote_volume_buy: f64
§volume_sell: f64
§quote_volume_sell: f64
§volume_unknown: f64
§quote_volume_unknown: f64
Trait Implementations§
source§impl Debug for CCFuturesOHLCV
impl Debug for CCFuturesOHLCV
source§impl<'de> Deserialize<'de> for CCFuturesOHLCV
impl<'de> Deserialize<'de> for CCFuturesOHLCV
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CCFuturesOHLCV
impl RefUnwindSafe for CCFuturesOHLCV
impl Send for CCFuturesOHLCV
impl Sync for CCFuturesOHLCV
impl Unpin for CCFuturesOHLCV
impl UnwindSafe for CCFuturesOHLCV
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more