pub struct MFIOutput {
pub mfi: f64,
pub typical_price: f64,
pub raw_money_flow: f64,
pub flow_direction: f64,
pub market_condition: MFIMarketCondition,
}Expand description
Output from MFI calculation
Fields§
§mfi: f64Money Flow Index value (0-100)
typical_price: f64Current typical price
raw_money_flow: f64Current raw money flow
flow_direction: f64Money flow direction
market_condition: MFIMarketConditionMarket condition based on thresholds
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MFIOutput
impl<'de> Deserialize<'de> for MFIOutput
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 MFIOutput
impl StructuralPartialEq for MFIOutput
Auto Trait Implementations§
impl Freeze for MFIOutput
impl RefUnwindSafe for MFIOutput
impl Send for MFIOutput
impl Sync for MFIOutput
impl Unpin for MFIOutput
impl UnwindSafe for MFIOutput
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