pub struct BreakdownTradingDataItem {Show 16 fields
pub date: String,
pub code: String,
pub long_sell_value: f64,
pub short_sell_without_margin_value: f64,
pub margin_sell_new_value: f64,
pub margin_sell_close_value: f64,
pub long_buy_value: f64,
pub margin_buy_new_value: f64,
pub margin_buy_close_value: f64,
pub long_sell_volume: f64,
pub short_sell_without_margin_volume: f64,
pub margin_sell_new_volume: f64,
pub margin_sell_close_volume: f64,
pub long_buy_volume: f64,
pub margin_buy_new_volume: f64,
pub margin_buy_close_volume: f64,
}
Expand description
Represents a single breakdown trading data item.
Fields§
§date: String
Trade date (YYYY-MM-DD)
code: String
Issue code
long_sell_value: f64
Long selling trading value
short_sell_without_margin_value: f64
Trading value of short selling (excluding new margin sell)
margin_sell_new_value: f64
Trading value of new margin selling (sell orders that create new margin sell positions)
margin_sell_close_value: f64
Trading value of closing margin selling (sell orders that close existing margin buy positions)
long_buy_value: f64
Long buying trading value
margin_buy_new_value: f64
Trading value of new margin buying (buy orders that create new margin buy positions)
margin_buy_close_value: f64
Trading value of closing margin buying (buy orders that close existing margin sell positions)
long_sell_volume: f64
Long selling trading volume
short_sell_without_margin_volume: f64
Trading volume of short selling (excluding new margin selling)
margin_sell_new_volume: f64
Trading volume of new margin selling (sell orders that create new margin sell positions)
margin_sell_close_volume: f64
Trading volume of closing margin selling (sell orders that close existing margin buy positions)
long_buy_volume: f64
Long buying trading volume
margin_buy_new_volume: f64
Trading volume of new margin buying (buy orders that create new margin buy positions)
margin_buy_close_volume: f64
Trading volume of closing margin buying (buy orders that close existing margin sell positions)
Trait Implementations§
Source§impl Clone for BreakdownTradingDataItem
impl Clone for BreakdownTradingDataItem
Source§fn clone(&self) -> BreakdownTradingDataItem
fn clone(&self) -> BreakdownTradingDataItem
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more