pub struct OBVOutput {
pub obv: f64,
pub flow_direction: f64,
}Expand description
Output from OBV calculation
Fields§
§obv: f64On Balance Volume value
flow_direction: f64Optional: Volume flow direction (1.0 = up, -1.0 = down, 0.0 = unchanged)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for OBVOutput
impl<'de> Deserialize<'de> for OBVOutput
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
impl Copy for OBVOutput
impl StructuralPartialEq for OBVOutput
Auto Trait Implementations§
impl Freeze for OBVOutput
impl RefUnwindSafe for OBVOutput
impl Send for OBVOutput
impl Sync for OBVOutput
impl Unpin for OBVOutput
impl UnwindSafe for OBVOutput
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