Struct ta::indicators::MoneyFlowIndex[][src]

pub struct MoneyFlowIndex { /* fields omitted */ }
Expand description

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

  • period - 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

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.