[][src]Struct cxmr_ta_core::indicators::MoneyFlowIndex

pub struct MoneyFlowIndex { /* fields omitted */ }

Money Flow Index (MFI).

The MFI is an volume and price based oscillator which gives moneyflow over n periods. MFI is used to measure buying and selling pressure. MFI is also known as volume-weighted RSI.

Formula

Typical Price(TP) = (High + Low + Close)/3

Money Flow(MF) = Typical Price x Volume

MF is positive when currennt TP is greater that previous period TP and negative when current TP is less than preivous TP.

Positive money flow (PMF)- calculated by adding the money flow of all the days RMF is positive.

Negative money flow (NMF)- calculated by adding the money flow of all the days RMF is negative.

Money Flow Index(MFI) = PMF / (PMF + NMF) * 100

Parameters

  • n - number of periods, integer greater than 0

Example

use ta::indicators::MoneyFlowIndex;
use ta::{Next, DataItem};

let mut mfi = MoneyFlowIndex::new(3).unwrap();
let di = DataItem::builder()
            .high(3.0)
            .low(1.0)
            .close(2.0)
            .open(1.5)
            .volume(1000.0)
            .build().unwrap();
mfi.next(&di);

Links

Methods

impl MoneyFlowIndex[src]

pub fn new(n: u32) -> Result<Self>[src]

Trait Implementations

impl Clone for MoneyFlowIndex[src]

impl Debug for MoneyFlowIndex[src]

impl Default for MoneyFlowIndex[src]

impl Display for MoneyFlowIndex[src]

impl<T: High + Low + Close + Volume> Next<T> for MoneyFlowIndex[src]

impl Reset for MoneyFlowIndex[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.