pub enum AtmType {
Null,
Spot,
Fwd,
DeltaNeutral,
VegaMax,
GammaMax,
PutCall50,
}Expand description
At-the-money convention of a DeltaVolQuote.
Variants§
Null
Default, if not an ATM quote.
Spot
K = S_0.
Fwd
K = F.
DeltaNeutral
Call delta = put delta.
VegaMax
K such that vega is maximal.
GammaMax
K such that gamma is maximal.
PutCall50
K such that call delta = 0.50 (only for forward delta).
Trait Implementations§
impl Copy for AtmType
impl Eq for AtmType
impl StructuralPartialEq for AtmType
Auto Trait Implementations§
impl Freeze for AtmType
impl RefUnwindSafe for AtmType
impl Send for AtmType
impl Sync for AtmType
impl Unpin for AtmType
impl UnsafeUnpin for AtmType
impl UnwindSafe for AtmType
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