struct WarrantDataOut {Show 16 fields
conversion_rate: f64,
warrant_type: i32,
strike_price: f64,
maturity_time: String,
end_trade_time: String,
recovery_price: f64,
street_volume: i64,
issue_volume: i64,
street_rate: f64,
delta: f64,
implied_volatility: f64,
premium: f64,
leverage: Option<f64>,
ipop: Option<f64>,
break_even_point: Option<f64>,
conversion_price: Option<f64>,
}Expand description
v1.4.98 T1-2: 港股 warrant / CBBC / 牛熊证 字段. 对齐 Qot_GetSecuritySnapshot.proto::WarrantSnapshotExData.
Fields§
§conversion_rate: f64换股比率
warrant_type: i32窝轮类型 (Qot_Common.WarrantType enum)
strike_price: f64行使价
maturity_time: String到期日字符串
end_trade_time: String最后交易日字符串
recovery_price: f64收回价 (仅牛熊证)
street_volume: i64街货量
issue_volume: i64发行量
street_rate: f64街货占比 (百分比)
delta: f64对冲值 (delta, 仅认购/认沽)
implied_volatility: f64引申波幅 (IV, 仅认购/认沽)
溢价 (百分比)
leverage: Option<f64>杠杆比率 (倍)
ipop: Option<f64>价内/价外 (百分比)
break_even_point: Option<f64>打和点
conversion_price: Option<f64>换股价
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WarrantDataOut
impl RefUnwindSafe for WarrantDataOut
impl Send for WarrantDataOut
impl Sync for WarrantDataOut
impl Unpin for WarrantDataOut
impl UnsafeUnpin for WarrantDataOut
impl UnwindSafe for WarrantDataOut
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more